HomeSort by relevance Sort by last modified time
    Searched full:locked (Results 151 - 175 of 3018) sorted by null

1 2 3 4 5 67 8 91011>>

  /art/runtime/entrypoints/quick/
quick_jni_entrypoints.cc 140 jobject locked,
143 UnlockJniSynchronizedMethod(locked, self); // Must decode before pop.
185 jobject locked,
188 UnlockJniSynchronizedMethod(locked, self);
209 // locked object.
210 jobject locked = called->IsSynchronized() ? handle_scope->GetHandle(0).ToJObject() : nullptr; variable
213 if (locked != nullptr) {
215 UnlockJniSynchronizedMethod(locked, self);
220 if (locked != nullptr) {
222 UnlockJniSynchronizedMethod(locked, self); // Must decode before pop
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_dummy_thread.py 26 #Make sure locks start locked
27 self.assertTrue(not self.lock.locked(),
34 self.assertTrue(not self.lock.locked(),
47 #Test acquiring locked lock returns False
50 "Conditional acquiring of a locked lock incorrectly "
56 self.assertTrue(self.lock.locked(),
66 #Make sure that unconditional acquiring of a locked lock blocks.
  /external/python/cpython2/Lib/test/
test_dummy_thread.py 26 #Make sure locks start locked
27 self.assertFalse(self.lock.locked(),
34 self.assertFalse(self.lock.locked(),
47 #Test acquiring locked lock returns False
50 "Conditional acquiring of a locked lock incorrectly "
56 self.assertTrue(self.lock.locked(),
66 #Make sure that unconditional acquiring of a locked lock blocks.
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_dummy_thread.py 26 #Make sure locks start locked
27 self.assertTrue(not self.lock.locked(),
34 self.assertTrue(not self.lock.locked(),
47 #Test acquiring locked lock returns False
50 "Conditional acquiring of a locked lock incorrectly "
56 self.assertTrue(self.lock.locked(),
66 #Make sure that unconditional acquiring of a locked lock blocks.
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_dummy_thread.py 26 #Make sure locks start locked
27 self.assertTrue(not self.lock.locked(),
34 self.assertTrue(not self.lock.locked(),
47 #Test acquiring locked lock returns False
50 "Conditional acquiring of a locked lock incorrectly "
56 self.assertTrue(self.lock.locked(),
66 #Make sure that unconditional acquiring of a locked lock blocks.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py 26 #Make sure locks start locked
27 self.assertTrue(not self.lock.locked(),
34 self.assertTrue(not self.lock.locked(),
47 #Test acquiring locked lock returns False
50 "Conditional acquiring of a locked lock incorrectly "
56 self.assertTrue(self.lock.locked(),
66 #Make sure that unconditional acquiring of a locked lock blocks.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py 26 #Make sure locks start locked
27 self.assertTrue(not self.lock.locked(),
34 self.assertTrue(not self.lock.locked(),
47 #Test acquiring locked lock returns False
50 "Conditional acquiring of a locked lock incorrectly "
56 self.assertTrue(self.lock.locked(),
66 #Make sure that unconditional acquiring of a locked lock blocks.
  /external/autotest/server/cros/
lockfile.py 13 ... print 'somefile', 'is locked already.'
15 ... print 'somefile', 'can\\'t be locked.'
46 AlreadyUnlocked - File was not locked.
47 NotMyLock - File was locked but not by the current thread/process
162 the lock period expires and the file is still locked, raise
166 already locked.
174 If the file is not locked, raise NotLocked.
180 Tell whether or not the file is locked.
234 # Link creation failed. Maybe we've double-locked?
  /external/python/cpython3/Lib/test/
test_dummy_thread.py 20 #Make sure locks start locked
21 self.assertFalse(self.lock.locked(),
28 self.assertFalse(self.lock.locked(),
34 self.assertFalse(self.lock.locked(),
47 #Test acquiring locked lock returns False
50 "Conditional acquiring of a locked lock incorrectly "
56 self.assertTrue(self.lock.locked(),
66 #Make sure that unconditional acquiring of a locked lock blocks.
100 self.assertIn("locked", repr(self.lock))
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JIT.cpp 285 MutexGuard locked(lock);
286 FunctionPassManager &PM = jitstate->getPM(locked);
332 MutexGuard locked(lock);
339 FunctionPassManager &PM = jitstate->getPM(locked);
360 MutexGuard locked(lock);
370 FunctionPassManager &PM = jitstate->getPM(locked);
556 MutexGuard locked(lock);
562 MutexGuard locked(lock);
574 MutexGuard locked(lock);
581 MutexGuard locked(lock)
    [all...]
  /art/runtime/interpreter/
lock_count_data.h 34 // The vector will be visited with the ShadowFrame during GC (so all the locked-on objects are
41 // Add the given object to the list of monitors, that is, objects that have been locked. This
67 // Stores references to the locked-on objects. As noted, this should be visited during thread
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
ResetPasswordTest.java 30 * <li>can be created, changed and cleared when FBE is not locked, and
31 * <li>cannot be changed or cleared when FBE is locked.
57 * password when FBE is locked.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread_pthread.h 101 * -> a thread tries to lock a mutex it already has locked
102 * -> a thread tries to unlock a mutex locked by a different thread
107 * The pthread_lock struct implements a Python lock as a "locked?" bit
114 char locked; /* 0=unlocked, 1=locked */ member in struct:__anon4891
115 /* a <cond, mutex> pair to handle an acquire of a locked lock */
368 lock->locked = 0;
416 success = thelock->locked == 0;
421 /* mut must be locked by me -- part of the condition
423 while ( thelock->locked ) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/ConsoleControl/
ConsoleControl.h 51 device is locked. All the arguments are optional and only returned if a non
58 StdInLocked - TRUE if StdIn device is keyboard locked
107 EFI_DEVICE_ERROR - Std In not locked
  /external/autotest/cli/
atest_migrate_host 24 new_host = new.create_host(hostname=hostname, locked=True)
61 if not old_host.locked:
62 new_host.modify(locked=False)
host.py 66 self.data['locked'] = True
67 self.messages.append('Locked host')
69 self.data['locked'] = False
126 self.parser.add_option('--locked',
128 help='Only list locked hosts',
149 if options.locked and options.unlocked:
150 self.invalid_syntax('--locked and --unlocked are '
152 self.locked = options.locked
189 if self.locked or self.unlocked
    [all...]
host_unittest.py 128 u'locked': False,
139 u'locked': True,
158 u'locked': False,
169 u'locked': True,
189 u'locked': True,
213 u'locked': True,
224 u'locked': True,
249 u'locked': True,
284 u'locked': True,
295 u'locked': True
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
HostTableDecorator.java 64 lockedFilter = new BooleanFilter("locked");
76 addFilter("Locked", lockedFilter);
77 addFilter("Locked By", lockedByFilter);
  /external/ltp/testcases/kernel/syscalls/mmap/
mmap14.c 26 * and this region should be locked into memory.
79 tst_resm(TFAIL, "Expected %luK locked, "
80 "get %uK locked",
  /external/python/cpython2/Python/
thread_pthread.h 101 * -> a thread tries to lock a mutex it already has locked
102 * -> a thread tries to unlock a mutex locked by a different thread
107 * The pthread_lock struct implements a Python lock as a "locked?" bit
114 char locked; /* 0=unlocked, 1=locked */ member in struct:__anon32955
115 /* a <cond, mutex> pair to handle an acquire of a locked lock */
372 lock->locked = 0;
421 success = thelock->locked == 0;
426 /* mut must be locked by me -- part of the condition
428 while ( thelock->locked ) {
    [all...]
  /external/skia/src/gpu/
GrBufferAllocPool.h 67 * data is given to the caller. The buffer may or may not be locked. The
76 * in temporary storage and/or the buffer may be locked.
91 * data is given to the caller. The buffer may or may not be locked. The
100 * in temporary storage and/or the buffer may be locked.
163 * the vertices given to the caller. The buffer may or may not be locked.
172 * may be in temporary storage and/or the buffer may be locked.
189 * the vertices given to the caller. The buffer may or may not be locked.
198 * may be in temporary storage and/or the buffer may be locked.
239 * the indices is given to the caller. The buffer may or may not be locked.
248 * in temporary storage and/or the buffer may be locked
    [all...]
  /external/skqp/src/gpu/
GrBufferAllocPool.h 67 * data is given to the caller. The buffer may or may not be locked. The
76 * in temporary storage and/or the buffer may be locked.
91 * data is given to the caller. The buffer may or may not be locked. The
100 * in temporary storage and/or the buffer may be locked.
163 * the vertices given to the caller. The buffer may or may not be locked.
172 * may be in temporary storage and/or the buffer may be locked.
189 * the vertices given to the caller. The buffer may or may not be locked.
198 * may be in temporary storage and/or the buffer may be locked.
239 * the indices is given to the caller. The buffer may or may not be locked.
248 * in temporary storage and/or the buffer may be locked
    [all...]
  /external/valgrind/drd/tests/
tc04_free_lock.stderr.exp-s390 2 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
9 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
17 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
ContentLock.java 65 * Attempts to run the given Runnable if not-locked, or else the Runnable is set to be ran next
77 * Returns true if locked.
84 * Allows other selection code to perform a precondition check asserting the state is locked.
  /cts/apps/CameraITS/tests/scene1/
test_ev_compensation_advanced.py 31 LOCKED = 3
71 # Capture a single shot with the same EV comp and locked AE.
85 if (cap['metadata']['android.control.aeState'] == LOCKED):
90 assert(cap['metadata']['android.control.aeState'] == LOCKED)

Completed in 3836 milliseconds

1 2 3 4 5 67 8 91011>>