HomeSort by relevance Sort by last modified time
    Searched defs:lock (Results 1301 - 1325 of 1530) sorted by null

<<51525354555657585960>>

  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
blkdev.h 43 spinlock_t lock; member in struct:as_io_context
  /system/security/keystore/
keystore.cpp 989 void lock(uid_t uid) { function in class:KeyStore
1668 int32_t lock() { function in class:android::KeyStoreProxy
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
os_unix.c 207 unsigned char eFileLock; /* The type of lock held on this fd */
514 ** integer lock-type.
827 ** sets or clears a lock, that operation overrides any prior locks set
837 ** an exclusive lock on fd1, then try to get an exclusive lock
838 ** on fd2, it works. I would have expected the second lock to
839 ** fail since there was already a lock on the file due to fd1.
855 ** locks to see if another thread has previously set a lock on that same
869 ** field that tells us its internal lock status. cnt==0 means the
870 ** file is unlocked. cnt==-1 means the file has an exclusive lock
1210 struct flock lock; local
1259 struct flock lock; local
1344 struct flock lock; local
1552 struct flock lock; local
    [all...]
  /external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp 32 void Lock() __attribute__((exclusive_lock_function));
64 // The universal lock, written "*", allows checking to be selectively turned
116 sls_mw.mu.Lock();
122 sls_mu.Lock();
128 sls_mu.Lock();
134 sls_mu2.Lock();
140 sls_mu.Lock();
146 sls_mu.Lock();
152 sls_mu.Lock();
153 sls_mu2.Lock();
3671 void Foo::lock() { mu1_.Lock(); mu2_.Lock(); } function in class:MultipleAttributeTest::Foo
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
JmDNSImpl.java 325 * The timer that triggers our announcements. We can't use the main timer object, because that could cause a deadlock where Prober waits on JmDNS.this lock held by close(), close() waits for us to finish, and we wait for Prober to give us back
337 * This lock is used to coordinate processing of incoming and outgoing messages. This is needed, because the Rendezvous Conformance Test does not forgive race conditions.
482 // thread - it attempts to lock the IoLock object, and deadlock
    [all...]
  /external/kernel-headers/original/linux/
perf_event.h 259 * seq = pc->lock;
269 * } while (pc->lock != seq);
274 __u32 lock; /* seqlock for synchronization */ member in struct:perf_event_mmap_page
752 raw_spinlock_t lock; member in struct:perf_event_context
754 * Protect the list of events. Locking either mutex or lock
756 * the list you need to lock both the mutex and the spinlock.
  /external/linux-tools-perf/util/include/linux/added/
perf_event.h 277 * seq = pc->lock;
287 * } while (pc->lock != seq);
292 __u32 lock; /* seqlock for synchronization */ member in struct:perf_event_mmap_page
897 raw_spinlock_t lock; member in struct:perf_event_context
899 * Protect the list of events. Locking either mutex or lock
901 * the list you need to lock both the mutex and the spinlock.
  /external/valgrind/main/helgrind/
hg_main.c 70 // FIXME: when client destroys a lock or a CV, remove these
95 // the thread still holds the lock.
128 static Lock* admin_locks = NULL;
133 /* Mapping table for lock guest addresses to Lock* */
134 static WordFM* map_locks = NULL; /* WordFM LockAddr Lock* */
136 /* The word-set universes for lock sets. */
137 static WordSetU* univ_lsets = NULL; /* sets of Lock* */
138 static WordSetU* univ_laog = NULL; /* sets of Lock*, for LAOG */
149 Lock* HG_(get_admin_locks) ( void ) { return admin_locks;
184 Lock* lock = HG_(zalloc)( "hg.mk_Lock.1", sizeof(Lock) ); local
684 Lock* lock = mk_LockN(lkk, ga); local
1196 Lock* lock; local
    [all...]
  /frameworks/base/core/java/android/hardware/
Camera.java 113 * and re-lock the camera.
413 public native final void lock(); method in class:Camera
419 * which will re-acquire the lock and allow you to continue using the
    [all...]

Completed in 898 milliseconds

<<51525354555657585960>>