Searched defs:tid (Results 1 - 25 of 251) sorted by relevance

1234567891011

/external/valgrind/main/coregrind/m_coredump/
H A Dcoredump-macho.c39 void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si, UInt max_size) argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkThreadUtils_pthread_mach.cpp21 mach_port_t tid = pthread_mach_thread_np(pthreadData->fPThread); local
26 return 0 == thread_policy_set(tid,
/external/skia/src/utils/
H A DSkThreadUtils_pthread_mach.cpp21 mach_port_t tid = pthread_mach_thread_np(pthreadData->fPThread); local
26 return 0 == thread_policy_set(tid,
/external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/
H A Dthread_creator.c15 static int thread_create(uintptr_t *tid, argument
24 return pthread_create((pthread_t *) tid, NULL,
29 static int thread_join(uintptr_t tid) { argument
30 return pthread_join((pthread_t) tid, NULL);
/external/compiler-rt/lib/lsan/
H A Dlsan.cc50 u32 tid = ThreadCreate(0, 0, true); local
51 CHECK_EQ(tid, 0);
52 ThreadStart(tid, GetTid());
53 SetCurrentThread(tid);
/external/valgrind/main/drd/tests/
H A Dpth_barrier_race.c30 pthread_t tid; local
35 pthread_create(&tid, NULL, thread, NULL);
46 pthread_join(tid, NULL);
H A Dannotate_hb_race.c31 pthread_t tid[2]; local
35 pthread_create(&tid[0], 0, thread_func, &result[0]);
36 pthread_create(&tid[1], 0, thread_func, &result[1]);
42 pthread_join(tid[0], NULL);
43 pthread_join(tid[1], NULL);
H A Dannotate_static.cpp38 pthread_t tid; local
40 pthread_create(&tid, 0, thread_func, NULL);
43 pthread_join(tid, NULL);
H A Dpth_cancel_locked.c27 pthread_t tid; local
36 pthread_create(&tid, 0, &thread, 0);
43 pthread_cancel(tid);
46 pthread_join(tid, 0);
/external/compiler-rt/lib/lsan/lit_tests/TestCases/
H A Dfork_threaded.cc20 pthread_t tid; local
22 res = pthread_create(&tid, 0, exit_thread_func, 0);
24 pthread_join(tid, 0);
/external/oprofile/daemon/liblegacy/
H A Dopd_proc.h34 pid_t tid; member in struct:opd_proc
86 * @param tid tid for this process
91 void opd_handle_exec(pid_t tid, pid_t tgid);
107 * @param tid tid for this process
110 * A process with pid tid is searched on the process list,
114 struct opd_proc * opd_get_proc(pid_t tid, pid_t tgid);
118 * @param tid tid fo
[all...]
H A Dopd_image.h40 pid_t tid; member in struct:opd_image
80 * @param tid thread id
88 char const * app_name, pid_t tid, pid_t tgid);
95 * @param tid thread id
104 int kernel, pid_t tid, pid_t tgid);
/external/valgrind/main/helgrind/tests/
H A Dfree_is_write.c21 pthread_t tid; local
32 pthread_create(&tid, NULL, thread_func, NULL);
39 pthread_join(tid, NULL);
/external/valgrind/main/none/tests/
H A Dpth_cancel1.c40 pthread_t tid; local
43 if (pthread_create(&tid, NULL, thread_main, NULL) != 0)
51 if (pthread_cancel(tid) != 0)
57 if (pthread_join(tid, &result) != 0)
/external/chromium-trace/trace-viewer/src/cc/
H A Dpicture_view_test_data.js10 'tid': 1799,
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dcreate.c45 pthread_create (pthread_t * tid, argument
55 * via 'tid', which should not be NULL.
58 * tid
76 * via 'tid', which should not be the NULL pointer.
98 * Before doing anything, check that tid can be stored through
101 * This is assured by conditionally assigning *tid again at the end.
103 tid->x = 0;
128 parms->tid = thread;
299 *tid = thread;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_clock.h44 u64 get(unsigned tid) const {
45 DCHECK_LT(tid, kMaxTidInClock);
46 return clk_[tid];
49 void set(unsigned tid, u64 v) { argument
50 DCHECK_LT(tid, kMaxTid);
51 DCHECK_GE(v, clk_[tid]);
52 clk_[tid] = v;
53 if (nclk_ <= tid)
54 nclk_ = tid + 1;
57 void tick(unsigned tid) { argument
[all...]
/external/linux-tools-perf/util/
H A Dthread_map.c42 struct thread_map *thread_map__new_by_tid(pid_t tid) argument
47 threads->map[0] = tid;
54 struct thread_map *thread_map__new(pid_t pid, pid_t tid) argument
58 return thread_map__new_by_tid(tid);
H A Dvalues.h9 u32 *pid, *tid; member in struct:perf_read_values
21 u32 pid, u32 tid,
/external/nist-sip/java/gov/nist/javax/sip/
H A DLogRecordFactory.java25 * @param tid -- the transaction id
35 String firstLine, String tid, String callId, long timestampVal);
33 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/oprofile/libpp/
H A Dfilename_spec.h79 generic_spec<pid_t> tid; member in class:filename_spec
H A Dparse_filename.h32 std::string tid; member in struct:parsed_filename
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtorturethread.c34 int tid = (int)(uintptr_t)data; local
36 fprintf(stderr, "Creating Thread %d\n", tid);
43 printf("Thread '%d' waiting for signal\n", tid);
44 while(time_for_threads_to_die[tid] != 1) {
48 printf("Thread '%d' sending signals to subthreads\n", tid);
54 printf("Thread '%d' exiting!\n", tid);
/external/valgrind/main/coregrind/
H A Dm_threadstate.c55 ThreadId tid; local
57 for (tid = 1; tid < VG_N_THREADS; tid++) {
59 ANNOTATE_BENIGN_RACE_SIZED(&VG_(threads)[tid].status,
60 sizeof(VG_(threads)[tid].status), ""));
62 ANNOTATE_BENIGN_RACE_SIZED(&VG_(threads)[tid].os_state.exitcode,
63 sizeof(VG_(threads)[tid].os_state.exitcode),
81 ThreadState *VG_(get_ThreadState)(ThreadId tid) argument
83 vg_assert(tid >
103 is_running_thread(ThreadId tid) argument
114 is_exiting(ThreadId tid) argument
124 ThreadId tid; local
138 ThreadId tid; local
151 ThreadId tid; local
[all...]
/external/valgrind/main/drd/
H A Ddrd_segment.h49 DrdThreadId tid; member in struct:segment

Completed in 671 milliseconds

1234567891011