HomeSort by relevance Sort by last modified time
    Searched refs:locked (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /onnv/onnv-gate/usr/src/lib/libmail/common/
maillock.c 45 static int locked; /* To note that we locked it */ variable
68 if (locked)
82 locked = 1;
112 * have it locked.
118 locked = 0;
166 if (!locked)
  /onnv/onnv-gate/usr/src/lib/libsqlite/src/
os.h 114 int locked; /* True if this instance holds the lock */ member in struct:OsFile
131 int locked; /* 0: unlocked, <0: write lock, >0: read lock */ member in struct:OsFile
154 int locked; /* 0: unlocked, <0: write lock, >0: read lock */ member in struct:OsFile
os.c 169 ** a locked and an unlocked state.
490 id->locked = 0;
521 id->locked = 0;
570 id->locked = 0;
612 id->locked = 0;
641 id->locked = 0;
667 id->locked = 0;
698 id->locked = 0;
716 id->locked = 0;
741 id->locked = 0
    [all...]
  /onnv/onnv-gate/usr/src/lib/libadm/common/
devreserv.c 85 * getlkcnt() Get the number of devices locked
88 * islocked() Determines if a device is locked
97 static int getlkcnt(void); /* Get the number of locked devices */
101 static char *islocked(char *); /* Determines if a device is locked */
260 int locked; /* TRUE if the file is locked */ local
267 /* Try to lock the file. If it's locked, wait and try again */
269 locked = FALSE;
271 while (noerror && !locked) {
272 if (fcntl(lkfilefd, F_SETLK, &lkinfo) != -1) locked = TRUE
738 int locked; \/* TRUE if device in locked list *\/ local
804 int locked; \/* TRUE if device currently locked *\/ local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/os/
move.c 587 uioa_page_t *locked = uioap->uioa_locked; local
663 locked->uioa_ppp = (void **)pfnp;
664 locked->uioa_pfncnt = pcnt;
673 locked->uioa_ppp = (void **)pages;
674 locked->uioa_pfncnt = 0;
677 locked->uioa_base = iov->iov_base;
678 locked->uioa_len = iov->iov_len;
679 locked++;
691 /* Unlock any previously locked page_t(s) */
692 while (locked > uioap->uioa_locked)
712 uioa_page_t *locked = uioap->uioa_locked; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
restrict.t 82 "key 'question' not locked in copy?";
85 "key 'answer' not locked in copy?";
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Hash/
Util.t 25 my %hash = (foo => 42, bar => 23, locked => 'yep');
41 lock_value(%hash, 'locked');
49 eval { delete $hash{locked} };
50 like( $@, qr/^Attempt to delete readonly key 'locked' from a restricted hash/,
51 'trying to delete a locked key' );
52 eval { $hash{locked} = 42; };
54 'trying to change a locked key' );
55 is( $hash{locked}, 'yep' );
67 eval { $hash{locked} = 42; };
70 eval { delete $hash{locked} },
    [all...]
Util.pm 67 the hash from being bless()ed while it is in a locked state. Any attempt
120 Locks and unlocks an individual key of a hash. The value of a locked
123 %hash must have already been locked for this to have useful effect.
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/attrs/
attrs.pm 13 use attrs qw(locked method);
23 sub foo : locked method { }
40 =item locked
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
exists_sub.t 11 sub t2 : locked;
attrs.t 20 eval_ok 'sub t1 ($) : locked { $_[0]++ }';
21 eval_ok 'sub t2 : locked { $_[0]++ }';
22 eval_ok 'sub t3 ($) : locked ;';
23 eval_ok 'sub t4 : locked ;';
24 our $anon1; eval_ok '$anon1 = sub ($) : locked:method { $_[0]++ }';
25 our $anon2; eval_ok '$anon2 = sub : locked : method { $_[0]++ }';
66 eval 'my $x : locked method;';
67 like $@, qr/^Invalid SCALAR attributes: ["']?locked : method["']? at/;
94 eval 'package Z; sub Y::baz : locked {}';
96 is "@attrs", "locked";
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/db/mutex/
mutex.c 189 int locked; local
205 "MUTEX ERROR: __db_mutex_lock: lock currently locked\n");
231 for (locked = 0, mypid = getpid();;) {
249 locked = 1;
267 if (locked)
  /onnv/onnv-gate/usr/src/uts/i86xpv/os/
balloon.c 98 * Lock the pfnlist if necessary (see above), and return whether we locked it.
118 * We need to keep the page exclusively locked
209 int i, rv, locked; local
277 locked = balloon_lock_contig_pfnlist(metapgs);
281 if (locked)
377 int i, cnt, locked; local
434 locked = balloon_lock_contig_pfnlist(cnt);
442 if (locked)
498 int i, locked; local
566 locked = balloon_lock_contig_pfnlist(debit)
943 int locked; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/syscall/
lwp_sobj.c 840 * which point, the upib_lock cannot be locked, to decrement waiter
893 * If the upimutex is locked here, the flag's LOCK_OWNERDEAD
895 * appropriately. If the upimutex is not locked here, this
1155 volatile int locked = 0; local
1500 volatile int locked = 0; local
1589 volatile int locked = 0; local
1850 volatile int locked = 0; local
1914 volatile int locked = 0; local
1966 volatile int locked = 0; local
2034 volatile int locked = 0; local
2186 volatile int locked = 0; local
2360 volatile int locked = 0; local
2727 volatile int locked = 0; local
2894 volatile int locked = 0; local
3047 volatile int locked = 0; local
3141 volatile int locked = 0; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libdscfg/common/
cfg_lockdmsg.c 47 static int locked; variable
149 locked = 1;
171 locked = 1;
194 locked = 0;
226 if (locked)
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
k5-thread.h 227 Eventually: Report number of times locked, total and standard
334 enum k5_mutex_flag_states locked;
343 ASSERT((M)->locked == K5_MUTEX_DEBUG_UNLOCKED), \
347 (M)->locked = K5_MUTEX_DEBUG_UNLOCKED, 0)
354 (M)->locked = K5_MUTEX_DEBUG_LOCKED, 0)
357 (M)->locked = K5_MUTEX_DEBUG_UNLOCKED, 0)
361 ASSERT((M)->locked != K5_MUTEX_DEBUG_UNLOCKED), \
362 ASSERT((M)->locked == K5_MUTEX_DEBUG_LOCKED))
365 ASSERT((M)->locked != K5_MUTEX_DEBUG_LOCKED), \
366 ASSERT((M)->locked == K5_MUTEX_DEBUG_UNLOCKED)
329 enum k5_mutex_flag_states locked; member in struct:__anon4788
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
AutoSplit.t 225 sub test_a1 ($) : locked :locked { 1; }
226 sub test_a2 : locked { 1; }
258 sub test_a1\s*\(\$\)\s*:\s*locked\s*:\s*locked\s*;
259 sub test_a2\s*:\s*locked\s*;
  /onnv/onnv-gate/usr/src/common/openssl/crypto/engine/
