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

1 2 3

  /external/guava/guava/src/com/google/common/util/concurrent/
Monitor.java 159 * <p>This version adds some verbosity around the {@code Guard} objects, but removes that same
167 * private final Monitor.Guard valuePresent = new Monitor.Guard(monitor) {
172 * private final Monitor.Guard valueAbsent = new Monitor.Guard(monitor) {
208 * A boolean condition for which a thread may wait. A {@code Guard} is associated with a single
209 * {@code Monitor}. The monitor may check the guard at arbitrary times from any thread occupying
210 * the monitor, so code should not be written to rely on how often a guard might or might not be
213 * <p>If a {@code Guard} is passed into any method of a {@code Monitor} other than the one it is
219 public abstract static class Guard {
783 Guard guard = guards.get(i); local
796 Guard guard = guards.get(i); local
    [all...]
  /external/chromium_org/v8/src/libplatform/
task-queue.cc 16 base::LockGuard<base::Mutex> guard(&lock_);
23 base::LockGuard<base::Mutex> guard(&lock_);
33 base::LockGuard<base::Mutex> guard(&lock_);
50 base::LockGuard<base::Mutex> guard(&lock_);
default-platform.cc 40 base::LockGuard<base::Mutex> guard(&lock_);
60 base::LockGuard<base::Mutex> guard(&lock_);
71 base::LockGuard<base::Mutex> guard(&lock_);
83 base::LockGuard<base::Mutex> guard(&lock_);
105 base::LockGuard<base::Mutex> guard(&lock_);
  /bionic/tests/
stack_protector_test.cpp 35 // For x86, bionic and glibc have per-thread stack guard values (all identical).
38 uint32_t guard; local
39 asm ("mov %%gs:0x14, %0": "=d" (guard));
40 return guard;
49 uint32_t guard = GetGuardFromTls(); local
51 printf("[thread %d] %%gs:0x14 = 0x%08x\n", tid, guard);
56 // Uninitialized guard. Our bug. Note this is potentially flaky; we _could_ get
58 ASSERT_NE(guard, 0U);
61 guards.insert(guard);
85 // bionic and glibc use the same guard for every thread
    [all...]
  /external/chromium_org/tools/
boilerplate.py 39 guard = filename.replace('/', '_').replace('.', '_').upper() + '_'
42 '#ifndef ' + guard,
43 '#define ' + guard,
45 '#endif // ' + guard,
  /external/clang/test/CodeGen/
2007-09-12-PragmaPack.c 24 uint32_t guard; member in struct:__anon23163
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/
Android.mk 17 test_makefile := external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/Android.mk
19 test_name := thread/thread.mutex/thread.lock/thread.lock.guard/adopt_lock
23 test_name := thread/thread.mutex/thread.lock/thread.lock.guard/types
27 test_name := thread/thread.mutex/thread.lock/thread.lock.guard/mutex
  /external/bison/lib/glthread/
lock.c 56 err = pthread_mutex_lock (&lock->guard);
64 pthread_mutex_unlock (&lock->guard);
68 err = pthread_mutex_unlock (&lock->guard);
82 err = pthread_mutex_lock (&lock->guard);
90 pthread_mutex_unlock (&lock->guard);
94 err = pthread_mutex_unlock (&lock->guard);
347 err = pthread_mutex_lock (&lock->guard);
355 pthread_mutex_unlock (&lock->guard);
359 err = pthread_mutex_unlock (&lock->guard);
640 lock->guard.done = 1
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
Headers.h 24 enum Guard { ImmutableGuard, RequestGuard, RequestNoCORSGuard, ResponseGuard, NoneGuard };
47 void setGuard(Guard guard) { m_guard = guard; }
48 Guard guard() const { return m_guard; } function in class:blink::FINAL
63 Guard m_guard;
  /external/libcxxabi/src/
cxa_guard.cpp 118 uint64_t guard; member in union:__cxxabiv1::__anon3186::__anon3187
130 uint64_t guard; member in union:__cxxabiv1::__anon3186::__anon3188
134 x = f.guard;
143 uint32_t guard; member in union:__cxxabiv1::__anon3186::__anon3189
155 uint32_t guard; member in union:__cxxabiv1::__anon3186::__anon3190
159 x = f.guard;
  /external/libvorbis/vq/
make_floor_books.pl 60 my($datafile,$range,$guard)=split(' ',$1);
77 my $command="huffbuild $datafile.tmp $range $guard";
huffbuild.c 65 int i,j,k,begin,n,subn,guard=1; local
71 if(argc==4)guard=0;
133 for(j=loval;j<vals;j++)hist[j]=guard;
latticetune.c 45 int entries=-1,dim=-1,guard=1; local
58 if(argv[3]!=NULL)guard=0;
86 for(j=0;j<entries;j++)hits[j]=guard;
  /bionic/libc/bionic/
malloc_debug_leak.cpp 73 #define GUARD 0x48151642
82 uint32_t guard; member in struct:AllocationEntry
319 header->guard = GUARD;
340 // check the guard to make sure it is valid
343 if (header->guard != GUARD) {
345 if (header->guard == MEMALIGN_GUARD) {
352 if (header->guard == GUARD || is_valid_entry(header->entry))
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
HalAdaptation.cpp 251 SyncEventGuard guard (gOpenCompletedEvent);
269 SyncEventGuard guard (gOpenCompletedEvent);
277 SyncEventGuard guard (gPostInitCompletedEvent);
285 SyncEventGuard guard (gCloseCompletedEvent);
294 SyncEventGuard guard (gOpenCompletedEvent);
298 SyncEventGuard guard (gPostInitCompletedEvent);
302 SyncEventGuard guard (gCloseCompletedEvent);
325 SyncEventGuard guard (gCloseCompletedEvent);
339 SyncEventGuard guard (gPostInitCompletedEvent);
  /bionic/libc/kernel/uapi/linux/
bsg.h 30 __s32 guard; member in struct:sg_io_v4
  /development/ndk/platforms/android-L/include/linux/
bsg.h 30 __s32 guard; member in struct:sg_io_v4
  /external/kernel-headers/original/uapi/linux/
bsg.h 21 __s32 guard; /* [i] 'Q' to differentiate from v3 */ member in struct:sg_io_v4
  /external/lldb/
Android.mk 2 # This guard will be removed once lldb is working
  /external/chromium_org/build/util/
lastchange.py 185 Returns the header #define guard for the given file path.
187 relevant part of the guard. If there is no "src/", then the entire path
192 guard = path[src_index + 4:]
194 guard = path
195 guard = guard.upper()
196 return guard.replace('/', '_').replace('.', '_').replace('\\', '_') + '_'
  /external/chromium_org/tools/git/
move_source_file.py 72 updates the moved file's include guard to match the new path and
120 """Returns an include guard name given a path from root."""
121 guard = path_from_root.replace('/', '_')
122 guard = guard.replace('\\', '_')
123 guard = guard.replace('.', '_')
124 guard += '_'
125 return guard.upper()
129 """Updates the include guard in a file now residing at |new_path|
    [all...]
  /external/chromium_org/content/browser/media/capture/
content_video_capture_device_core.cc 73 base::AutoLock guard(lock_);
148 base::AutoLock guard(lock_);
153 base::AutoLock guard(lock_);
177 base::AutoLock guard(lock_);
182 base::AutoLock guard(lock_);
193 base::AutoLock guard(lock_);
web_contents_video_capture_device_unittest.cc 87 base::AutoLock guard(lock_);
92 base::AutoLock guard(lock_);
97 base::AutoLock guard(lock_);
102 base::AutoLock guard(lock_);
108 base::AutoLock guard(lock_);
116 base::AutoLock guard(lock_);
121 base::AutoLock guard(lock_);
126 base::AutoLock guard(lock_);
131 base::AutoLock guard(lock_);
137 base::AutoLock guard(lock_)
    [all...]
  /external/deqp/modules/glshared/
glsStateQueryUtil.hpp 140 testCtx.getLog() << TestLog::Message << "// ERROR: Pre-guard value was modified " << TestLog::EndMessage;
149 testCtx.getLog() << TestLog::Message << "// ERROR: Post-guard value was modified " << TestLog::EndMessage;
170 std::ostream& operator<< (std::ostream& str, const StateQueryMemoryWriteGuard<T>& guard)
172 return str << guard.get();
  /external/chromium_org/chrome/browser/ui/android/
ssl_client_certificate_request.cc 58 base::ScopedClosureRunner guard(post_task_closure);
121 ignore_result(guard.Release());
159 base::ScopedClosureRunner guard(null_closure);
193 ignore_result(guard.Release());

Completed in 747 milliseconds

1 2 3