Searched refs:locked (Results 1 - 25 of 232) sorted by last modified time

12345678910

/external/yaffs2/yaffs2/
H A Dyaffs_guts.c3200 if (cache && !cache->locked) {
3323 !dev->srCache[i].locked &&
3926 cache->locked = 0;
3935 cache->locked = 1;
3945 cache->locked = 0;
4067 cache->locked = 0;
4083 cache->locked = 1;
4094 cache->locked = 0;
H A Dyaffs_guts.h118 int locked; /* Can't push out or flush while locked. */ member in struct:__anon34315
/external/valgrind/main/VEX/priv/
H A Dguest_x86_toIR.c1937 Bool locked,
2005 if (locked) {
2016 if (locked) {
2028 if (locked) {
2029 if (0) vex_printf("locked case\n" );
2282 UInt dis_Grp1 ( UChar sorb, Bool locked, argument
2340 if (locked) {
2351 if (locked) {
2363 if (locked) {
2628 Bool locked,
1936 dis_op2_G_E( UChar sorb, Bool locked, Bool addSubCarry, IROp op8, Bool keep, Int size, Int delta0, const HChar* t_x86opc ) argument
2627 dis_Grp8_Imm( UChar sorb, Bool locked, Int delta, UChar modrm, Int am_sz, Int sz, UInt src_val, Bool* decode_OK ) argument
2802 dis_Grp3( UChar sorb, Bool locked, Int sz, Int delta, Bool* decode_OK ) argument
2962 dis_Grp4( UChar sorb, Bool locked, Int delta, Bool* decode_OK ) argument
3038 dis_Grp5( UChar sorb, Bool locked, Int sz, Int delta, DisResult* dres, Bool* decode_OK ) argument
6313 dis_bt_G_E( VexAbiInfo* vbi, UChar sorb, Bool locked, Int sz, Int delta, BtOp op ) argument
6638 dis_cmpxchg_G_E( UChar sorb, Bool locked, Int size, Int delta0 ) argument
6794 dis_xadd_G_E( UChar sorb, Bool locked, Int sz, Int delta0, Bool* decodeOK ) argument
[all...]
/external/valgrind/main/drd/tests/
H A Dannotate_rwlock.c28 volatile int locked; member in struct:__anon32783
41 p->locked = 0;
50 assert(p->locked == 0);
59 while (__sync_val_compare_and_swap(&p->locked, 0, 1) == 1)
69 (void) __sync_fetch_and_sub(&p->locked, 1);
75 (void) __sync_fetch_and_sub(&p->locked, 1);
83 while (__sync_val_compare_and_swap(&p->locked, 0, 1) == 1)
93 (void) __sync_fetch_and_sub(&p->locked, 1);
99 (void) __sync_fetch_and_sub(&p->locked, 1);
105 while (__sync_val_compare_and_swap(&p->locked,
[all...]
H A Dpth_cancel_locked.stderr.exp2 Mutex still locked at thread exit: mutex 0x........, recursion count 1, owner 2.
H A Dpth_cond_race.stderr.exp3 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
H A Dtc10_rec_lock.stderr.exp9 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1.
H A Dtc12_rwl_trivial.stderr.exp2 Reader-writer lock not locked by calling thread: rwlock 0x.........
/external/valgrind/main/helgrind/tests/
H A Dannotate_rwlock.c38 volatile int locked; member in struct:__anon32858
51 p->locked = 0;
60 assert(p->locked == 0);
69 while (__sync_val_compare_and_swap(&p->locked, 0, 1) == 1)
79 (void) __sync_fetch_and_sub(&p->locked, 1);
85 (void) __sync_fetch_and_sub(&p->locked, 1);
94 while (__sync_val_compare_and_swap(&p->locked, 0, 1) == 1)
104 (void) __sync_fetch_and_sub(&p->locked, 1);
110 (void) __sync_fetch_and_sub(&p->locked, 1);
117 while (__sync_val_compare_and_swap(&p->locked,
[all...]
/external/strace/linux/
H A Dmtd-abi.h105 #define MTD_POWERUP_LOCK 0x2000 /* Always locked after reset */
146 __u32 locked; member in struct:otp_info
197 /* Check if chip is locked (for MTD that supports it) */
/external/strace/
H A Dmtd.c168 tprintf(", {start=%#" PRIx32 ", length=%#" PRIx32 ", locked=%" PRIu32 "}",
169 oinfo.start, oinfo.length, oinfo.locked);
/external/sqlite/dist/orig/
H A Dsqlite3.c519 #define SQLITE_BUSY 5 /* The database file is locked */
520 #define SQLITE_LOCKED 6 /* A table in the database is locked */
2151 ** or process has the table locked.
2207 ** for a specified amount of time when a table is locked. ^The handler
6855 ** ^The source database is read-locked only while it is being read;
6856 ** it is not locked continuously for the entire backup operation.
6947 ** ^Because the source database is not locked between calls to
7057 ** has locked the required resource is stored internally. ^After an
25259 ** a locked and an unlocked state.
25752 ** range' is read-locked an
45133 int locked = 0; /* True if some process holds a RESERVED lock */ local
50945 u8 locked; /* True if db currently has pBt locked */ member in struct:Btree
[all...]
/external/sqlite/dist/
H A Dsqlite3.c519 #define SQLITE_BUSY 5 /* The database file is locked */
520 #define SQLITE_LOCKED 6 /* A table in the database is locked */
2151 ** or process has the table locked.
2207 ** for a specified amount of time when a table is locked. ^The handler
6855 ** ^The source database is read-locked only while it is being read;
6856 ** it is not locked continuously for the entire backup operation.
6947 ** ^Because the source database is not locked between calls to
7057 ** has locked the required resource is stored internally. ^After an
25277 ** a locked and an unlocked state.
25770 ** range' is read-locked an
45153 int locked = 0; /* True if some process holds a RESERVED lock */ local
50965 u8 locked; /* True if db currently has pBt locked */ member in struct:Btree
[all...]
/external/srec/portable/include/
H A Dpmutex.h50 #define createMutex(mutex, locked) \
51 (*mutex = CreateMutex(NULL, locked, NULL)) == 0 ? ESR_MUTEX_CREATION_ERROR : ESR_SUCCESS
73 ESR_ReturnCode createMutex_posix(MUTEX *mutex, ESR_BOOL locked);
76 #define createMutex(mutex, locked) createMutex_posix(mutex, locked)
89 #define createMutex(mutex, locked) (ESR_SUCCESS)
/external/srec/portable/src/
H A Dplog.c64 static ESR_BOOL locked = ESR_FALSE; variable
200 *isLocked = locked;
306 if (locked)
308 locked = ESR_TRUE;
393 /* We need to log but the logging module is disabled or is locked so we output to stderr instead */
399 locked = ESR_FALSE;
407 locked = ESR_FALSE;
/external/skia/src/core/
H A DSkScaledImageCache.cpp219 // we're already locked
658 int locked = 0; local
660 locked += rec->fLockCount > 0;
664 SkDebugf("SkScaledImageCache: count=%d bytes=%d locked=%d %s\n",
665 fCount, fTotalBytesUsed, locked,
/external/skia/src/gpu/
H A DGrResourceCache.cpp105 // Unlike the removeAll, here we really remove everything, including locked resources.
520 int locked = 0; local
528 ++locked;
533 SkDebugf("\t\tEntry Count: current %d (%d locked) high %d\n",
534 fEntryCount, locked, fHighWaterEntryCount);
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCamera.java21 private boolean locked; field in class:ShadowCamera
34 locked = true;
46 locked = false;
51 locked = true;
126 return locked;
H A DShadowPowerManager.java34 private boolean locked; field in class:ShadowPowerManager.ShadowWakeLock
47 locked = true;
54 if (--refCount < 0) throw new RuntimeException("WakeLock under-locked");
56 locked = false;
62 return refCounted ? refCount > 0 : locked;
H A DShadowWifiManager.java150 private boolean locked; field in class:ShadowWifiManager.ShadowWifiLock
158 locked = true;
165 if (--refCount < 0) throw new RuntimeException("WifiLock under-locked");
167 locked = false;
173 return refCounted ? refCount > 0 : locked;
/external/qemu/android/utils/
H A Dfilelock.c45 ** return NULL only if the corresponding file path could not be locked.
78 int locked; member in struct:FileLock
183 D( "the file '%s' is locked by process ID %d\n", lock->file, lockpid );
216 lock->locked = 1;
278 lock->locked = 1;
372 if (lock->locked) {
379 lock->locked = 0;
420 lock->locked = 0;
/external/qemu/block/
H A Draw-posix.c1201 static int cdrom_set_locked(BlockDriverState *bs, int locked) argument
1205 if (ioctl(s->fd, CDROM_LOCKDOOR, locked) < 0) {
1259 /* make sure the door isnt locked at this time */
1290 /* make sure the door isnt locked at this time */
1322 static int cdrom_set_locked(BlockDriverState *bs, int locked) argument
1328 if (ioctl(s->fd, (locked ? CDIOCPREVENT : CDIOCALLOW)) < 0) {
H A Draw-win32.c391 static int raw_set_locked(BlockDriverState *bs, int locked)
H A Draw.c208 static int raw_set_locked(BlockDriverState *bs, int locked) argument
210 bdrv_set_locked(bs->file, locked);

Completed in 2821 milliseconds

12345678910