eng_int.h 136 int engine_free_util(ENGINE *e, int locked);
eng_lib.c 105 int engine_free_util(ENGINE *e, int locked)
115 if(locked)
  /onnv/onnv-gate/usr/src/uts/common/io/aac/
aac_ioctl.h 101 uint32_t locked; member in struct:aac_query_disk
  /onnv/onnv-gate/usr/src/uts/common/inet/ip/
ip6_asp.c 282 boolean_t locked, ip_stack_t *ipst, model_t datamodel)
298 if (locked)
306 if (!locked)
312 if (!locked && ipst->ips_ip6_asp_refcnt > 0) {
328 if (!locked)
  /onnv/onnv-gate/usr/src/lib/libc/port/threads/
tdb_agent.c 234 int locked = 0; local
279 * negative, in which case we fall into the locked case below.
293 locked = 1;
345 if (locked)
  /onnv/onnv-gate/usr/src/uts/common/sys/lvm/
md_rename.h 93 uint_t locked :1; member in struct:md_rendelta_status
  /onnv/onnv-gate/usr/src/uts/sun4v/ml/
mach_proc_init.s 130 ! check if this is a locked TTE
141 ! install a locked entry
  /onnv/onnv-gate/usr/src/cmd/avs/nsctl/
nskernd.c 458 int locked; local
482 locked = 0;
485 locked = 1;
506 if (locked) {
508 locked = 0;

Completed in 840 milliseconds

1 2 3 4