HomeSort by relevance Sort by last modified time
    Searched refs:LOCK (Results 1 - 25 of 321) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/kernel/io/disktest/
signals.c 78 LOCK(sig_mutex);
85 LOCK(sig_mutex);
92 LOCK(sig_mutex);
99 LOCK(sig_mutex);
106 LOCK(sig_mutex);
114 LOCK(sig_mutex);
165 LOCK(sig_mutex);
threading.h 108 #define LOCK(Mutex) WaitForSingleObject((void *) Mutex, INFINITE)
113 #define LOCK(Mutex) \
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
ActivityManagerCompatUtils.java 25 private static final Object LOCK = new Object();
36 synchronized(LOCK) {
  /external/selinux/libselinux/src/
selinux_internal.h 154 #define __pthread_mutex_init(LOCK, ATTR) \
157 pthread_mutex_init(LOCK, ATTR); \
160 #define __pthread_mutex_destroy(LOCK) \
163 pthread_mutex_destroy(LOCK); \
166 #define __pthread_mutex_lock(LOCK) \
169 pthread_mutex_lock(LOCK); \
172 #define __pthread_mutex_unlock(LOCK) \
175 pthread_mutex_unlock(LOCK); \
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
CameraActions.java 25 public static final int LOCK = 5;
67 case LOCK:
68 return "LOCK";
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowHttpResponseCache.java 19 private static final Object LOCK = new Object();
37 synchronized (LOCK) {
45 synchronized (LOCK) {
62 synchronized (LOCK) {
  /cts/tests/tests/libcorefileio/src/android/cts/
FileChannelInterProcessLockTest.java 45 /** The name of the file used when acquiring a lock. */
48 /** The position in the lock file used when acquiring a region lock. */
51 /** The extent of the lock file locked when acquiring a region lock. */
88 * Obtains a remote lock, then attempts to acquire a local lock on the same file,
91 * expectedLockLockResult: {@code true} if the returned lock should be valid,
103 checkTryLockBehavior(LockType.TRY_LOCK, LockType.LOCK,
136 * Obtains a remote lock, then attempts to acquire a local lock on the same file
    [all...]
  /external/autotest/server/cros/
host_lock_manager.py 15 A caller can lock or unlock one or more DUTs. If the caller fails to unlock()
22 manager.lock(['host1'])
32 @attribute LOCK: a string.
36 LOCK = 'lock'
79 @param operation: a string, LOCK or UNLOCK.
90 if operation == self.LOCK and host_info.locked:
102 def lock(self, hosts, lock_reason='Locked by HostLockManager'): member in class:HostLockManager
103 """Attempt to lock hosts in AFE.
112 logging.info('Attempt to lock %s', new_hosts
    [all...]
host_lock_manager_unittest.py 58 Add hosts to self.locked_hosts for LOCK and remove hosts from
62 @param operation: a string, LOCK or UNLOCK.
65 if operation == self.LOCK:
91 actual = self.manager._check_host(self.HOST1, self.manager.LOCK)
110 actual = self.manager._check_host(host_with_dot, self.manager.LOCK)
129 manager.lock(hosts, lock_reason='Locking for test')
138 manager.lock(hosts, lock_reason='Locking for test')
147 self.manager.lock(hosts)
183 self.manager.LOCK).AndReturn(self.HOST1)
188 self.manager._host_modifier(hosts, self.manager.LOCK,
    [all...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
SimpleLogger.java 34 private static final Object LOCK = new Object();
41 synchronized (LOCK) {
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/programmer/
BootloaderConnection.java 13 private static final Object LOCK = new Object();
17 synchronized (LOCK) {
  /prebuilts/go/darwin-x86/src/runtime/internal/atomic/
asm_386.s 18 LOCK
62 LOCK
78 LOCK
91 LOCK
151 LOCK
159 LOCK
167 LOCK
asm_amd64.s 21 LOCK
38 LOCK
72 LOCK
85 LOCK
95 LOCK
143 LOCK
151 LOCK
asm_amd64p32.s 18 LOCK
53 LOCK
69 LOCK
82 LOCK
92 LOCK
140 LOCK
148 LOCK
  /prebuilts/go/linux-x86/src/runtime/internal/atomic/
asm_386.s 18 LOCK
62 LOCK
78 LOCK
91 LOCK
151 LOCK
159 LOCK
167 LOCK
asm_amd64.s 21 LOCK
38 LOCK
72 LOCK
85 LOCK
95 LOCK
143 LOCK
151 LOCK
asm_amd64p32.s 18 LOCK
53 LOCK
69 LOCK
82 LOCK
92 LOCK
140 LOCK
148 LOCK
  /toolchain/binutils/binutils-2.27/libiberty/
setenv.c 70 /* LOCK and UNLOCK are defined as no-ops. This makes the libiberty
72 #define LOCK
90 LOCK;
169 LOCK;
  /prebuilts/go/darwin-x86/src/sync/atomic/
asm_amd64.s 42 LOCK
57 LOCK
69 LOCK
85 LOCK
asm_amd64p32.s 43 LOCK
58 LOCK
70 LOCK
86 LOCK
asm_386.s 40 LOCK
61 LOCK
82 LOCK
95 LOCK
132 LOCK
200 LOCK
  /prebuilts/go/linux-x86/src/sync/atomic/
asm_amd64.s 42 LOCK
57 LOCK
69 LOCK
85 LOCK
asm_amd64p32.s 43 LOCK
58 LOCK
70 LOCK
86 LOCK
asm_386.s 40 LOCK
61 LOCK
82 LOCK
95 LOCK
132 LOCK
200 LOCK
  /external/libnl/include/netlink-private/
netlink.h 234 static inline void nl_lock(pthread_mutex_t *lock)
236 pthread_mutex_lock(lock);
239 static inline void nl_unlock(pthread_mutex_t *lock)
241 pthread_mutex_unlock(lock);
244 static inline void nl_read_lock(pthread_rwlock_t *lock)
246 pthread_rwlock_rdlock(lock);
249 static inline void nl_read_unlock(pthread_rwlock_t *lock)
251 pthread_rwlock_unlock(lock);
254 static inline void nl_write_lock(pthread_rwlock_t *lock)
256 pthread_rwlock_wrlock(lock);
    [all...]

Completed in 472 milliseconds

1 2 3 4 5 6 7 8 91011>>