/external/jsr305/javadoc/javax/annotation/concurrent/ |
package-summary.html | 92 when holding a particular lock, which may be a built-in (synchronization) 93 lock, or may be an explicit java.util.concurrent.Lock.</TD>
|
/external/kernel-headers/original/asm-x86/ |
system_32.h | 222 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2) 223 #define rmb() alternative("lock; addl $0,0(%%esp)", "lfence", X86_FEATURE_XMM2) 224 #define wmb() alternative("lock; addl $0,0(%%esp)", "sfence", X86_FEATURE_XMM)
|
/external/kernel-headers/original/linux/ |
interrupt.h | 111 * and which is the only irq-context user of a lock, 112 * that it's safe to take the lock in the irq-disabled 157 * NOTE: non-genirq architectures, if they want to support the lock
|
sched.h | 182 * a separate lock). 563 spinlock_t lock; member in struct:task_delay_info 573 * single lock above (split into XXX_lock if contention is an issue). 729 * current task. Changing current->group_info requires the task lock, too. 774 int lock_depth; /* BKL lock depth */ 870 - access with [gs]et_task_comm (which lock [all...] |
/external/openssl/crypto/threads/ |
th-lock.c | 1 /* crypto/threads/th-lock.c */ 206 fprintf(stderr,"thread=%4d mode=%s lock=%s %s:%d\n", 356 fprintf(stderr,"thread=%4d mode=%s lock=%s %s:%d\n",
|
/external/skia/gpu/src/ |
GrBufferAllocPool.cpp | 212 // We could honor it by being sure we use updateSubData and not lock 265 fBufferPtr = block.fBuffer->lock(); 307 void* data = buffer->lock();
|
/external/stlport/src/ |
locale_catalog.cpp | 131 // We have a single lock for all of the hash tables. We may wish to 135 static _STLP_STATIC_MUTEX lock _STLP_MUTEX_INITIALIZER; 136 return lock;
|
/external/webkit/Source/WebCore/bridge/qt/ |
qt_instance.cpp | 92 JSLock lock(SilenceAssertionsOnly); 119 JSLock lock(SilenceAssertionsOnly); 183 JSLock lock(SilenceAssertionsOnly);
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
BaseLayerAndroid.cpp | 89 // FIXME: We lock here because we do not want 94 android::Mutex::Autolock lock(m_drawLock); 106 android::Mutex::Autolock lock(m_drawLock);
|
/external/webkit/Source/WebCore/platform/text/ |
TextEncodingRegistry.cpp | 328 MutexLocker lock(encodingRegistryMutex()); 343 MutexLocker lock(encodingRegistryMutex()); 380 MutexLocker lock(encodingRegistryMutex());
|
/frameworks/base/media/java/android/media/videoeditor/ |
VideoEditorImpl.java | 449 lock(); method 487 lock(); method 733 lock(); method 935 semAcquireDone = lock(ENGINE_ACCESS_MAX_TIMEOUT_MS); 1908 private void lock() throws InterruptedException { method in class:VideoEditorImpl 1926 private boolean lock(long timeoutMs) throws InterruptedException { method in class:VideoEditorImpl [all...] |
/frameworks/base/services/input/ |
EventHub.cpp | 737 // Poll for events. Mind the wake lock dance! 738 // We hold a wake lock at all times except during epoll_wait(). This works due to some 740 // a kernel wake lock. However, once the last pending event has been read, the device 741 // driver will release the kernel wake lock. To prevent the system from going to sleep 742 // when this happens, the EventHub holds onto its own user wake lock while the client 750 mLock.unlock(); // release lock before poll, must be before release_wake_lock 756 mLock.lock(); // reacquire lock after poll, must be after acquire_wake_lock [all...] |
/frameworks/base/services/java/com/android/server/ |
NotificationPlayer.java | 306 * We want to hold a wake lock while we do the prepare and play. The stop probably is 308 * while you're holding a wake lock (e.g. an alarm starting a notification), you want the 310 * simplest way to deal with this is to make it so there is a wake lock held while the
|
WifiService.java | 107 // some wifi lock statistics 355 * Protected by mWifiStateTracker lock. [all...] |
/frameworks/base/services/surfaceflinger/ |
LayerBase.h | 205 /** called with the state lock when the surface is removed from the 263 // these are protected by an external lock 268 // don't change, don't need a lock
|
/hardware/libhardware_legacy/audio/ |
AudioHardwareGeneric.cpp | 70 AutoMutex lock(mLock); 110 AutoMutex lock(mLock); 345 AutoMutex lock(mLock);
|
/hardware/ril/mock-ril/src/js/ |
ril_vars.js | 60 var PERSOSUBSTATE_IN_PROGRESS = 1; /* in between each lock transition */ 69 var PERSOSUBSTATE_SIM_NETWORK_PUK = 8; /* The corresponding perso lock is blocked */ 80 var PERSOSUBSTATE_RUIM_NETWORK1_PUK = 19; /* The corresponding perso lock is blocked */
|
/hardware/ril/mock-ril/src/proto/ |
ril.proto | 32 PERSOSUBSTATE_IN_PROGRESS = 1; /* in between each lock transition */ 41 PERSOSUBSTATE_SIM_NETWORK_PUK = 8; /* The corresponding perso lock is blocked */ 52 PERSOSUBSTATE_RUIM_NETWORK1_PUK = 19; /* The corresponding perso lock is blocked */
|
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/ |
OMXCameraAdapter.cpp | 701 Mutex::Autolock lock(mZoomLock); 740 //Populate current lock status 743 CAMHAL_LOGDB("Auto Exposure Lock get %s", mParams.get(CameraParameters::KEY_AUTO_EXPOSURE_LOCK)); 749 CAMHAL_LOGDB("Auto WhiteBalance Lock get %s", mParams.get(CameraParameters::KEY_AUTO_WHITEBALANCE_LOCK)); [all...] |
/hardware/ti/omap4xxx/domx/mm_osal/src/ |
timm_osal_mutex.c | 174 /*TIMM_OSAL_Error("Lock Mutex failed !"); */ 181 /*TIMM_OSAL_Error("Lock Mutex failed !"); */ 199 /*TIMM_OSAL_Error("Lock Mutex failed !"); */
|
/ndk/sources/cxx-stl/stlport/src/ |
locale_catalog.cpp | 131 // We have a single lock for all of the hash tables. We may wish to 135 static _STLP_STATIC_MUTEX lock _STLP_MUTEX_INITIALIZER; 136 return lock;
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
AbstractQueuedSynchronizer.java | 130 * methods. In particular, a strict FIFO lock can define 168 * <p>Here is a non-reentrant mutual exclusion lock class that uses 170 * represent the locked state. While a non-reentrant lock 177 * class Mutex implements Lock, java.io.Serializable { 186 * // Acquire the lock if state is zero 196 * // Release the lock by setting state to zero 219 * public void lock() { sync.acquire(1); } 284 * Hagersten) lock queue. CLH locks are normally used for 298 * <p>To enqueue into a CLH lock, you atomically splice it in as new [all...] |
/bionic/libc/bionic/ |
pthread-atfork.c | 50 /* We will lock this here, and unlock it in the parent and child functions.
|
/bionic/libc/kernel/common/linux/mtd/ |
mtd.h | 123 int (*lock) (struct mtd_info *mtd, loff_t ofs, size_t len); member in struct:mtd_info
|
/bionic/libc/kernel/common/linux/ |
perf_event.h | 172 __u32 lock; member in struct:perf_event_mmap_page
|