/external/elfutils/libelf/ |
gelf_update_symshndx.c | 63 rwlock_wrlock (scn->elf->lock); 140 rwlock_unlock (scn->elf->lock);
|
/external/jsr305/javadoc/javax/annotation/concurrent/ |
GuardedBy.html | 101 when holding a particular lock, which may be a built-in (synchronization) 102 lock, or may be an explicit java.util.concurrent.Lock. 104 The argument determines which lock guards the annotated field or method: this : 109 object to which the field refers. field-name : The lock object is referenced 111 class-name.field-name : The lock object is reference by the static field 112 specified by class-name.field-name. method-name() : The lock object is 114 object for the specified class should be used as the lock object.
|
/external/kernel-headers/original/asm-generic/bitops/ |
non-atomic.h | 58 * but actually fail. You must protect multiple accesses with a lock. 77 * but actually fail. You must protect multiple accesses with a lock.
|
/external/kernel-headers/original/asm-x86/ |
acpi_32.h | 59 int __acpi_acquire_global_lock(unsigned int *lock); 60 int __acpi_release_global_lock(unsigned int *lock);
|
/external/llvm/include/llvm/Support/ |
Threading.h | 36 /// acquire_global_lock - Acquire the global lock. This is a no-op if called 40 /// release_global_lock - Release the global lock. This is a no-op if called
|
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/ |
SDL_sysmouse.cc | 109 if ( be_app->Lock() ) { 135 SDL_Win->Lock();
|
/external/valgrind/main/helgrind/tests/ |
tc23_bogus_condwait.c | 1 /* Expect 5 errors total (4 re cvs, 1 re exiting w/lock.). 74 /* wrong flavour of lock */
|
/external/webkit/Source/JavaScriptCore/wtf/unicode/icu/ |
CollatorICU.cpp | 106 Locker<Mutex> lock(cachedCollatorMutex()); 139 Locker<Mutex> lock(cachedCollatorMutex());
|
/external/webkit/Source/WebCore/fileapi/ |
FileThread.cpp | 55 MutexLocker lock(m_threadCreationMutex); 97 MutexLocker lock(m_threadCreationMutex);
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
TilesManager.h | 99 android::Mutex::Autolock lock(m_generatorLock); 207 android::Mutex::Autolock lock(m_generatorLock);
|
/external/webkit/Source/WebCore/storage/ |
OriginQuotaManager.cpp | 57 void OriginQuotaManager::lock() function in class:WebCore::OriginQuotaManager 59 m_usageRecordGuard.lock();
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
WebUrlLoaderClient.h | 42 class Lock; 124 static base::Lock* syncLock();
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
file_lock.py | 27 """This class helps to lock files exclusively across processes.""" 83 _log.debug("Warning in release lock: %s" % str(sys.exc_info()))
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
http_lock_unittest.py | 36 self.http_lock_obj = http_lock.HttpLock(None, "WebKitTestHttpd.lock.", "WebKitTest.lock")
|
/frameworks/base/data/sounds/ |
AudioPackage6.mk | 26 $(LOCAL_PATH)/effects/ogg/Lock.ogg:system/media/audio/ui/Lock.ogg \
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
LockScreen.java | 126 // Don't poke the wake lock when returning to a state where the handle is 162 // Don't poke the wake lock when returning to a state where the handle is 243 // Don't poke the wake lock when returning to a state where the handle is 265 // Delay hiding lock screen long enough for animation to finish 307 * @param lockPatternUtils Used to know the state of the lock pattern settings. 327 Log.v(TAG, "***** CREATING LOCK SCREEN", new RuntimeException()); 413 Log.v(TAG, "***** LOCK ATTACHED TO WINDOW"); 425 Log.w(TAG, "***** LOCK CONFIG CHANGING", new RuntimeException());
|
/hardware/msm7k/libgralloc/ |
gralloc.cpp | 108 lock: gralloc_lock, 116 lock: PTHREAD_MUTEX_INITIALIZER, 187 pthread_mutex_lock(&m->lock); 189 pthread_mutex_unlock(&m->lock); 228 pthread_mutex_lock(&m->lock); 242 pthread_mutex_unlock(&m->lock); 296 pthread_mutex_lock(&m->lock); 310 pthread_mutex_unlock(&m->lock);
|
/hardware/msm7k/libgralloc-qsd8k/ |
gralloc.cpp | 165 lock: gralloc_lock, 174 lock: PTHREAD_MUTEX_INITIALIZER,
|
/hardware/ti/omap4xxx/ |
heaptracker.c | 92 static pthread_rwlock_t lock = PTHREAD_RWLOCK_INITIALIZER; variable 188 pthread_rwlock_wrlock(&lock); 195 pthread_rwlock_unlock(&lock); 203 pthread_rwlock_wrlock(&lock); 206 pthread_rwlock_unlock(&lock); 323 pthread_rwlock_wrlock(&lock); 327 pthread_rwlock_unlock(&lock); 534 num_checked = check_list(last, &lock);
|
/hardware/ti/omap4xxx/test/CameraHal/ |
camera_test.h | 40 #define KEY_AUTO_EXPOSURE_LOCK "auto-exposure-lock" 41 #define KEY_AUTO_WHITEBALANCE_LOCK "auto-whitebalance-lock"
|
/libcore/luni/src/main/java/java/io/ |
BufferedReader.java | 110 synchronized (lock) { 195 synchronized (lock) { 235 synchronized (lock) { 273 synchronized (lock) { 351 synchronized (lock) { 439 synchronized (lock) { 457 synchronized (lock) { 489 synchronized (lock) {
|
/libcore/luni/src/main/java/java/util/concurrent/ |
TimeUnit.java | 24 * java.util.concurrent.locks.Lock lock} is not available: 26 * <pre> Lock lock = ...; 27 * if (lock.tryLock(50L, TimeUnit.MILLISECONDS)) ... 31 * Lock lock = ...; 32 * if (lock.tryLock(50L, TimeUnit.SECONDS)) ...
|
/libcore/luni/src/main/java/libcore/net/http/ |
HttpConnectionPool.java | 84 * connection. We're careful not to do so while holding a lock! 115 // don't close streams while holding a lock!
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldReaderTest.java | 30 assertTrue("Test 1: Lock has not been set correctly.", r.lockSet(r)); 121 return (lock == o);
|
/packages/apps/Camera/src/com/android/camera/ |
ActivityBase.java | 72 // lock screen shows up. The keyguard takes input focus, so the caemra 144 // isKeyguardSecure excludes the slide lock case.
|