HomeSort by relevance Sort by last modified time
    Searched defs:tid (Results 176 - 200 of 281) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/
thread_db.h 78 pid_t tid; member in struct:__anon39331
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/
thread_db.h 78 pid_t tid; member in struct:__anon39777
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/
thread_db.h 78 pid_t tid; member in struct:__anon40225
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/
thread_db.h 75 pid_t tid; member in struct:__anon40583
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/
thread_db.h 75 pid_t tid; member in struct:__anon40941
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/
thread_db.h 75 pid_t tid; member in struct:__anon41299
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/
thread_db.h 75 pid_t tid; member in struct:__anon41662
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/
thread_db.h 78 pid_t tid; member in struct:__anon42056
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/
thread_db.h 78 pid_t tid; member in struct:__anon42502
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/
thread_db.h 78 pid_t tid; member in struct:__anon42950
  /system/core/adb/
usb_libusb.c 629 adb_thread_t tid; local
651 if (adb_thread_create(&tid, device_poll_thread, NULL)) {
usb_linux_client.c 231 adb_thread_t tid; local
257 if(adb_thread_create(&tid, usb_adb_open_thread, h)){
440 adb_thread_t tid; local
458 if (adb_thread_create(&tid, usb_ffs_open_thread, h)){
usb_windows.c 180 adb_thread_t tid; local
182 if(adb_thread_create(&tid, device_poll_thread, NULL)) {
  /system/core/debuggerd/
debuggerd.c 53 pid_t pid, tid; member in struct:__anon43826
160 static int get_process_info(pid_t tid, pid_t* out_pid, uid_t* out_uid, uid_t* out_gid) {
162 snprintf(path, sizeof(path), "/proc/%d/status", tid);
197 XLOG("reading tid\n");
206 LOG("timed out reading tid (from pid=%d uid=%d)\n", cr.pid, cr.uid);
227 out_request->tid = msg.tid;
234 /* Ensure that the tid reported by the crashing process is valid. */
237 snprintf(buf, sizeof buf, "/proc/%d/task/%d", out_request->pid, out_request->tid);
239 LOG("tid %d does not exist in pid %d. ignoring debug request\n"
519 pid_t tid = 0; local
    [all...]
  /system/core/toolbox/
ps.c 34 static int ps_line(int pid, int tid, char *namefilter)
52 if(tid) {
53 sprintf(statline, "/proc/%d/task/%d/stat", pid, tid);
55 snprintf(macline, sizeof(macline), "/proc/%d/task/%d/attr/current", pid, tid);
135 if(tid != 0) {
137 pid = tid;
195 int tid = atoi(de->d_name); local
196 if(tid == pid) continue;
197 ps_line(pid, tid, namefilter);
schedtop.c 19 int tid; member in struct:thread_info
94 static void add_thread(int pid, int tid, struct thread_info *proc_info)
100 if(tid == 0)
105 info->tid = tid;
107 if(tid)
108 sprintf(line, "/proc/%d/task/%d/schedstat", pid, tid);
122 if (!tid) {
130 if (tid)
131 sprintf(line, "/proc/%d/task/%d/stat", pid, tid);
165 int tid = atoi(de->d_name); local
177 int tid = last_threads.data[i].tid; local
232 int tid = last_processes.data[i].tid; local
    [all...]
  /system/extras/latencytop/
latencytop.c 45 static struct latency_entry *read_thread_stats(struct latency_entry *list, int erase, int pid, int tid, int fatal);
71 int pid, tid; local
77 pid = tid = 0;
113 tid = atoi(argv[++i]);
121 if (tid && !pid) {
146 if (tid) {
147 e = read_thread_stats(e, erase, pid, tid, 1);
158 if (tid) {
159 printf("Latencies for thread %d in process %d:\n", tid, pid);
206 int tid; local
    [all...]
  /bootable/recovery/minadbd/
sysdeps.h 63 typedef struct { unsigned tid; } adb_thread_t; member in struct:__anon741
71 thread->tid = _beginthread( (win_thread_func_t)func, 0, arg );
72 if (thread->tid == (unsigned)-1L) {
  /external/bluetooth/bluedroid/udrv/ulinux/
uipc.c 89 pthread_t tid; /* main thread id */ member in struct:__anon3531
563 uipc_main.tid = 0;
573 if (pthread_create(&uipc_main.tid, (const pthread_attr_t *) NULL, (void*)uipc_read_task, NULL) < 0)
592 if (uipc_main.tid > 0)
593 pthread_join(uipc_main.tid, NULL);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.cc 635 int tid = -1; local
643 // Found a valid tid.
644 tid = (int)internal_atoll(entry_->d_name);
647 } while (tid < 0);
648 return tid;
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 52 static ThreadContextBase *CreateThreadContext(u32 tid) {
54 MapThreadTrace(GetThreadTrace(tid), TraceSize() * sizeof(Event));
56 return new(mem) ThreadContext(tid);
78 ThreadState::ThreadState(Context *ctx, int tid, int unique_id, u64 epoch,
81 : fast_state(tid, epoch)
88 , tid(tid)
214 int tid = ThreadCreate(thr, 0, 0, true); local
215 CHECK_EQ(tid, 0);
216 ThreadStart(thr, tid, GetPid())
    [all...]
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrix.h 79 Index tid = omp_get_thread_num(); local
103 // i.e., we test that info[tid].users equals 0.
104 // Then, we set info[tid].users to the number of threads to mark that all other threads are going to use it.
105 while(info[tid].users!=0) {}
106 info[tid].users += threads;
108 pack_rhs(blockB+info[tid].rhs_start*actual_kc, &rhs(k,info[tid].rhs_start), rhsStride, actual_kc, info[tid].rhs_length);
111 info[tid].sync = k;
116 Index j = (tid+shift)%threads
    [all...]
  /external/linux-tools-perf/util/
event.h 15 u32 pid, tid; member in struct:ip_event
21 u32 pid, tid; member in struct:mmap_event
30 u32 pid, tid; member in struct:comm_event
37 u32 tid, ptid; member in struct:fork_event
52 u32 pid, tid; member in struct:read_event
73 u32 pid, tid; member in struct:perf_sample
  /external/mdnsresponder/mDNSShared/
dnsextd.h 88 pthread_t tid; // Allow parallel list updates member in struct:AnswerListElem
  /external/protobuf/gtest/test/
gtest_output_test_.cc 857 pthread_t tid; local
858 pthread_create(&tid,
862 pthread_join(tid, NULL);

Completed in 4020 milliseconds

1 2 3 4 5 6 78 91011>>