HomeSort by relevance Sort by last modified time
    Searched defs:tid (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /bionic/linker/
debugger.c 51 unsigned tid; local
57 tid = gettid();
63 * local socket but we need to tell it our tid. It
64 * is paranoid and will verify that we are giving a tid
69 RETRY_ON_EINTR(ret, write(s, &tid, sizeof(unsigned)));
73 RETRY_ON_EINTR(ret, read(s, &tid, 1));
  /development/simulator/app/
LogBundle.h 33 unsigned tid; member in struct:android_LogBundle
35 pthread_t tid; member in struct:android_LogBundle
  /external/bluetooth/hcidump/parser/
hcrp.c 85 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);
  /system/extras/tests/bionic/libc/other/
test_timer_create.c 51 timer_t tid; local
60 if (timer_create (CLOCK_REALTIME, &se, &tid) < 0)
70 if (timer_settime (tid, TIMER_ABSTIME, &ts, &ots) < 0)
test_timer_create3.c 35 static timer_t tid; variable
60 timer_settime(tid, TIMER_ABSTIME, &ts, NULL);
76 if (timer_create (CLOCK_REALTIME, &se, &tid) < 0)
86 if (timer_settime (tid, TIMER_ABSTIME, &ts, &ots) < 0)
test_timer_create2.c 51 timer_t tid; local
59 if (timer_create (CLOCK_REALTIME, &se, &tid) < 0)
64 printf("timer_create successfully = %d.\n", (int)tid);
69 if (timer_settime (tid, TIMER_ABSTIME, &ts, &ots) < 0)
  /external/qemu/distrib/sdl-1.2.12/src/thread/os2/
SDL_systhread.c 97 TID tid = thread->handle; local
98 DosWaitThread(&tid, DCWW_WAIT);
  /frameworks/base/core/jni/
android_server_Watchdog.cpp 30 static void dumpOneStack(int tid, int outFd) {
33 snprintf(buf, sizeof(buf), "/proc/%d/stack", tid);
50 LOGE("Unable to open stack of tid %d : %d (%s)", tid, errno, strerror(errno));
81 int tid = atoi(ent->d_name); local
82 if (tid > 0 && tid <= 65535) {
84 dumpOneStack(tid, outFd);
  /system/core/adb/
usb_linux_client.c 114 adb_thread_t tid; local
135 if(adb_thread_create(&tid, usb_open_thread, h)){
  /external/qemu/
compatfd.c 73 pthread_t tid; local
94 pthread_create(&tid, &attr, sigwait_compat, info);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
PriorityThreadFactoryTest.java 60 int tid = android.os.Process.myTid(); local
61 mPriority = new Integer(android.os.Process.getThreadPriority(tid));
  /system/core/include/cutils/
logger.h 19 int32_t tid; /* generating process's tid */ member in struct:logger_entry
logprint.h 48 pthread_t tid; member in struct:AndroidLogEntry_t
  /external/oprofile/daemon/
opd_sfile.h 45 pid_t tid; member in struct:sfile
opd_spu.c 23 pid_t tid; member in struct:spu_context_info
68 trans->tid = pop_buffer_value(trans);
74 printf("SPU_CTX_SWITCH to tid %lu, tgid %lu, cookie %llx(%s)\n",
75 (unsigned long)trans->tid, (unsigned long)trans->tgid,
94 spu_context_cache[i].tid = trans->tid;
104 trans->tid = spu_context_cache[i].tid;
opd_trans.h 54 pid_t tid; member in struct:transient
  /external/oprofile/libop/
op_mangle.h 47 pid_t tid; member in struct:mangle_values
  /frameworks/base/tools/preload/
Record.java 56 final int tid; field in class:Record
100 tid = Integer.parseInt(parts[2]);
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
qosMngr_API.h 65 TI_UINT8 tid; member in struct:__anon8931
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/QOS/Inc/
qosMngr_API.h 62 UINT8 tid; member in struct:__anon13393
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
qosMngr_API.h 65 TI_UINT8 tid; member in struct:__anon14767
  /bionic/libc/kernel/common/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /external/iproute2/ip/
iprule.c 295 __u32 tid; local
297 if (rtnl_rttable_a2n(&tid, *argv))
299 if (tid < 256)
300 req.r.rtm_table = tid;
303 addattr32(&req.n, sizeof(req), FRA_TABLE, tid);
  /external/iproute2/tc/
f_rsvp.c 240 unsigned tid; local
242 if (get_unsigned(&tid, *argv, 0)) {
246 pinfo.tunnelid = tid;
249 unsigned tid; local
251 if (get_unsigned(&tid, *argv, 0)) {
255 addattr_l(n, 4096, TCA_RSVP_CLASSID, &tid, 4);
260 if (get_unsigned(&tid, *argv, 0)) {
264 pinfo.tunnelhdr = tid;
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 64 mutable GLuint tid; member in struct:android::BootAnimation::Animation::Frame

Completed in 677 milliseconds

1 2 3 4