HomeSort by relevance Sort by last modified time
    Searched full:locked (Results 26 - 50 of 459) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementSyncBehavior.java 26 * the element has <code>syncBehavior="locked"</code> .
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 201 "locked=0",
223 "locked=0 AND date<" + latestDate,
259 "locked=0",
339 ") AND locked=0",
385 "thread_id=" + threadId + " AND locked=0",
417 "thread_id=" + threadId + " AND locked=0 AND date<" + latestDate,
444 "thread_id=" + threadId + " AND locked=0",
  /dalvik/vm/
JarFile.c 193 bool locked = false; local
268 locked = true;
273 * The file descriptor returned is still locked, and is positioned
326 if (locked) {
333 locked = false;
351 if (locked)
Sync.h 145 * object may be unlocked, thin-locked, or fat-locked.
  /external/webkit/WebKit/mac/WebView/
WebDynamicScrollBarsView.mm 294 - (void)setHorizontalScrollingModeLocked:(BOOL)locked
296 hScrollModeLocked = locked;
299 - (void)setVerticalScrollingModeLocked:(BOOL)locked
301 vScrollModeLocked = locked;
304 - (void)setScrollingModesLocked:(BOOL)locked
306 hScrollModeLocked = vScrollModeLocked = locked;
  /frameworks/base/core/jni/
android_database_SQLiteQuery.cpp 62 // The table is locked, retry
63 LOG_WINDOW("Database locked, retrying");
88 // The table is locked, retry
89 LOG_WINDOW("Database locked, retrying");
289 // The table is locked, retry
290 LOG_WINDOW("Database locked, retrying");
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
ReentrantReadWriteLockTest.java 257 * write-tryLock fails if locked
277 * read-tryLock fails if locked
297 * Multiple threads can hold a read lock when not write-locked
386 * Read trylock succeeds if write locked by current thread
397 * Read lock succeeds if write locked by current thread even if
436 * Read lock succeeds if write locked by current thread even if
476 * Write lock succeeds if write locked by current thread even if
516 * Fair Read trylock succeeds if write locked by current thread
527 * Fair Read lock succeeds if write locked by current thread even if
567 * Fair Read lock succeeds if write locked by current thread even i
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccCard.java 48 private boolean mIccPinLocked = true; // Default to locked
59 /* LOCKED means ICC is locked by pin or by network */
60 static public final String INTENT_VALUE_ICC_LOCKED = "LOCKED";
69 /* PIN means ICC is locked on PIN1 */
71 /* PUK means ICC is locked on PUK1 */
73 /* NETWORK means ICC is locked on NETWORK PERSONALIZATION */
252 * @return true for ICC locked enabled
253 * false for ICC locked disabled
274 * @param enabled "true" for locked "false" for unlocked
    [all...]
  /development/samples/BusinessCard/src/com/example/android/businesscard/
BusinessCardActivity.java 96 * locked by some process for a long time. If we locked up the UI thread while waiting
  /external/bluetooth/glib/docs/reference/glib/tmpl/
threads.sgml 56 thread safe (all global data is automatically locked), but individual
57 data structure instances are not automatically locked for performance
190 callback from GLib. Also no mutexes may be currently locked while
627 Locks @mutex. If @mutex is already locked by another thread, the
641 already has locked @mutex. Use #GStaticRecMutex, if you need recursive
652 Tries to lock @mutex. If @mutex is already locked by another
666 %TRUE, if the current thread already has locked @mutex. Use
672 @Returns: %TRUE, if @mutex could be locked.
804 @Returns: %TRUE, if the #GStaticMutex could be locked.
915 @Returns: %TRUE, if the lock could be locked
    [all...]
  /external/kernel-headers/original/mtd/
mtd-abi.h 31 #define MTD_STUPID_LOCK 0x2000 /* Always locked after reset */
75 uint32_t locked; member in struct:otp_info
  /external/qemu/distrib/sdl-1.2.12/src/thread/pth/
SDL_syscond.c 103 The mutex must be locked before entering this function!
104 The mutex is unlocked during the wait, and locked again after the wait.
  /external/zlib/examples/
gzlog.h 26 opening the log file locked for small bursts, and then closing it. The log
53 /* Close a gzlog object. Return non-zero on error. The log file is locked
  /frameworks/base/core/jni/android/graphics/
NIOBuffer.cpp 64 SkDebugf("======= free: array still locked %x %p\n", fLockedArray, fLockedPtr);
79 SkDebugf("======= lock: array still locked %x %p\n", fLockedArray, fLockedPtr);
  /external/e2fsprogs/lib/et/test_cases/
imap_err.c 18 "Mailbox is locked by POP server",
  /external/kernel-headers/original/asm-generic/
resource.h 34 # define RLIMIT_MEMLOCK 8 /* max locked-in-memory address space */
  /external/kernel-headers/original/linux/
spinlock_up.h 14 * In the debug case, 1 means unlocked, 0 means locked. (the values
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_sysyuv.h 61 int locked; member in struct:private_yuvhwdata
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerTester.java 70 // Call into them with our monitor locked, so they don't have
  /packages/apps/Phone/src/com/android/phone/
SpecialCharSequenceMgr.java 68 * locked state, the keyguard comes up and the only way
100 * sequences" that are available even if the device is locked.
112 // The only sequences available on a locked device are the "**04"
114 // codes. (e.g. for the case where you're currently locked out of
  /system/extras/tests/bionic/libc/common/
test_static_cpp_mutex.cpp 51 fprintf(stderr, "recursive lock initialized and locked\n" );
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_mutex.h 65 It is an error to unlock a mutex that has not been locked by
142 The mutex must be locked before entering this function!
143 The mutex is re-locked once the condition variable is signaled.
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_surface.c 116 surface->locked = 0;
450 /* Make sure the surfaces aren't locked */
455 if ( src->locked || dst->locked ) {
456 SDL_SetError("Surfaces must not be locked during blit");
738 if ( ! surface->locked ) {
756 ++surface->locked;
762 * Unlock a previously locked surface
766 /* Only perform an unlock if we are locked */
767 if ( ! surface->locked || (--surface->locked > 0) )
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemvideo.h 85 SDL_bool locked; /* AES locked for fullscreen ? */ member in struct:SDL_PrivateVideoData
132 #define GEM_locked (this->hidden->locked)
  /frameworks/base/awt/org/apache/harmony/awt/wtk/
Synchronizer.java 50 * Owner of synchronizer is a last thread that successfully locked synchronizer and
71 * If the mutex is already locked by another thread, the current thread will be put
115 // awt.20=Can't unlock not locked resource.

Completed in 72 milliseconds

12 3 4 5 6 7 8 91011>>