HomeSort by relevance Sort by last modified time
    Searched refs:tid (Results 26 - 50 of 364) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/oprofile/daemon/liblegacy/
opd_image.h 40 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/drd/
drd_hb.h 46 void DRD_(hb_happens_after)(const DrdThreadId tid, const Addr hb);
47 void DRD_(hb_happens_before)(const DrdThreadId tid, const Addr hb);
48 void DRD_(hb_happens_done)(const DrdThreadId tid, const Addr hb);
  /external/valgrind/main/drd/tests/
annotate_ignore_rw.c 28 pthread_t tid; local
42 pthread_create(&tid, 0, thread_func, 0);
59 pthread_join(tid, 0);
annotate_ignore_write.c 27 pthread_t tid; local
41 pthread_create(&tid, 0, thread_func, 0);
58 pthread_join(tid, 0);
annotate_static.cpp 38 pthread_t tid; local
40 pthread_create(&tid, 0, thread_func, NULL);
43 pthread_join(tid, NULL);
atomic_var.c 56 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);
omp_printf.c 25 int tid; local
52 #pragma omp parallel for private(tid)
55 tid = omp_get_thread_num();
60 i, tid, omp_get_num_threads());
rwlock_test.c 55 pthread_t* tid; local
86 tid = calloc(s_num_threads, sizeof(*tid));
90 err = pthread_create(&tid[i], &attr, thread_func, 0);
101 if (tid[i])
102 pthread_join(tid[i], 0);
104 free(tid);
qt4_mutex.cpp 46 std::vector<QThread*> tid(n_threads);
73 tid[i] = new IncThread;
74 tid[i]->start();
78 tid[i]->wait();
79 delete tid[i];
qt4_rwlock.cpp 55 std::vector<QThread*> tid(n_threads);
74 tid[i] = new IncThread;
75 tid[i]->start();
79 tid[i]->wait();
80 delete tid[i];
qt4_semaphore.cpp 44 std::vector<QThread*> tid(n_threads);
63 tid[i] = new IncThread;
64 tid[i]->start();
68 tid[i]->wait();
69 delete tid[i];
  /system/core/libcutils/
sched_policy.c 55 /* Add tid to the scheduling group defined by the policy */
56 static int add_tid_to_cgroup(int tid, SchedPolicy policy)
72 // specialized itoa -- works for tid > 0
77 while (tid > 0) {
78 *--ptr = '0' + (tid % 10);
79 tid = tid / 10;
129 static int getSchedulerGroup(int tid, char* buf, size_t bufLen)
136 snprintf(pathBuf, sizeof(pathBuf), "/proc/%d/cgroup", tid);
190 int get_sched_policy(int tid, SchedPolicy *policy
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultMessageLogFactory.java 17 String firstLine, String tid, String callId, long tsHeaderValue) {
19 isSender, firstLine, tid, callId, tsHeaderValue);
24 String firstLine, String tid, String callId, long timestampVal) {
26 isSender, firstLine, tid, callId, timestampVal);
MessageLog.java 59 private String tid; field in class:MessageLog
89 String tid,
108 this.tid = tid;
122 String tid,
135 this.tid = tid;
161 + tid
  /external/valgrind/main/coregrind/
