HomeSort by relevance Sort by last modified time
    Searched refs:is_w (Results 1 - 6 of 6) sorted by null

  /external/valgrind/main/drd/
drd.h 229 * Tell DRD that a reader-writer lock has been acquired. is_w == 1 means that
230 * a write lock has been obtained, is_w == 0 means that a read lock has been
233 #define ANNOTATE_RWLOCK_ACQUIRED(rwlock, is_w) \
235 rwlock, is_w, 0, 0, 0)
254 * Tell DRD that a reader-writer lock is about to be released. is_w == 1 means
255 * that a write lock is about to be released, is_w == 0 means that a read lock
258 #define ANNOTATE_RWLOCK_RELEASED(rwlock, is_w) \
260 rwlock, is_w, 0, 0, 0);
  /external/chromium/base/third_party/dynamic_annotations/
dynamic_annotations.c 58 const char *file, int line, const volatile void *lock, long is_w){}
60 const char *file, int line, const volatile void *lock, long is_w){}
dynamic_annotations.h 322 is_w=1 for writer lock, is_w=0 for reader lock. */
323 #define ANNOTATE_RWLOCK_ACQUIRED(lock, is_w) \
325 is_w)
328 #define ANNOTATE_RWLOCK_RELEASED(lock, is_w) \
330 is_w)
385 #define ANNOTATE_RWLOCK_ACQUIRED(lock, is_w) /* empty */
386 #define ANNOTATE_RWLOCK_RELEASED(lock, is_w) /* empty */
441 const volatile void *lock, long is_w) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
444 const volatile void *lock, long is_w) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK
    [all...]
  /external/valgrind/main/helgrind/
helgrind.h 682 is_w=1 for writer lock, is_w=0 for reader lock. */
683 #define ANNOTATE_RWLOCK_ACQUIRED(lock, is_w) \
685 void*,(lock), unsigned long,(is_w))
688 #define ANNOTATE_RWLOCK_RELEASED(lock, is_w) \
690 void*,(lock)) /* is_w is ignored */
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_ann.cc 206 uptr is_w) {
208 if (is_w)
215 uptr is_w) {
217 if (is_w)
  /external/chromium/net/tools/testserver/
testserver.py 178 is_w = xmpp_connection.writable()
181 if is_w:
183 if is_r or is_w:
    [all...]

Completed in 716 milliseconds