HomeSort by relevance Sort by last modified time
    Searched defs:thr (Results 76 - 100 of 109) sorted by null

1 2 34 5

  /external/valgrind/helgrind/
hg_errors.c 312 Thread* thr; member in struct:__anon25895::__anon25896::__anon25897
326 Thread* thr; /* doing the unlocking */ member in struct:__anon25895::__anon25896::__anon25898
330 Thread* thr; /* doing the unlocking */ member in struct:__anon25895::__anon25896::__anon25899
335 Thread* thr; /* doing the unlocking */ member in struct:__anon25895::__anon25896::__anon25900
339 Thread* thr; member in struct:__anon25895::__anon25896::__anon25901
345 Thread* thr; member in struct:__anon25895::__anon25896::__anon25902
361 Thread* thr; member in struct:__anon25895::__anon25896::__anon25903
406 tl_assert(xe->XE.Race.thr);
410 xe->XE.Race.thr->locksetW,
430 Thr* thrp = NULL
898 Thread* thr = get_admin_threads(); local
    [all...]
hg_main.c 170 ThreadId map_threads_maybe_reverse_lookup_SLOW ( Thread* thr ); /*fwds*/
174 static Thread* mk_Thread ( Thr* hbthr ) {
248 /* Update 'lk' to reflect that 'thr' now has a write-acquisition of
251 static void lockN_acquire_writer ( Lock* lk, Thread* thr )
254 tl_assert(HG_(is_sane_Thread)(thr));
264 tid = map_threads_maybe_reverse_lookup_SLOW(thr);
279 VG_(addToBag)( lk->heldBy, (UWord)thr );
288 /* assert: .. and that thread is 'thr'. */
289 tl_assert(VG_(elemBag)(lk->heldBy, (UWord)thr)
291 VG_(addToBag)(lk->heldBy, (UWord)thr);
368 Thread* thr; local
509 Thread* thr; local
601 Thread* thr; local
662 Thread* thr; local
671 Thread* thr; local
705 Thread* thr; local
738 Thread *thr = map_threads_maybe_lookup(tid); local
889 Thread* thr; local
949 Thread* thr; local
1448 Thread* thr; local
1466 Thread *thr = get_current_Thread(); local
1478 Thread *thr = get_current_Thread(); local
1490 Thread *thr = get_current_Thread(); local
1503 Thread *thr = get_current_Thread(); local
1573 Thread *thr = get_current_Thread(); local
1713 Thread* thr; local
1816 Thread *thr = map_threads_lookup(tid); local
1850 Thread *thr = map_threads_lookup(tid); local
1870 Thread* thr; local
1914 Thread* thr = get_current_Thread_in_C_C(); local
1922 Thread* thr = get_current_Thread_in_C_C(); local
1930 Thread* thr = get_current_Thread_in_C_C(); local
1938 Thread* thr = get_current_Thread_in_C_C(); local
1946 Thread* thr = get_current_Thread_in_C_C(); local
1954 Thread* thr = get_current_Thread_in_C_C(); local
1962 Thread* thr = get_current_Thread_in_C_C(); local
1970 Thread* thr = get_current_Thread_in_C_C(); local
1978 Thread* thr = get_current_Thread_in_C_C(); local
1986 Thread* thr = get_current_Thread_in_C_C(); local
2019 Thread* thr; local
2078 Thread* thr; local
2119 Thread* thr; local
2137 Thread* thr; local
2151 Thread* thr; local
2172 Thread* thr; local
2303 Thread* thr; local
2348 Thread* thr; local
2424 Thread* thr; local
2495 Thread* thr; local
2588 Thread* thr; local
2639 Thread* thr; local
2664 Thread* thr; local
2684 Thread* thr; local
2698 Thread* thr; local
2829 Thread* thr; local
2876 Thread* thr; local
2904 Thread* thr; local
3004 Thread* thr; local
3058 Thread* thr; local
3179 Thread* thr; local
3222 Thread* thr; local
3342 Thread* thr; local
3367 Thread* thr; local
3415 Thread *thr = map_threads_maybe_lookup(tid); local
3435 Thread *thr = map_threads_maybe_lookup(tid); local
4111 Thread* thr; \/* allocating thread *\/ member in struct:__anon25910
5415 Thread* thr = map_threads_maybe_lookup( tid ); local
5450 Thread *thr = map_threads_maybe_lookup(tid); local
5459 Thread *thr = map_threads_maybe_lookup(tid); local
5710 Thread* thr; local
5727 Thread* thr; local
    [all...]
libhb_core.c 143 a pair, (Thr*, ULong), but that takes 16 bytes on a 64-bit target.
144 We pack it into 64 bits by representing the Thr* using a ThrID, a
171 NB3: this probably also relies on the fact that Thr's are never
173 Thr's to thrid values (set up in Thr__new) persists forever.
261 // data decls: Thr, ULong_n_EC //
305 /* A small integer giving a unique identity to this Thr. See
315 1-1 mapping between Thread and Thr structures -- each Thr points
316 at its corresponding Thread, and vice versa. Really, Thr and
361 static void (*main_get_stacktrace)( Thr*, Addr*, UWord ) = NULL
4016 Thr* thr = *(Thr**)VG_(indexXA)( thrid_to_thr_map, thrid - 1024 ); local
4023 Thr* thr = HG_(zalloc)( "libhb.Thr__new.1", sizeof(Thr) ); local
6222 Thr* thr; local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h 431 ThreadState *thr; member in class:__tsan::ThreadContext
558 void ObtainCurrentStack(ThreadState *thr, uptr toppc, StackTraceTy *stack) {
559 uptr size = thr->shadow_stack_pos - thr->shadow_stack;
565 stack->Init(&thr->shadow_stack[start], size, toppc);
574 void ALWAYS_INLINE StatInc(ThreadState *thr, StatType typ, u64 n = 1) {
576 thr->stat[typ] += n;
579 void ALWAYS_INLINE StatSet(ThreadState *thr, StatType typ, u64 n) {
581 thr->stat[typ] = n;
593 void ForkBefore(ThreadState *thr, uptr pc)
    [all...]
tsan_interceptors.cc 255 static ThreadSignalContext *SigCtx(ThreadState *thr) {
256 ThreadSignalContext *ctx = (ThreadSignalContext*)thr->signal_ctx;
257 if (ctx == 0 && !thr->is_dead) {
259 MemoryResetRange(thr, (uptr)&SigCtx, (uptr)ctx, sizeof(*ctx));
260 thr->signal_ctx = ctx;
269 ScopedInterceptor::ScopedInterceptor(ThreadState *thr, const char *fname,
271 : thr_(thr)
275 Initialize(thr);
276 FuncEntry(thr, pc);
319 #define READ_STRING_OF_LEN(thr, pc, s, len, n)
352 ThreadState *thr; member in struct:BlockingCall
385 ThreadState *thr = cur_thread(); local
430 ThreadState *thr = cur_thread(); local
889 ThreadState *thr = cur_thread(); local
927 ThreadState *thr = cur_thread(); local
1071 ThreadState *thr; member in struct:CondMutexUnlockCtx
2007 ThreadState *thr = cur_thread(); local
2218 ThreadState *thr; member in struct:dl_iterate_phdr_data
2267 ThreadState *thr; member in struct:TsanInterceptorContext
2419 ThreadState *thr; member in struct:ScopedSyscall
2528 ThreadState *thr = cur_thread(); local
    [all...]
  /hardware/qcom/audio/legacy/libalsa-intf/
msm8960_use_cases.h 173 pthread_t thr; member in struct:snd_use_case_mgr
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 3153 pthread_t thr; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.c 1603 unsigned int thr = cpi->source_var_thresh; local
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
mach-o.c 4697 bfd_mach_o_thread_command *thr = NULL; local
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/sn/
ioc3.h 26 volatile u8 thr; member in union:ioc3_uartregs::__anon2602
49 #define iu_thr u1.thr
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/asm/sn/
ioc3.h 26 volatile u8 thr; member in union:ioc3_uartregs::__anon44171
49 #define iu_thr u1.thr
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/asm/sn/
ioc3.h 26 volatile u8 thr; member in union:ioc3_uartregs::__anon45494
49 #define iu_thr u1.thr
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/asm/sn/
ioc3.h 26 volatile u8 thr; member in union:ioc3_uartregs::__anon46828
49 #define iu_thr u1.thr
  /prebuilts/ndk/current/platforms/android-15/arch-mips/usr/include/asm/sn/
ioc3.h 26 volatile u8 thr; member in union:ioc3_uartregs::__anon48164
49 #define iu_thr u1.thr
  /prebuilts/ndk/current/platforms/android-16/arch-mips/usr/include/asm/sn/
ioc3.h 26 volatile u8 thr; member in union:ioc3_uartregs::__anon49500
49 #define iu_thr u1.thr
  /prebuilts/ndk/current/platforms/android-17/arch-mips/usr/include/asm/sn/
ioc3.h 26 volatile u8 thr; member in union:ioc3_uartregs::__anon50836
49 #define iu_thr u1.thr
  /prebuilts/ndk/current/platforms/android-18/arch-mips/usr/include/asm/sn/
ioc3.h 26 volatile u8 thr; member in union:ioc3_uartregs::__anon52172
49 #define iu_thr u1.thr
  /prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/asm/sn/
ioc3.h 26 volatile u8 thr; member in union:ioc3_uartregs::__anon53520
49 #define iu_thr u1.thr
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/asm/sn/
ioc3.h 26 volatile u8 thr; member in union:ioc3_uartregs::__anon70250
49 #define iu_thr u1.thr
  /external/guice/extensions/struts2/lib/
jsp-2.1.jar 
  /prebuilts/devtools/tools/lib/
junit-4.12.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.12/
junit-4.12.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /prebuilts/misc/common/android-support-test/rules/
rules-0.5-release.jar 
  /prebuilts/misc/common/android-support-test/runner/
runner-0.5-release.jar 

Completed in 2805 milliseconds

1 2 34 5