HomeSort by relevance Sort by last modified time
    Searched refs:tid (Results 151 - 175 of 764) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/compiler-rt/lib/asan/
asan_thread.cc 46 static ThreadContextBase *GetAsanThreadContext(u32 tid) {
48 return new(mem) AsanThreadContext(tid);
67 AsanThreadContext *GetThreadContextByTidLocked(u32 tid) {
69 asanThreadRegistry().GetThreadLocked(tid));
89 Report("T%d TSDDtor\n", context->tid);
96 Report("T%d exited\n", tid());
99 asanThreadRegistry().FinishThread(tid());
118 tid(), (void*)stack_bottom_, (void*)stack_top_,
127 asanThreadRegistry().StartThread(tid(), os_id, 0);
134 CHECK_EQ(tid(), 0)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc 24 static ThreadContextBase *GetThreadContext(u32 tid) {
27 return new(mem) TCTX(tid);
42 static bool is_detached(u32 tid) {
43 return (tid % 2 == 0);
46 static uptr get_uid(u32 tid) {
47 return tid * 2;
62 arr[tctx->tid] = true;
112 u32 tid = new_tids[i]; local
113 registry->StartThread(tid, 0, 0);
114 registry->DetachThread(tid);
    [all...]
  /ndk/sources/android/libthread_db/gdb-6.6/
libthread_db.c 56 _get_task_permitted_caps(int pid, int tid, uint64_t *cap)
67 snprintf(path, sizeof path, "/proc/%d/task/%d/status", pid, tid);
164 int tid; local
169 tid = atoi(entry->d_name);
170 if (tid == 0) /* should not happen - be safe */
173 if (_get_task_permitted_caps(target_pid, tid, &tid_caps) < 0) {
175 D("Could not get permitted caps for thread %d\n", tid);
220 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)60 /* r15/pc */, NULL);
225 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)0 /* r0 */, NULL);
226 gEventMsgHandle.tid = gEventMsgHandle.pid
    [all...]
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-x86-linux.c 351 void synth_ucontext(ThreadId tid, const vki_siginfo_t *si,
355 ThreadState *tst = VG_(get_ThreadState)(tid);
402 ThreadId tid = tst->tid; local
416 addr, tid);
424 VG_(synth_fault_mapping)(tid, addr);
434 size + VG_STACK_REDZONE_SZB, tid );
485 VG_TRACK( pre_mem_write, Vg_CoreSignal, tst->tid, "signal handler frame",
503 synth_ucontext(tst->tid, siginfo, trapno, err, mask, &uc, &frame->fpstate);
509 VG_TRACK( post_mem_write, Vg_CoreSignal, tst->tid,
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
stack_utils.py 40 logger("%s (tid %d) %s" % (name, thread_id, msg))
48 for tid, stack in sys._current_frames().items():
49 if tid == thread_id:
  /external/openssh/regress/
banner.sh 4 tid="banner"
11 verbose "test $tid: missing banner file"
32 verbose "test $tid: size $s"
39 verbose "test $tid: suppress banner (-q)"
brokenkeys.sh 4 tid="broken keys"
connect-privsep.sh 4 tid="proxy connect with privsep"
conch-ciphers.sh 4 tid="conch ciphers"
18 verbose "$tid: cipher $c"
putty-ciphers.sh 4 tid="putty ciphers"
15 verbose "$tid: cipher $c"
sftp.sh 4 tid="basic sftp put/get"
21 verbose "test $tid: buffer_size $B num_requests $R"
stderr-after-eof.sh 4 tid="stderr data after eof"
19 fatal "No checksum program available, aborting $tid test"
stderr-data.sh 4 tid="stderr data transfer"
12 verbose "test $tid: proto $p ($n)"
transfer.sh 4 tid="transfer data"
10 verbose "$tid: proto $p"
  /external/valgrind/main/helgrind/
hg_main.c 68 // FIXME: new_mem_w_tid ignores the supplied tid. (wtf?!)
246 ThreadId tid; local
248 tid = map_threads_maybe_reverse_lookup_SLOW(thr);
250 = VG_(record_ExeContext)(tid, 0/*first_ip_delta*/);
302 ThreadId tid; local
304 tid = map_threads_maybe_reverse_lookup_SLOW(thr);
306 = VG_(record_ExeContext)(tid, 0/*first_ip_delta*/);
636 ThreadId tid; local
641 tid = thr->coretid;
642 tl_assert(HG_(is_sane_ThreadId)(tid));
650 ThreadId tid = map_threads_maybe_reverse_lookup_SLOW( thr ); local
5070 ThreadId tid; local
5087 ThreadId tid; local
    [all...]
  /external/valgrind/main/include/
pub_tool_execontext.h 61 ExeContext* VG_(record_ExeContext) ( ThreadId tid, Word first_ip_delta );
70 ExeContext* VG_(record_depth_1_ExeContext)(ThreadId tid, Word first_ip_delta);
  /frameworks/av/services/audioflinger/
SchedulingPolicyService.cpp 31 int requestPriority(pid_t pid, pid_t tid, int32_t prio, bool asynchronous)
50 ret = sps->requestPriority(pid, tid, prio, asynchronous);
  /system/core/debuggerd/
utility.h 63 int wait_for_signal(pid_t tid, int* total_sleep_time_usec);
64 void wait_for_stop(pid_t tid, int* total_sleep_time_usec);
  /system/core/include/log/
logger.h 24 int32_t tid; /* generating process's tid */ member in struct:logger_entry
39 int32_t tid; /* generating process's tid */ member in struct:logger_entry_v2
  /bionic/tests/
stack_protector_test.cpp 52 pid_t tid = gettid(); local
55 printf("[thread %d] %%gs:0x14 = 0x%08x\n", tid, guard);
57 // Duplicate tid. gettid(2) bug? Seeing this would be very upsetting.
58 ASSERT_TRUE(tids.find(tid) == tids.end());
64 tids.insert(tid);
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform.h 140 uptr ALWAYS_INLINE GetThreadTrace(int tid) {
141 uptr p = kTraceMemBegin + (uptr)(tid * 2) * kTraceSize * sizeof(Event);
146 uptr ALWAYS_INLINE GetThreadTraceHeader(int tid) {
147 uptr p = kTraceMemBegin + (uptr)(tid * 2 + 1) * kTraceSize * sizeof(Event);
  /external/oprofile/libop/
op_mangle.h 47 pid_t tid; member in struct:mangle_values
  /system/core/libcorkscrew/
backtrace-arch.h 38 ssize_t unwind_backtrace_ptrace_arch(pid_t tid, const ptrace_context_t* context,
  /external/valgrind/main/coregrind/
pub_core_gdbserver.h 44 void VG_(gdbserver_prerun_action) (ThreadId tid);
49 extern Bool VG_(gdbserver_activity) (ThreadId tid);
84 extern Bool VG_(gdbserver_report_signal) (Int signo, ThreadId tid);
  /external/valgrind/main/drd/tests/
fp_race_xml.stderr.exp 35 <trace><text>drd_thread_finished tid = 2</text></trace>
38 <tid>...</tid>
61 <tid>...</tid>
83 <trace><text>drd_thread_finished tid = 1</text></trace>

Completed in 2491 milliseconds

1 2 3 4 5 67 8 91011>>