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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/docs/internals/
tm-mutexstates.dot 4 locked;
10 free -> locked [ label="locked" ];
11 locked -> unlocking [ label="unlocked\nby owner" ];
13 unlocking -> locked [ label="lock changed owner" ];
17 dead -> locked [ style=dotted, label="locked\nafter destroy" ];
20 locked -> free [ style=dotted, label="unlocked\nby non-owner" ];
21 locked -> dead [ style=dotted, label="destroyed\nwhile locked" ];
    [all...]
  /external/javasqlite/src/main/java/SQLite/
BusyHandler.java 10 * Invoked when a table is locked by another process
15 * @param table the name of the locked table
16 * @param count number of times the table was locked
  /external/valgrind/main/drd/tests/
annotate_rwlock.c 28 volatile int locked; member in struct:__anon12449
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, 0, 1) == 1
    [all...]
pth_cancel_locked.c 18 /* Inform the main thread that s_mutex2 has been locked, and wait for pthread_cancel(). */
38 /* Wait until the created thread has locked s_mutex2. */
pth_cancel_locked.stderr.exp-darwin 2 Mutex still locked at thread exit: mutex 0x........, recursion count 1, owner 2.
9 Mutex still locked at thread exit: mutex 0x........, recursion count 1, owner 2.
pth_cancel_locked.stderr.exp 2 Mutex still locked at thread exit: mutex 0x........, recursion count 1, owner 2.
  /external/valgrind/main/helgrind/tests/
annotate_rwlock.c 38 volatile int locked; member in struct:__anon12527
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, 0, 1) == 1
    [all...]
tc09_bad_unlock.c 43 /* Now we get a freeing-locked-lock error, since the stack
44 frame is removed whilst mx2 is still locked. */
  /external/skia/gpu/include/
GrGeometryBuffer.h 47 * to draw from the buffer while it is locked. It is an error to call lock
48 * on an already locked buffer.
56 * is not locked.
58 * @return ptr to locked buffer data or undefined if buffer is not locked.
70 Queries whether the buffer has been locked.
72 @return true if the buffer is locked, false otherwise.
  /external/chromium/chrome/browser/extensions/
extension_idle_api_constants.cc 16 const char kStateLocked[] = "locked";
  /external/kernel-headers/original/asm-arm/
mman.h 9 #define MAP_LOCKED 0x2000 /* pages are locked */
  /development/tools/emulator/system/camera/
EmulatedCamera.h 110 * NOTE: When this method is called the object is locked.
117 * NOTE: When this method is called the object is locked.
125 * NOTE: When this method is called the object is locked.
137 * NOTE: When this method is called the object is locked.
143 * NOTE: When this method is called the object is locked.
152 * NOTE: When this method is called the object is locked.
157 * NOTE: When this method is called the object is locked.
162 * NOTE: When this method is called the object is locked.
169 * NOTE: When this method is called the object is locked.
175 * NOTE: When this method is called the object is locked
    [all...]
  /hardware/msm7k/libgralloc-qsd8k/
mapper.cpp 113 /* NOTE: we need to initialize the buffer as not mapped/not locked
138 * to un-map it. It's an error to be here with a locked buffer.
145 "[unregister] handle %p still locked (state=%08x)",
165 * to un-map it. It's an error to be here with a locked buffer.
169 "[terminate] handle %p still locked (state=%08x)",
208 // already locked for write
209 LOGE("handle %p already locked for write", handle);
212 // already locked for read
214 LOGE("handle %p already locked for read", handle);
218 //LOGD("%p already locked for read... count = %d",
    [all...]
  /external/dbus/dbus/
dbus-string-private.h 49 unsigned int locked : 1; /**< DBusString has been locked and can't be changed */ member in struct:__anon5222
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
  /external/srec/portable/include/
pmutex.h 50 #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/chromium/chrome/browser/resources/options/chromeos/
internet_options.html 3 <div id="locked-network-banner">
4 <span id="locked-network-icon"></span>
5 <span id="access-locked-text" i18n-content="accessLockedMsg"></span>
  /external/kernel-headers/original/asm-x86/
mman.h 11 #define MAP_LOCKED 0x2000 /* pages are locked */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
mman.h 11 #define MAP_LOCKED 0x2000 /* pages are locked */
  /external/chromium/net/socket_stream/
socket_stream_job_manager.cc 34 base::AutoLock locked(lock_);
49 base::AutoLock locked(lock_);
  /external/clang/test/Analysis/
idempotent-operations.m 10 @property int locked;
40 int x = placeholder.media.locked = placeholder ? 1 : 0;
  /external/quake/quake/src/QW/client/
cl_cam.c 39 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 = false
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 285 MutexGuard locked(lock);
286 FunctionPassManager &PM = jitstate->getPM(locked);
332 MutexGuard locked(lock);
339 FunctionPassManager &PM = jitstate->getPM(locked);
360 MutexGuard locked(lock);
370 FunctionPassManager &PM = jitstate->getPM(locked);
556 MutexGuard locked(lock);
562 MutexGuard locked(lock);
574 MutexGuard locked(lock);
581 MutexGuard locked(lock)
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
memry.h 74 * - MEM_NONPAGED:Allocate from page locked memory.
109 * - MEM_NONPAGED: Allocate from page locked memory.
157 * A pointer to linear page locked memory, or
161 * be locked, since the page count is derived from this number.
163 * Memory locked by this service can be accessed at interrupt time, or
194 * Unlocks a buffer previously locked using MEMRY_PageLock().
196 * pBuffer: Pointer to locked memory (as returned by MEMRY_PageLock()).
201 * pBuffer must be a pointer to a locked, shared data buffer previously
202 * locked with MEMRY_PageLock().
  /hardware/ti/omap3/dspbridge/libbridge/inc/
memry.h 74 * - MEM_NONPAGED:Allocate from page locked memory.
109 * - MEM_NONPAGED: Allocate from page locked memory.
157 * A pointer to linear page locked memory, or
161 * be locked, since the page count is derived from this number.
163 * Memory locked by this service can be accessed at interrupt time, or
194 * Unlocks a buffer previously locked using MEMRY_PageLock().
196 * pBuffer: Pointer to locked memory (as returned by MEMRY_PageLock()).
201 * pBuffer must be a pointer to a locked, shared data buffer previously
202 * locked with MEMRY_PageLock().
  /external/kernel-headers/original/linux/
mutex.h 48 /* 1: unlocked, 0: locked, negative: locked, possible waiters */
109 * mutex_is_locked - is the mutex locked
112 * Returns 1 if the mutex is locked, 0 if unlocked.

Completed in 3110 milliseconds

1 2 3 4 5 6 7 8 91011>>