Home
last modified time | relevance | path

Searched refs:tid (Results 1 – 25 of 1521) sorted by relevance

12345678910>>...61

/external/llvm-project/lldb/test/API/functionalities/plugins/python_os_plugin/
Doperating_system.py28 def create_thread(self, tid, context): argument
29 if tid == 0x444444444:
31 'tid': tid,
105 def get_register_data(self, tid): argument
108 tid + 1,
109 tid + 2,
110 tid + 3,
111 tid + 4,
112 tid + 5,
113 tid + 6,
[all …]
Doperating_system2.py28 def create_thread(self, tid, context): argument
29 if tid == 0x444444444:
31 'tid': tid,
93 def get_register_data(self, tid): argument
96 tid + 1,
97 tid + 2,
98 tid + 3,
99 tid + 4,
100 tid + 5,
101 tid + 6,
[all …]
/external/chromium-trace/catapult/systrace/systrace/test_data/
Dprofile-chrome_systrace_perf_chrome_data1tid": 13956, "ph": "X", "dur": 463}, {"tdur": 412, "name": "TaskQueueManager::DoWork", "tts": 6016…
/external/perfetto/test/trace_processor/graphics/
Dandroid_jank.py22 trace.add_atrace_begin(ts=ts, tid=PID, pid=PID, buf=buf)
23 trace.add_atrace_end(ts=ts_end, tid=PID, pid=PID)
27 trace.add_atrace_begin(ts=ts, tid=RTID, pid=PID, buf=buf)
28 trace.add_atrace_end(ts=ts_end, tid=RTID, pid=PID)
44 tid=1001, tgid=1000, cmdline="RenderThread", name="RenderThread")
48 tid=2001, tgid=2000, cmdline="RenderThread", name="RenderThread")
55 ts=1_000_000, tid=1000, pid=1000, buf='Choreographer#doFrame')
56 trace.add_atrace_begin(ts=1_000_100, tid=1000, pid=1000, buf='traversal')
57 trace.add_atrace_begin(ts=1_000_500, tid=1000, pid=1000, buf='measure')
58 trace.add_atrace_end(ts=4_000_000, tid=1000, pid=1000)
[all …]
Dcomposer_execution.py32 trace.add_atrace_begin(ts=100, tid=10335, pid=10335, buf="onMessageRefresh")
33 trace.add_atrace_begin(ts=200, tid=10335, pid=10335, buf="HwcPresentOrValidateDisplay")
34 trace.add_atrace_end(ts=300, tid=10335, pid=10335)
35 trace.add_atrace_begin(ts=400, tid=10335, pid=10335, buf="HwcPresentDisplay")
36 trace.add_atrace_end(ts=500, tid=10335, pid=10335)
37 trace.add_atrace_end(ts=600, tid=10335, pid=10335)
40 trace.add_atrace_begin(ts=1_100, tid=10335, pid=10335, buf="onMessageRefresh")
41 trace.add_atrace_begin(ts=1_200, tid=10335, pid=10335, buf="HwcPresentOrValidateDisplay")
42 trace.add_atrace_end(ts=1_300, tid=10335, pid=10335)
43 trace.add_atrace_end(ts=1_400, tid=10335, pid=10335)
[all …]
/external/perfetto/test/trace_processor/startup/
Dandroid_startup_attribution.py38 trace.add_thread(tid=SECOND_APP_TID, tgid=APP_PID, cmdline='second_thread')
40 tid=JIT_TID,
45 tid=GC_TID, tgid=APP_PID, cmdline='HeapTaskDaemon', name='HeapTaskDaemon')
47 tid=GC2_TID, tgid=APP_PID, cmdline='HeapTaskDaemon', name='HeapTaskDaemon')
48 trace.add_thread(tid=BINDER_TID, tgid=APP_PID, cmdline='Binder', name='Binder')
49 trace.add_thread(tid=FONTS_TID, tgid=APP_PID, cmdline='fonts', name='fonts')
56 tid=SYSTEM_SERVER_TID,
59 ts=LAUNCH_START_TS + 1, tid=SYSTEM_SERVER_TID, pid=SYSTEM_SERVER_PID)
65 tid=SYSTEM_SERVER_TID,
70 ts=150, pid=APP_PID, tid=APP_TID, buf='OpenDexFilesFromOat(something)')
[all …]
Dandroid_startup_breakdown.py36 tid=2,
39 trace.add_atrace_end(ts=to_s(103), tid=2, pid=2)
42 ts=to_s(110), tid=2, pid=2, buf='launching: com.google.android.calendar')
45 ts=to_s(120), tid=2, pid=2, buf='Start proc: com.google.android.calendar')
46 trace.add_atrace_end(ts=to_s(155), tid=2, pid=2)
49 trace.add_atrace_begin(ts=to_s(125), tid=1, pid=1, buf='bindApplication')
50 trace.add_atrace_end(ts=to_s(195), tid=1, pid=1)
52 trace.add_atrace_begin(ts=to_s(185), tid=3, pid=3, buf='bindApplication')
55 tid=3,
58 trace.add_atrace_begin(ts=to_s(188), tid=3, pid=3, buf='inflate')
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_thread_registry.cc19 ThreadContextBase::ThreadContextBase(u32 tid) in ThreadContextBase() argument
20 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0), in ThreadContextBase()
75 if (tid != 0) in SetCreated()
124 u32 tid = kUnknownTid; in CreateThread() local
127 tid = tctx->tid; in CreateThread()
130 tid = n_contexts_++; in CreateThread()
131 tctx = context_factory_(tid); in CreateThread()
132 threads_[tid] = tctx; in CreateThread()
144 CHECK_NE(tid, kUnknownTid); in CreateThread()
145 CHECK_LT(tid, max_threads_); in CreateThread()
[all …]
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_thread_registry.cpp18 ThreadContextBase::ThreadContextBase(u32 tid) in ThreadContextBase() argument
19 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0), in ThreadContextBase()
88 if (tid != 0) in SetCreated()
138 u32 tid = kUnknownTid; in CreateThread() local
141 tid = tctx->tid; in CreateThread()
144 tid = n_contexts_++; in CreateThread()
145 tctx = context_factory_(tid); in CreateThread()
146 threads_[tid] = tctx; in CreateThread()
158 CHECK_NE(tid, kUnknownTid); in CreateThread()
159 CHECK_LT(tid, max_threads_); in CreateThread()
[all …]
/external/openssh/regress/
Dsftp-cmds.sh8 tid="sftp commands"
30 verbose "$tid: lls"
34 verbose "$tid: lls w/path"
38 verbose "$tid: ls"
43 verbose "$tid: shell"
48 verbose "$tid: pwd"
53 verbose "$tid: lpwd"
58 verbose "$tid: quit"
63 verbose "$tid: help"
69 verbose "$tid: get"
[all …]
/external/llvm-project/compiler-rt/lib/asan/
Dasan_errors.h29 u32 tid; member
32 explicit ErrorBase(u32 tid_) : tid(tid_) {} in ErrorBase()
33 ErrorBase(u32 tid_, int initial_score, const char *reason) : tid(tid_) { in ErrorBase()
43 ErrorDeadlySignal(u32 tid, const SignalContext &sig) in ErrorDeadlySignal()
44 : ErrorBase(tid), in ErrorDeadlySignal()
72 ErrorDoubleFree(u32 tid, BufferedStackTrace *stack, uptr addr) in ErrorDoubleFree()
73 : ErrorBase(tid, 42, "double-free"), in ErrorDoubleFree()
88 ErrorNewDeleteTypeMismatch(u32 tid, BufferedStackTrace *stack, uptr addr, in ErrorNewDeleteTypeMismatch()
90 : ErrorBase(tid, 10, "new-delete-type-mismatch"), in ErrorNewDeleteTypeMismatch()
104 ErrorFreeNotMalloced(u32 tid, BufferedStackTrace *stack, uptr addr) in ErrorFreeNotMalloced()
[all …]
/external/llvm-project/llvm/test/CodeGen/AMDGPU/
Dicmp.i16.ll13 %tid = call i32 @llvm.amdgcn.workitem.id.x()
14 %tid.ext = sext i32 %tid to i64
15 %a.gep = getelementptr inbounds i16, i16 addrspace(1)* %a.ptr, i64 %tid.ext
16 %b.gep = getelementptr inbounds i16, i16 addrspace(1)* %b.ptr, i64 %tid.ext
17 %out.gep = getelementptr inbounds i32, i32 addrspace(1)* %out, i64 %tid.ext
31 %tid = call i32 @llvm.amdgcn.workitem.id.x()
32 %tid.ext = sext i32 %tid to i64
33 %a.gep = getelementptr inbounds i16, i16 addrspace(1)* %a.ptr, i64 %tid.ext
34 %b.gep = getelementptr inbounds i16, i16 addrspace(1)* %b.ptr, i64 %tid.ext
35 %out.gep = getelementptr inbounds i32, i32 addrspace(1)* %out, i64 %tid.ext
[all …]
Dcommute-compares.ll12 %tid = call i32 @llvm.amdgcn.workitem.id.x() #0
13 %gep.in = getelementptr i32, i32 addrspace(1)* %in, i32 %tid
14 %gep.out = getelementptr i32, i32 addrspace(1)* %out, i32 %tid
25 %tid = call i32 @llvm.amdgcn.workitem.id.x() #0
26 %gep.in = getelementptr i32, i32 addrspace(1)* %in, i32 %tid
27 %gep.out = getelementptr i32, i32 addrspace(1)* %out, i32 %tid
40 %tid = call i32 @llvm.amdgcn.workitem.id.x() #0
41 %gep.in = getelementptr i32, i32 addrspace(1)* %in, i32 %tid
42 %gep.out = getelementptr i32, i32 addrspace(1)* %out, i32 %tid
53 %tid = call i32 @llvm.amdgcn.workitem.id.x() #0
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
Dhlsl.numthreads.comp.out7 0:4 'tid' ( in 3-component vector of uint)
10 0:9 'tid' ( in 3-component vector of uint)
15 0:? 'tid' ( temp 3-component vector of uint)
16 0:? 'tid' ( in 3-component vector of uint GlobalInvocationID)
18 0:? 'tid' ( temp 3-component vector of uint)
20 0:? 'tid' ( in 3-component vector of uint GlobalInvocationID)
31 0:4 'tid' ( in 3-component vector of uint)
34 0:9 'tid' ( in 3-component vector of uint)
39 0:? 'tid' ( temp 3-component vector of uint)
40 0:? 'tid' ( in 3-component vector of uint GlobalInvocationID)
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dhlsl.numthreads.comp.out7 0:4 'tid' ( in 3-component vector of uint)
10 0:9 'tid' ( in 3-component vector of uint)
15 0:? 'tid' ( temp 3-component vector of uint)
16 0:? 'tid' ( in 3-component vector of uint GlobalInvocationID)
18 0:? 'tid' ( temp 3-component vector of uint)
20 0:? 'tid' ( in 3-component vector of uint GlobalInvocationID)
31 0:4 'tid' ( in 3-component vector of uint)
34 0:9 'tid' ( in 3-component vector of uint)
39 0:? 'tid' ( temp 3-component vector of uint)
40 0:? 'tid' ( in 3-component vector of uint GlobalInvocationID)
[all …]
Dhlsl.imagefetch-subvec4.comp.out7 0:6 'tid' ( in 3-component vector of uint)
15 0:7 'tid' ( in 3-component vector of uint)
20 0:7 'tid' ( in 3-component vector of uint)
27 0:? 'tid' ( temp 3-component vector of uint)
28 0:? 'tid' ( in 3-component vector of uint GlobalInvocationID)
30 0:? 'tid' ( temp 3-component vector of uint)
34 0:? 'tid' ( in 3-component vector of uint GlobalInvocationID)
45 0:6 'tid' ( in 3-component vector of uint)
53 0:7 'tid' ( in 3-component vector of uint)
58 0:7 'tid' ( in 3-component vector of uint)
[all …]
/external/icu/icu4c/source/data/zone/
Dda.txt1297 lg{"Acre-tid"}
1301 ls{"Afghansk tid"}
1304 ls{"Centralafrikansk tid"}
1307 ls{"Østafrikansk tid"}
1310 ls{"Sydafrikansk tid"}
1314 lg{"Vestafrikansk tid"}
1319 lg{"Alaska-tid"}
1324 lg{"Almaty-tid"}
1329 lg{"Amazonas-tid"}
1334 lg{"Central-tid"}
[all …]
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DRegisterContextMach_arm.cpp26 int RegisterContextMach_arm::DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr) { in DoReadGPR() argument
28 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); in DoReadGPR()
31 int RegisterContextMach_arm::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { in DoReadFPU() argument
33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU()
36 int RegisterContextMach_arm::DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc) { in DoReadEXC() argument
38 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); in DoReadEXC()
41 int RegisterContextMach_arm::DoReadDBG(lldb::tid_t tid, int flavor, DBG &dbg) { in DoReadDBG() argument
43 return ::thread_get_state(tid, flavor, (thread_state_t)&dbg, &count); in DoReadDBG()
46 int RegisterContextMach_arm::DoWriteGPR(lldb::tid_t tid, int flavor, in DoWriteGPR() argument
49 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<GPR *>(&gpr)), in DoWriteGPR()
[all …]
/external/ltp/testcases/realtime/func/prio-preempt/
Dprio-preempt.c138 int policy, mypri = 0, tid; in busy_thread() local
139 tid = (intptr_t) (((struct thread *)arg)->arg); in busy_thread()
149 printf("Busy Thread %d(%d): Running...\n", tid, mypri); in busy_thread()
157 printf("Busy Thread %d(%d): Exiting\n", tid, mypri); in busy_thread()
164 int policy, rc, mypri = 0, tid, times = 0; in worker_thread() local
165 tid = (intptr_t) (((struct thread *)arg)->arg); in worker_thread()
179 rc = pthread_mutex_lock(&mutex[tid]); in worker_thread()
180 if (tid == 0) in worker_thread()
182 rc = pthread_cond_wait(&cond[tid], &mutex[tid]); in worker_thread()
183 rc = pthread_mutex_unlock(&mutex[tid]); in worker_thread()
[all …]
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/
DMachThreadList.h28 bool GetRegisterValue(nub_thread_t tid, uint32_t set, uint32_t reg,
30 bool SetRegisterValue(nub_thread_t tid, uint32_t set, uint32_t reg,
32 nub_size_t GetRegisterContext(nub_thread_t tid, void *buf, size_t buf_len);
33 nub_size_t SetRegisterContext(nub_thread_t tid, const void *buf,
35 uint32_t SaveRegisterState(nub_thread_t tid);
36 bool RestoreRegisterState(nub_thread_t tid, uint32_t save_id);
37 const char *GetThreadInfo(nub_thread_t tid) const;
43 const char *GetName(nub_thread_t tid);
44 nub_state_t GetState(nub_thread_t tid);
45 nub_thread_t SetCurrentThread(nub_thread_t tid);
[all …]
/external/llvm-project/lldb/source/Plugins/Process/POSIX/
DProcessMessage.h53 static ProcessMessage Limbo(lldb::tid_t tid, int status) { in Limbo() argument
54 return ProcessMessage(tid, eLimboMessage, status); in Limbo()
58 static ProcessMessage Signal(lldb::tid_t tid, int signum) { in Signal() argument
59 return ProcessMessage(tid, eSignalMessage, signum); in Signal()
64 static ProcessMessage SignalDelivered(lldb::tid_t tid, int signum) { in SignalDelivered() argument
65 return ProcessMessage(tid, eSignalDeliveredMessage, signum); in SignalDelivered()
69 static ProcessMessage Trace(lldb::tid_t tid) { in Trace() argument
70 return ProcessMessage(tid, eTraceMessage); in Trace()
74 static ProcessMessage Break(lldb::tid_t tid) { in Break() argument
75 return ProcessMessage(tid, eBreakpointMessage); in Break()
[all …]
/external/llvm-project/openmp/runtime/src/
Dkmp_barrier.cpp47 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_linear_barrier_gather_template() argument
57 gtid, team->t.t_id, tid, bt)); in __kmp_linear_barrier_gather_template()
69 if (!KMP_MASTER_TID(tid)) { in __kmp_linear_barrier_gather_template()
73 gtid, team->t.t_id, tid, __kmp_gtid_from_tid(0, team), in __kmp_linear_barrier_gather_template()
99 gtid, team->t.t_id, tid, __kmp_gtid_from_tid(i, team), in __kmp_linear_barrier_gather_template()
126 gtid, team->t.t_id, tid, __kmp_gtid_from_tid(i, team), in __kmp_linear_barrier_gather_template()
142 gtid, team->t.t_id, tid, team->t.t_id, &team_bar->b_arrived, in __kmp_linear_barrier_gather_template()
148 gtid, team->t.t_id, tid, bt)); in __kmp_linear_barrier_gather_template()
154 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_linear_barrier_release_template() argument
160 if (KMP_MASTER_TID(tid)) { in __kmp_linear_barrier_release_template()
[all …]
/external/llvm/test/CodeGen/AMDGPU/
Dcommute-compares.ll12 %tid = call i32 @llvm.amdgcn.workitem.id.x() #0
13 %gep.in = getelementptr i32, i32 addrspace(1)* %in, i32 %tid
14 %gep.out = getelementptr i32, i32 addrspace(1)* %out, i32 %tid
25 %tid = call i32 @llvm.amdgcn.workitem.id.x() #0
26 %gep.in = getelementptr i32, i32 addrspace(1)* %in, i32 %tid
27 %gep.out = getelementptr i32, i32 addrspace(1)* %out, i32 %tid
40 %tid = call i32 @llvm.amdgcn.workitem.id.x() #0
41 %gep.in = getelementptr i32, i32 addrspace(1)* %in, i32 %tid
42 %gep.out = getelementptr i32, i32 addrspace(1)* %out, i32 %tid
53 %tid = call i32 @llvm.amdgcn.workitem.id.x() #0
[all …]
Dmad-sub.ll13 %tid = tail call i32 @llvm.amdgcn.workitem.id.x() #0
14 %tid.ext = sext i32 %tid to i64
15 %gep0 = getelementptr float, float addrspace(1)* %ptr, i64 %tid.ext
16 %add1 = add i64 %tid.ext, 1
18 %add2 = add i64 %tid.ext, 2
20 %outgep = getelementptr float, float addrspace(1)* %out, i64 %tid.ext
37 %tid = tail call i32 @llvm.amdgcn.workitem.id.x() #0
38 %tid.ext = sext i32 %tid to i64
39 %gep0 = getelementptr float, float addrspace(1)* %ptr, i64 %tid.ext
40 %add1 = add i64 %tid.ext, 1
[all …]
/external/libusb/libusb/os/
Dthreads_posix.c87 int tid; in usbi_get_tid() local
93 tid = gettid(); in usbi_get_tid()
99 tid = (int)thread_id; in usbi_get_tid()
101 tid = -1; in usbi_get_tid()
103 tid = (int)pthread_mach_thread_np(pthread_self()); in usbi_get_tid()
106 tid = get_pthread_thread_id(pthread_self()); in usbi_get_tid()
108 tid = (int)syscall(SYS_gettid); in usbi_get_tid()
110 tid = _lwp_self(); in usbi_get_tid()
114 tid = syscall(SYS_getthrid); in usbi_get_tid()
116 tid = _lwp_self(); in usbi_get_tid()
[all …]

12345678910>>...61