/external/libcap/libcap/include/uapi/linux/ |
securebits.h | 6 setting is locked or not. A setting which is locked cannot be
|
/external/tpm2/ |
NV_WriteLock.c | 38 // If write access failed because the index is already locked, then it is 47 // can not be write-locked
|
/external/v8/src/base/platform/ |
mutex.h | 42 // locked and owned by the calling thread, and immediately. If the mutex 43 // is already locked by another thread, suspends the calling thread until 47 // Unlocks the given mutex. The mutex is assumed to be locked and owned by 52 // successfully locked. 124 // - The maximum number of times that a recursive mutex may be locked is 135 // Locks the mutex. If another thread has already locked the mutex, a call to 146 // locked by the current thread of execution, otherwise, the behavior is 151 // successfully locked.
|
/external/valgrind/drd/tests/ |
recursive_mutex.stderr.exp-linux | 8 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. 20 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1.
|
tc23_bogus_condwait.stderr.exp-linux-ppc | 7 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 16 Mutex not locked: mutex 0x........, recursion count 0, owner 0. 31 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 43 Mutex not locked by calling thread: mutex 0x........, recursion count 1, owner 2. 51 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 63 The impossible happened: mutex is locked simultaneously by two threads: mutex 0x........, recursion count 1, owner 2. 71 Mutex not locked by calling thread: mutex 0x........, recursion count 2, owner 1.
|
tc09_bad_unlock.stderr.exp-glibc2.8 | 2 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. 12 Mutex not locked by calling thread: mutex 0x........, recursion count 1, owner 1. 27 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1. 36 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. 50 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
RotationLockControllerImpl.java | 62 public void setRotationLocked(boolean locked) { 63 RotationPolicy.setRotationLock(mContext, locked);
|
/frameworks/native/include/gui/ |
IProducerListener.h | 28 // producer will generally have a mutex that is locked during calls from the 30 // producer *MUST* be called only when the BufferQueue mutex is NOT locked.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
securebits.h | 6 setting is locked or not. A setting which is locked cannot be
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
securebits.h | 6 setting is locked or not. A setting which is locked cannot be
|
/external/autotest/server/cros/dynamic_suite/ |
fakes.py | 45 def __init__(self, hostname='', status='Ready', locked=False, locked_by=''): 48 self.locked = locked 55 'Locked' if self.locked else 'Unlocked', 56 ' by %s' % self.locked_by if self.locked else '')
|
/external/libdaemon/libdaemon/ |
dpid.c | 102 int fd = -1, locked = -1; local 122 if ((locked = lock_file(fd, 1)) < 0) 161 if (locked >= 0) 218 int locked = -1; local 235 if ((locked = lock_file(fd, 1)) < 0) { 260 if (locked >= 0)
|
/external/skia/src/gpu/ |
GrBufferAllocPool.h | 76 * data is given to the caller. The buffer may or may not be locked. The 85 * in temporary storage and/or the buffer may be locked. 142 * the vertices given to the caller. The buffer may or may not be locked. 151 * may be in temporary storage and/or the buffer may be locked. 186 * the indices is given to the caller. The buffer may or may not be locked. 195 * in temporary storage and/or the buffer may be locked.
|
GrLayerCache.cpp | 29 SkASSERT(!fLocked); // layers without a texture cannot be locked 42 // If a layer is locked it must have a texture (though it need not be 48 // Unfortunately there is a brief time where a layer can be locked 49 // but not used, so we can only check the "used implies locked" 179 if (layer->locked()) { 180 // This layer is already locked 249 if (layer->locked()) { 250 // This layer is already locked 276 if (nullptr == layer || !layer->locked()) { 277 // invalid or not locked [all...] |
/external/autotest/client/cros/cellular/pseudomodem/ |
sim.py | 114 locked=False, 137 self._lock_enabled = locked 138 self._show_retries = locked 139 if locked: 169 if not self.locked and self._lock_enabled: 177 whether or not the SIM is locked. 217 def locked(self): member in class:SIM 218 """ @returns: True, if the SIM is locked. False, otherwise. """ 256 if self.locked: 329 if not self.locked [all...] |
/frameworks/base/core/java/android/text/method/ |
MetaKeyKeyListener.java | 51 * When key modifiers are toggled into a latched or locked state, the state 53 * meta state integer managed by the client. These latched or locked modifiers 91 * Flag that indicates that the SHIFT key is locked in CAPS mode. 95 * Flag that indicates that the ALT key is locked. 99 * Flag that indicates that the SYM key is locked. 157 * or locked meta key. 178 * or locked meta key. 197 * @return 0 if inactive, 1 if active, 2 if locked. 228 * @return 0 if inactive, 1 if active, 2 if locked. 241 // META_SELECTING is only ever set to PRESSED and can't be LOCKED, so return [all...] |
/cts/tests/camera/src/android/hardware/camera2/cts/helpers/ |
Camera2Focuser.java | 69 * This callback is called when auto focus completes and locked. 134 public synchronized void onAutoFocusSuccess(CaptureResult result, boolean locked) { 136 mLocked = locked; 138 if (locked) { 144 public synchronized void onAutoFocusFail(CaptureResult result, boolean locked) { 146 mLocked = locked; 148 if (locked) { 186 * lock it. If AF is already locked, return. Otherwise, initiate a full 201 * Cancel ongoing auto focus, unlock the auto-focus if it was locked, and 249 // locked, return. Otherwise, initiate a full active scan [all...] |
/external/autotest/frontend/afe/ |
admin.py | 144 locked = cleaned_data.get('locked') 146 if locked and not lock_reason: 164 list_display = ('hostname', 'platform', 'locked', 'status') 165 list_filter = ('locked', 'protection', 'status') 184 self.fields = ('hostname', 'locked', 'lock_reason', 'leased', 190 self.fields = ('hostname', 'locked', 'lock_reason', 223 locked = form.cleaned_data['locked'] 232 locked, lock_reason, labels, acls [all...] |
/external/clang/include/clang/Analysis/Analyses/ |
ThreadSafety.h | 59 /// \enum SK_LockedSomeLoopIterations -- a mutex is locked for some but not all 61 /// \enum SK_LockedSomePredecessors -- a mutex is locked in some but not all 63 /// \enum SK_LockedAtEndOfFunction -- a mutex is still locked at the end of a 116 /// 1. a mutex is locked on an "if" branch but not the "else" branch, 118 /// 3. or when a mutex is locked but not unlocked inside a function. 123 /// locked 133 /// example, if a mutex is locked exclusively during an if branch and shared 155 /// the operation is not locked. 178 /// Warn when a function is called while an excluded mutex is locked. For 179 /// example, the mutex may be locked inside the function [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/ |
Camera2Focuser.java | 72 * This callback is called when auto focus completes and locked. 137 public synchronized void onAutoFocusSuccess(CaptureResult result, boolean locked) { 139 mLocked = locked; 141 if (locked) { 147 public synchronized void onAutoFocusFail(CaptureResult result, boolean locked) { 149 mLocked = locked; 151 if (locked) { 189 * lock it. If AF is already locked, return. Otherwise, initiate a full 204 * Cancel ongoing auto focus, unlock the auto-focus if it was locked, and 252 // locked, return. Otherwise, initiate a full active scan [all...] |
/libcore/ojluni/src/main/java/java/nio/channels/ |
FileLock.java | 62 * locked region. Only the validity of a lock is subject to change over time; 80 * the content of the locked region is system-dependent and therefore 104 * memory-mapped files only when the locked regions are page-aligned and a 130 * The position within the file at which the locked region starts; 134 * The size of the locked region; must be non-negative, and the sum 184 * Returns the position within the file of the first byte of the locked 187 * <p> A locked region need not be contained within, or even overlap, the 198 * Returns the size of the locked region in bytes. 200 * <p> A locked region need not be contained within, or even overlap, the 204 * @return The size of the locked regio [all...] |
/frameworks/av/camera/ |
CameraMetadata.cpp | 60 ALOGE("%s: Assignment to a locked CameraMetadata!", __FUNCTION__); 84 ALOGE("%s: Can't unlock a non-locked CameraMetadata!", __FUNCTION__); 98 ALOGE("%s: CameraMetadata is locked", __FUNCTION__); 108 ALOGE("%s: CameraMetadata is locked", __FUNCTION__); 119 ALOGE("%s: CameraMetadata is locked", __FUNCTION__); 132 ALOGE("%s: CameraMetadata is locked", __FUNCTION__); 144 ALOGE("%s: CameraMetadata is locked", __FUNCTION__); 165 ALOGE("%s: CameraMetadata is locked", __FUNCTION__); 192 ALOGE("%s: CameraMetadata is locked", __FUNCTION__); 205 ALOGE("%s: CameraMetadata is locked", __FUNCTION__) [all...] |
/external/autotest/frontend/client/src/autotest/afe/ |
HostDetailView.java | 268 if (currentHostObject.get("locked").isBoolean().booleanValue()) { 399 boolean locked = currentHostObject.get("locked").isBoolean().booleanValue(); 400 changeLock(!locked); 406 boolean locked = currentHostObject.get("locked").isBoolean().booleanValue(); 407 changeLock(!locked); 494 boolean locked = currentHostObject.get("locked").isBoolean().booleanValue(); 495 if (locked) { [all...] |
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
CameraSettings.java | 160 * @param locked Whether to prevent changes to these fields. 165 /*package*/ void setSizesLocked(boolean locked) { 166 mSizesLocked = locked; 234 Log.w(TAG, "Attempt to change preview size while locked"); 275 Log.w(TAG, "Attempt to change photo size while locked"); 353 public void setAutoExposureLock(boolean locked) { 354 mAutoExposureLocked = locked; 436 public void setAutoWhiteBalanceLock(boolean locked) { 437 mAutoWhiteBalanceLocked = locked;
|
/external/chromium-trace/catapult/third_party/flot/ |
jquery.flot.crosshair.js | 72 var crosshair = { x: -1, y: -1, locked: false }; 91 crosshair.locked = true; 95 crosshair.locked = false; 99 if (crosshair.locked) 109 if (crosshair.locked)
|