pub_core_translate.h 40 Bool VG_(translate) ( ThreadId tid,
m_machine.c 46 Addr VG_(get_IP) ( ThreadId tid ) {
47 return INSTR_PTR( VG_(threads)[tid].arch );
49 Addr VG_(get_SP) ( ThreadId tid ) {
50 return STACK_PTR( VG_(threads)[tid].arch );
52 Addr VG_(get_FP) ( ThreadId tid ) {
53 return FRAME_PTR( VG_(threads)[tid].arch );
56 void VG_(set_IP) ( ThreadId tid, Addr ip ) {
57 INSTR_PTR( VG_(threads)[tid].arch ) = ip;
59 void VG_(set_SP) ( ThreadId tid, Addr sp ) {
60 STACK_PTR( VG_(threads)[tid].arch ) = sp
268 ThreadId tid; local
    [all...]
m_signals.c 1985 ThreadId tid = VG_(lwpid_to_vgtid)(VG_(gettid)()); local
2345 ThreadId tid = VG_(lwpid_to_vgtid)(VG_(gettid)()); local
2404 ThreadId tid = VG_(lwpid_to_vgtid)(VG_(gettid)()); local
    [all...]
  /external/valgrind/main/none/tests/
pth_cancel1.c 40 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/valgrind/tsan/
ts_pin.cc 69 static void DumpEvent(CONTEXT *ctx, EventType type, int32_t tid, uintptr_t pc,
132 typedef void (*callback_t)(THREADID tid, InstrumentedCallFrame &frame,
203 THREADID tid; member in struct:PinThread
240 static void ReportAccesRange(THREADID tid, uintptr_t pc, EventType type, uintptr_t x, size_t size) {
241 if (size && !g_pin_threads[tid].ignore_accesses) {
245 DumpEvent(0, type, tid, pc, a, cur_size);
250 #define REPORT_READ_RANGE(x, size) ReportAccesRange(tid, pc, READ, (uintptr_t)x, size)
251 #define REPORT_WRITE_RANGE(x, size) ReportAccesRange(tid, pc, WRITE, (uintptr_t)x, size)
253 #define EXTRA_REPLACE_PARAMS THREADID tid, uintptr_t pc,
254 #define EXTRA_REPLACE_ARGS tid, pc
    [all...]
  /frameworks/base/core/jni/
android_server_Watchdog.cpp 31 static void dumpOneStack(int tid, int outFd) {
34 snprintf(buf, sizeof(buf), "/proc/%d/stack", tid);
51 LOGE("Unable to open stack of tid %d : %d (%s)", tid, errno, strerror(errno));
83 int tid = atoi(ent->d_name); local
84 if (tid > 0 && tid <= 65535) {
86 dumpOneStack(tid, outFd);
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-amd64-darwin.c 90 ThreadId tid = tst->tid; local
98 addr - VG_STACK_REDZONE_SZB, size, tid );
103 /* Create a signal frame for thread 'tid'. Make a 3-arg frame
108 void VG_(sigframe_create) ( ThreadId tid,
127 tst = VG_(get_ThreadState)(tid);
158 VG_(set_SP)(tid, rsp);
159 VG_TRACK( post_reg_write, Vg_CoreSignal, tid, VG_O_STACK_PTR, sizeof(ULong));
162 VG_(set_IP)(tid, (ULong)handler);
163 VG_TRACK( post_reg_write, Vg_CoreSignal, tid, VG_O_INSTR_PTR, sizeof(ULong))
    [all...]
sigframe-ppc32-aix5.c 83 ThreadId tid = tst->tid; local
91 addr, size - VG_STACK_REDZONE_SZB, tid );
97 VG_TRACK( post_reg_write, Vg_CoreSignal, tst->tid, \
104 VG_TRACK( post_reg_write, Vg_CoreSignal, tst->tid, \
110 /* Create a signal frame for thread 'tid'. */
111 void VG_(sigframe_create) ( ThreadId tid,
131 tst = VG_(get_ThreadState)(tid);
155 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal handler frame",
158 VG_TRACK( post_mem_write, Vg_CoreSignal, tid,
    [all...]
sigframe-ppc64-aix5.c 83 ThreadId tid = tst->tid; local
91 addr, size - VG_STACK_REDZONE_SZB, tid );
97 VG_TRACK( post_reg_write, Vg_CoreSignal, tst->tid, \
104 VG_TRACK( post_reg_write, Vg_CoreSignal, tst->tid, \
110 /* Create a signal frame for thread 'tid'. */
111 void VG_(sigframe_create) ( ThreadId tid,
131 tst = VG_(get_ThreadState)(tid);
155 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal handler frame",
158 VG_TRACK( post_mem_write, Vg_CoreSignal, tid,
    [all...]
sigframe-x86-darwin.c 93 ThreadId tid = tst->tid; local
101 addr - VG_STACK_REDZONE_SZB, size, tid );
106 /* Create a signal frame for thread 'tid'. Make a 3-arg frame
111 void VG_(sigframe_create) ( ThreadId tid,
130 tst = VG_(get_ThreadState)(tid);
161 VG_(set_SP)(tid, esp);
162 VG_TRACK( post_reg_write, Vg_CoreSignal, tid, VG_O_STACK_PTR, sizeof(UInt));
165 VG_(set_IP)(tid, (UInt)handler);
166 VG_TRACK( post_reg_write, Vg_CoreSignal, tid, VG_O_INSTR_PTR, sizeof(UInt))
    [all...]
sigframe-ppc64-linux.c 121 VG_TRACK( post_reg_write, Vg_CoreSignal, tst->tid, \
128 VG_TRACK( post_reg_write, Vg_CoreSignal, tst->tid, \
140 ThreadId tid = tst->tid; local
154 addr, tid);
162 VG_(synth_fault_mapping)(tid, addr);
172 size + VG_STACK_REDZONE_SZB, tid );
179 void VG_(sigframe_create)( ThreadId tid,
202 tst = VG_(get_ThreadState)(tid);
222 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal handler frame"
    [all...]

Completed in 424 milliseconds

12 3 4 5 6 7 8 91011>>