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

12 3 4 5 6 7 8

  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /system/core/include/cutils/
logger.h 19 int32_t tid; /* generating process's tid */ member in struct:logger_entry
  /external/qemu/distrib/sdl-1.2.12/src/thread/os2/
SDL_systhread.c 97 TID tid = thread->handle; local
98 DosWaitThread(&tid, DCWW_WAIT);
  /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/toolbox/
ps.c 33 static int ps_line(int pid, int tid, char *namefilter)
50 if(tid) {
51 sprintf(statline, "/proc/%d/task/%d/stat", pid, tid);
131 if(tid != 0) {
133 pid = tid;
182 int tid = atoi(de->d_name); local
183 if(tid == pid) continue;
184 ps_line(pid, tid, namefilter);
top.c 55 pid_t tid; member in struct:proc_info
99 static struct proc_info *find_old_proc(pid_t pid, pid_t tid);
228 pid_t pid, tid; local
256 proc->pid = proc->tid = pid;
289 tid = atoi(tid_dir->d_name);
293 proc->pid = pid; proc->tid = tid;
295 sprintf(filename, "/proc/%d/task/%d/stat", pid, tid);
298 read_policy(tid, proc);
420 old_proc = find_old_proc(new_procs[i]->pid, new_procs[i]->tid);
    [all...]
  /device/samsung/crespo/alsa-lib/src/timer/
timer_query_hw.c 48 static int snd_timer_query_hw_next_device(snd_timer_query_t *handle, snd_timer_id_t * tid)
50 if (!handle || !tid)
52 if (ioctl(handle->poll_fd, SNDRV_TIMER_IOCTL_NEXT_DEVICE, tid) < 0)
timer_local.h 55 int (*next_device)(snd_timer_query_t *timer, snd_timer_id_t *tid);
  /external/oprofile/daemon/
opd_sfile.h 45 pid_t tid; member in struct:sfile
  /external/qemu/memcheck/
memcheck.h 115 * tid - ID of the thread that becomes active.
117 void memcheck_switch(uint32_t tid);
memcheck_proc_management.c 69 * tid - Thread ID of the thread that's being created.
74 create_new_thread(ProcDesc* proc, uint32_t tid)
81 new_thread->tid = tid;
175 * tid - Thread ID to look up thread descriptor for.
180 get_thread_from_tid(uint32_t tid)
187 if (tid == current_tid && current_thread != NULL) {
192 if (tid == thread->tid) {
193 if (tid == current_tid)
    [all...]
  /external/qemu/
compatfd.c 73 pthread_t tid; local
94 pthread_create(&tid, &attr, sigwait_compat, info);
  /frameworks/base/tools/preload/
Record.java 56 final int tid; field in class:Record
100 tid = Integer.parseInt(parts[2]);
Root.java 84 o = process.endOperation(record.tid, record.className,
93 process.startOperation(record.tid, loadedClass, record.time,
98 process.startOperation(record.tid, loadedClass, record.time,
  /system/core/adb/
usb_linux_client.c 114 adb_thread_t tid; local
135 if(adb_thread_create(&tid, usb_open_thread, h)){
  /external/nist-sip/java/gov/nist/javax/sip/stack/
ServerLog.java 323 String callId, String firstLine, String status, String tid, long time,
327 sender, firstLine, tid, callId, timestampVal);
351 String tid = message.getTransactionId(); local
354 logMessage(inputText, from, to, sender, callId, firstLine, null, tid, time, tsval);
376 String tid = message.getTransactionId(); local
379 logMessage(encoded, from, to, sender, callId, firstLine, status, tid, time, tsval);
  /bionic/libc/bionic/
pthread.c 294 int tid; local
343 tid = __pthread_clone((int(*)(void*))start_routine, tls,
348 if(tid < 0) {
358 _init_thread(thread, tid, (pthread_attr_t*)attr, stack);
365 _thread_created_hook(tid);
739 * 31-16 tid owner thread's kernel id (recursive and errorcheck only)
1017 int mtype, tid, new_lock_type, shared; local
1032 tid = __get_thread()->kernel_id;
1033 if ( tid == MUTEX_OWNER(mutex) )
1070 mutex->value = ((tid << 16) | mtype | new_lock_type)
1096 int mtype, tid, oldv, shared; local
1136 int mtype, tid, oldv, shared; local
1230 int mtype, tid, oldv, new_lock_type, shared; local
    [all...]
  /external/libxml2/
threads.c 113 thread_id tid;
127 pthread_t tid; member in struct:_xmlRMutex
134 thread_id tid;
206 tok->tid = -1;
259 tok->tid = find_thread(NULL);
281 if (tok->tid == find_thread(NULL)) {
282 tok->tid = -1;
367 if (pthread_equal(tok->tid, pthread_self())) {
378 tok->tid = pthread_self();
385 if (tok->lock->tid == find_thread(NULL))
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventContainer.java 171 public int tid; /* generating process's tid */ field in class:EventContainer
179 * @param entry the LogEntry from which pid, tid, and time info is copied.
189 tid = entry.tid;
197 EventContainer(int tag, int pid, int tid, int sec, int nsec, Object data) {
203 this.tid = tid;
LogReceiver.java 42 /** tid of the process that generated this {@link LogEntry} */
43 public int tid; field in class:LogReceiver.LogEntry
234 entry.tid = ArrayHelper.swap32bitFromArray(data, offset);
  /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;
  /external/kernel-headers/original/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt

Completed in 946 milliseconds

12 3 4 5 6 7 8