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

  /external/valgrind/tsan/
ts_race_verifier.h 44 bool is_w);
46 bool is_w);
ts_race_verifier.cc 221 * @param is_w Whether this is a write (true) or a read (false).
227 bool is_w) {
235 is_w ? "write" : "read", addr);
245 (is_w ? writes : reads).push_back(callSite);
266 bool is_w) {
271 is_w ? "write" : "read", addr);
279 is_w ? typedCallSites->writes : typedCallSites->reads;
ts_dynamorio.cc 184 static void On_Mop(uintptr_t pc, size_t size, void *a, bool is_w) {
188 dr_fprintf(STDERR, "T%d pc=%p a=%p size=%ld %s\n", t.tid, pc, a, size, is_w ? "WRITE" : "READ");
232 instr_t *instr, opnd_t opnd, bool is_w) {
234 // dr_printf(" -- (%s opnd)\n", is_w ? "write" : "read");
235 void *callback = (void*)(is_w ? On_Write : On_Read);
thread_sanitizer.cc     [all...]
ts_valgrind_intercepts.c     [all...]
ts_pin.cc     [all...]
  /external/valgrind/main/drd/
drd.h 190 * Tell DRD that a reader-writer lock has been acquired. is_w == 1 means that
191 * a write lock has been obtained, is_w == 0 means that a read lock has been
194 #define ANNOTATE_RWLOCK_ACQUIRED(rwlock, is_w) \
196 rwlock, is_w, 0, 0, 0)
211 * Tell DRD that a reader-writer lock is about to be released. is_w == 1 means
212 * that a write lock is about to be released, is_w == 0 means that a read lock
215 #define ANNOTATE_RWLOCK_RELEASED(rwlock, is_w) \
217 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/dynamic_annotations/
dynamic_annotations.h 321 is_w=1 for writer lock, is_w=0 for reader lock. */
322 #define ANNOTATE_RWLOCK_ACQUIRED(lock, is_w) \
324 is_w)
327 #define ANNOTATE_RWLOCK_RELEASED(lock, is_w) \
329 is_w)
384 #define ANNOTATE_RWLOCK_ACQUIRED(lock, is_w) /* empty */
385 #define ANNOTATE_RWLOCK_RELEASED(lock, is_w) /* empty */
440 const volatile void *lock, long is_w) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
443 const volatile void *lock, long is_w) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK
    [all...]
dynamic_annotations.c 65 const char *file, int line, const volatile void *lock, long is_w) {DYNAMIC_ANNOTATIONS_IMPL}
67 const char *file, int line, const volatile void *lock, long is_w) {DYNAMIC_ANNOTATIONS_IMPL}
  /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/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 530 milliseconds