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

1 2 3 4 5 6 7 8 91011>>

  /libcore/sqlite-jdbc/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/clearsilver/man/man3/
cWait.3 27 mutex - locked mutex to protect <cond>.
31 The mutex <mutex> must be locked by the thread.
  /external/kernel-headers/original/asm-arm/
mman.h 9 #define MAP_LOCKED 0x2000 /* pages are locked */
  /external/dbus/dbus/
dbus-string-private.h 51 unsigned int locked : 1; /**< DBusString has been locked and can't be changed */ member in struct:__anon3405
82 * modifiable - may not be locked or const. Also declares
89 _dbus_assert (!(real)->locked)
92 * Checks assertions about a string object that may be locked but
103 * 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/kernel-headers/original/asm-x86/
mman.h 11 #define MAP_LOCKED 0x2000 /* pages are locked */
  /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/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...]
  /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.
  /frameworks/base/cmds/keystore/
keystore.h 22 LOCKED = 2,
keystore_cli.c 29 [LOCKED] = "Locked",
  /external/bluetooth/glib/gthread/
gthread-impl.c 109 "previously locked at '%s'",
131 "previously locked at '%s'",
159 "previously locked by a different thread at '%s'",
177 g_error ("Trying to free a locked mutex at '%s', "
178 "which was previously locked at '%s'",
200 g_error ("Trying to use a mutex locked by another thread in "
232 g_error ("Trying to use a mutex locked by another thread in "
  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 69 Mms.LOCKED
105 // Get the locked flag from the M-Notification.ind so it can be transferred
158 // Copy over the locked flag from the M-Notification.ind in case
159 // the user locked the message before activating the download.
240 boolean locked) {
243 values.put(Mms.LOCKED, locked); // preserve the state of the M-Notification.ind lock.
  /external/chromium/base/
worker_pool_linux.cc 115 AutoLock locked(lock_);
123 AutoLock locked(lock_);
142 AutoLock locked(lock_);
  /system/core/include/cutils/
mspace.h 74 int locked);
81 size_t max_capacity, int locked, const char *name);
87 size_t max_capacity, int locked, void *base);
  /external/chromium/net/third_party/nss/ssl/
notes.txt 106 sec->sendSequence locked by xmitBufLock
108 sec->writeBuf* (ptr & content) locked by xmitBufLock
109 "in" locked by xmitBufLock
117 ss->sec->writebuf* (ptr & content) locked by xmitBufLock
118 "buf" locked by xmitBufLock
124 gs->* (locked by recvBufLock )
  /system/core/libcutils/
mspace.c 138 size_t max_capacity, int locked, void *base) {
159 locked);
202 size_t max_capacity, int locked, char const *name) {
240 locked, base);
248 size_t max_capacity, int locked) {
250 max_capacity, locked, NULL);
  /external/qemu/android/utils/
filelock.c 47 ** 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;
filelock.h 22 ** NULL only if the corresponding path is already locked by another emulator
  /external/webkit/WebKit/mac/WebView/
WebDynamicScrollBarsViewInternal.h 46 - (void)setHorizontalScrollingModeLocked:(BOOL)locked;
47 - (void)setVerticalScrollingModeLocked:(BOOL)locked;
  /frameworks/base/core/java/android/text/method/
MetaKeyKeyListener.java 95 * or locked meta key.
110 * @return 0 if inactive, 1 if active, 2 if locked.
140 if (flag == LOCKED) {
187 * Call this if you are a method that ignores the locked meta state
200 if (current == LOCKED)
234 content.setSpan(what, 0, 0, LOCKED);
237 else if (state == LOCKED)
305 * Call this if you are a method that ignores the locked meta state
332 * or locked meta key.
346 * @return 0 if inactive, 1 if active, 2 if locked
    [all...]
  /external/chromium/net/disk_cache/
file_lock.h 27 // the operations are inlined / optimized, the "locked" operations can happen
  /external/chromium/net/url_request/
url_request_job_manager.cc 144 AutoLock locked(lock_);
163 AutoLock locked(lock_);
186 AutoLock locked(lock_);
199 AutoLock locked(lock_);

Completed in 1406 milliseconds

1 2 3 4 5 6 7 8 91011>>