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

12345678

/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/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);
H A Dannotate_ignore_rw.c29 pthread_t tid; local
43 pthread_create(&tid, 0, thread_func, 0);
63 pthread_join(tid, 0);
H A Dannotate_ignore_write.c29 pthread_t tid; local
43 pthread_create(&tid, 0, thread_func, 0);
64 pthread_join(tid, 0);
H A Datomic_var.c56 pthread_t tid[n_threads]; local
59 pthread_create(&tid[0], 0, thread_func_1, 0);
60 pthread_create(&tid[1], 0, thread_func_2, 0);
62 pthread_join(tid[i], 0);
H A Domp_printf.c25 int tid; local
52 #pragma omp parallel for private(tid)
55 tid = omp_get_thread_num();
60 i, tid, omp_get_num_threads());
H A Dpth_spinlock.c38 pthread_t tid[n_threads]; local
46 pthread_create(&tid[i], 0, thread_func, 0);
48 pthread_join(tid[i], 0);
H A Dread_after_free.c23 pthread_t tid; local
33 pthread_create(&tid, NULL, thread_func, NULL);
42 pthread_join(tid, NULL);
H A Dthread_name.c46 pthread_t tid[NUM_THREADS]; local
52 pthread_create(&tid[i], 0, thread_func, (void*)(ptrdiff_t)i);
55 pthread_join(tid[i], 0);
/external/bluetooth/hcidump/parser/
H A Dhcrp.c85 uint16_t pid, tid, plen, status; local
89 tid = get_u16(frm);
94 printf("HCRP %s %s: tid 0x%x plen %d",
95 pid2str(pid), frm->in ? "rsp" : "cmd", tid, plen);
/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/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/valgrind/main/coregrind/
H A Dm_threadstate.c62 ThreadState *VG_(get_ThreadState)(ThreadId tid) argument
64 vg_assert(tid >= 0 && tid < VG_N_THREADS);
65 vg_assert(VG_(threads)[tid].tid == tid);
66 return &VG_(threads)[tid];
69 Bool VG_(is_valid_tid) ( ThreadId tid )
71 /* tid is unsigned, hence no < 0 test. */
72 if (tid
84 is_running_thread(ThreadId tid) argument
95 is_exiting(ThreadId tid) argument
105 ThreadId tid; local
119 ThreadId tid; local
132 ThreadId tid; local
[all...]
/external/valgrind/main/drd/
H A Ddrd_segment.h48 DrdThreadId tid; member in struct:segment
/external/valgrind/main/include/
H A Dpub_tool_tooliface.h69 ThreadId tid; /* tid requesting translation */ member in struct:__anon12609
89 // * closure->tid is the ThreadId of the thread requesting the
410 Bool (*handle_client_request)(ThreadId tid, UWord* arg_block, UWord* ret)
425 void (* pre_syscall)(ThreadId tid, UInt syscallno,
427 void (*post_syscall)(ThreadId tid, UInt syscallno,
448 void* (*pmalloc) ( ThreadId tid, SizeT n ),
449 void* (*p__builtin_new) ( ThreadId tid, SizeT n ),
450 void* (*p__builtin_vec_new) ( ThreadId tid, SizeT n ),
451 void* (*pmemalign) ( ThreadId tid, Size
[all...]

Completed in 647 milliseconds

12345678