Searched defs:locked (Results 1 - 25 of 59) sorted by relevance

123

/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.h61 int locked; member in struct:private_yuvhwdata
/external/dbus/dbus/
H A Ddbus-string-private.h49 unsigned int locked : 1; /**< DBusString has been locked and can't be changed */ member in struct:__anon5037
80 * modifiable - may not be locked or const. Also declares
87 _dbus_assert (!(real)->locked)
90 * Checks assertions about a string object that may be locked but
101 * Checks assertions about a string that may be const or locked. Also
H A Ddbus-message-private.h107 unsigned int locked : 1; /**< Message being sent, no modifications allowed. */ member in struct:DBusMessage
H A Ddbus-threads.c688 dbus_bool_t locked; /**< Mutex is "locked" */ member in struct:DBusFakeMutex
745 _dbus_assert (!fake->locked);
755 _dbus_assert (!fake->locked);
757 fake->locked = TRUE;
767 _dbus_assert (fake->locked);
769 fake->locked = FALSE;
/external/webkit/Source/WebCore/storage/
H A DOriginQuotaManager.cpp47 bool locked = m_usageRecordGuard.tryLock(); local
49 if (locked)
54 return locked;
/external/elfutils/libelf/
H A Delf_getdata.c367 int locked = 0; local
435 locked = 1;
452 if (!locked)
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
H A DTerrain.java143 * @param locked or unlocked
145 public void setLocked(boolean locked); argument
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_phyuv_c.h53 int locked; member in struct:private_yuvhwdata
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3yuv.c78 Uint8 locked; member in struct:private_yuvhwdata
202 overlay->hwdata->locked = 1;
212 overlay->hwdata->locked = 0;
/external/valgrind/main/drd/tests/
H A Dannotate_rwlock.c28 volatile int locked; member in struct:__anon13876
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...]
/external/valgrind/main/helgrind/tests/
H A Dannotate_rwlock.c38 volatile int locked; member in struct:__anon13951
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/chromium/chrome/browser/
H A Dprocess_singleton.h102 // is received while the ProcessSingleton is locked.
116 bool locked() { function in class:ProcessSingleton
/external/qemu/android/utils/
H A Dfilelock.c47 ** 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;
275 lock->locked = 1;
352 if (lock->locked) {
359 lock->locked = 0;
400 lock->locked = 0;
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Drelayserver.h171 // A locked connection is one for which we know the intended destination of
173 bool locked() const { return locked_; } function in class:cricket::RelayServerConnection
/external/openssh/
H A Dauth.c117 /* grab passwd field for locked account check */
128 /* check for locked account */
130 int locked = 0; local
134 locked = 1;
139 locked = 1;
143 locked = 1;
148 if (locked) {
149 logit("User %.100s not allowed because account is locked",
/external/openssl/crypto/engine/
H A Deng_lib.c105 int engine_free_util(ENGINE *e, int locked) argument
115 if(locked)
/external/qemu/block/
H A Draw.c208 static int raw_set_locked(BlockDriverState *bs, int locked) argument
210 bdrv_set_locked(bs->file, locked);
/external/quake/quake/src/QW/client/
H A Dcl_cam.c39 static qboolean locked = false; variable
98 if (autocam && locked && cl_chasecam.value)
106 if (cl.spectator && autocam && locked && cl_chasecam.value &&
118 locked = false;
132 locked = false;
286 locked = true;
305 if (!locked || cl.players[j].frags > cl.players[spec_track].frags)
325 if (cl_hightrack.value && !locked)
331 if (locked && (!cl.players[spec_track].name[0] || cl.players[spec_track].spectator)) {
332 locked
[all...]
/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/webkit/Source/WebCore/platform/graphics/wince/
H A DSharedBitmap.h59 bool locked() const { return m_locked; } function in class:WebCore::SharedBitmap
/external/kernel-headers/original/mtd/
H A Dmtd-abi.h31 #define MTD_STUPID_LOCK 0x2000 /* Always locked after reset */
75 uint32_t locked; member in struct:otp_info
/external/openssl/crypto/bio/
H A Db_sock.c124 int locked = 0; local
145 locked = 1;
164 if (locked)
/external/chromium/net/proxy/
H A Dproxy_resolver_v8.cc339 v8::Locker locked; local
352 v8::Locker locked; local
403 v8::Locker locked; local
482 v8::Locker locked; local
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp286 MutexGuard locked(lock);
287 FunctionPassManager &PM = jitstate->getPM(locked);
334 MutexGuard locked(lock);
341 FunctionPassManager &PM = jitstate->getPM(locked);
362 MutexGuard locked(lock);
372 FunctionPassManager &PM = jitstate->getPM(locked);
562 MutexGuard locked(lock);
568 MutexGuard locked(lock);
580 MutexGuard locked(lock);
587 MutexGuard locked(loc
621 runJITOnFunctionUnlocked(Function *F, const MutexGuard &locked) argument
643 jitTheFunction(Function *F, const MutexGuard &locked) argument
[all...]
/external/ppp/pppd/
H A Dtty.c133 int locked; /* lock() has succeeded */ variable
546 locked = 1;
802 if (locked) {
804 locked = 0;
859 if (locked)

Completed in 511 milliseconds

123