HomeSort by relevance Sort by last modified time
    Searched refs:tid (Results 101 - 125 of 626) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/
LogRecordFactory.java 25 * @param tid -- the transaction id
35 String firstLine, String tid, String callId, long timestampVal);
  /external/openssh/regress/
exit-status.sh 4 tid="remote exit status"
9 verbose "test $tid: proto $p status $s"
proto-mismatch.sh 4 tid="protocol version mismatch"
proto-version.sh 4 tid="sshd version with different protocol combinations"
putty-kex.sh 4 tid="putty KEX"
15 verbose "$tid: kex $k"
sftp-badcmds.sh 4 tid="sftp invalid commands"
15 verbose "$tid: get nonexistent"
21 verbose "$tid: glob get to nonexistent directory"
29 verbose "$tid: put nonexistent"
35 verbose "$tid: glob put to nonexistent directory"
43 verbose "$tid: rename nonexistent"
51 verbose "$tid: rename target exists (directory)"
61 verbose "$tid: glob put files to local file"
sftp-batch.sh 4 tid="sftp batchfile"
39 verbose "$tid: good commands"
43 verbose "$tid: bad commands"
47 verbose "$tid: comments and blanks"
51 verbose "$tid: junk command"
  /external/oprofile/libpp/
filename_spec.cpp 38 if (!tid.match(rhs.tid) || !cpu.match(rhs.cpu) ||
71 tid.set(parsed.tid);
  /frameworks/av/services/audioflinger/
ISchedulingPolicyService.h 29 virtual int requestPriority(/*pid_t*/int32_t pid, /*pid_t*/int32_t tid,
  /system/core/debuggerd/
backtrace.h 28 void dump_backtrace(int fd, int amfd, pid_t pid, pid_t tid, bool* detach_failed,
tombstone.h 28 char* engrave_tombstone(pid_t pid, pid_t tid, int signal, uintptr_t abort_msg_address,
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/extras/tests/bionic/libc/other/
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)
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)
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_mutex.cc 27 DPrintf("#%d: MutexCreate %zx\n", thr->tid, addr);
45 DPrintf("#%d: MutexDestroy %zx\n", thr->tid, addr);
73 RestoreStack(last.tid(), last.epoch(), &trace, 0);
84 DPrintf("#%d: MutexLock %zx\n", thr->tid, addr);
92 s->owner_tid = thr->tid;
94 } else if (s->owner_tid == thr->tid) {
102 thr->clock.set(thr->tid, thr->fast_state.epoch());
117 DPrintf("#%d: MutexUnlock %zx\n", thr->tid, addr);
129 } else if (s->owner_tid != thr->tid) {
140 thr->clock.set(thr->tid, thr->fast_state.epoch())
    [all...]
  /external/valgrind/main/memcheck/
mc_include.h 86 void* MC_(new_block) ( ThreadId tid,
90 void MC_(handle_free) ( ThreadId tid,
95 void MC_(mempool_alloc) ( ThreadId tid, Addr pool,
131 void* MC_(malloc) ( ThreadId tid, SizeT n );
132 void* MC_(__builtin_new) ( ThreadId tid, SizeT n );
133 void* MC_(__builtin_vec_new) ( ThreadId tid, SizeT n );
134 void* MC_(memalign) ( ThreadId tid, SizeT align, SizeT n );
135 void* MC_(calloc) ( ThreadId tid, SizeT nmemb, SizeT size1 );
136 void MC_(free) ( ThreadId tid, void* p );
137 void MC_(__builtin_delete) ( ThreadId tid, void* p )
    [all...]
mc_malloc_wrappers.c 252 void* MC_(new_block) ( ThreadId tid,
280 ec = VG_(record_ExeContext)(tid, 0/*first_ip_delta*/);
296 void* MC_(malloc) ( ThreadId tid, SizeT n )
301 return MC_(new_block) ( tid, 0, n, VG_(clo_alignment),
306 void* MC_(__builtin_new) ( ThreadId tid, SizeT n )
311 return MC_(new_block) ( tid, 0, n, VG_(clo_alignment),
316 void* MC_(__builtin_vec_new) ( ThreadId tid, SizeT n )
321 return MC_(new_block) ( tid, 0, n, VG_(clo_alignment),
326 void* MC_(memalign) ( ThreadId tid, SizeT alignB, SizeT n )
331 return MC_(new_block) ( tid, 0, n, alignB,
650 ThreadId tid = VG_(get_running_tid)(); local
788 ThreadId tid = VG_(get_running_tid)(); local
823 ThreadId tid = VG_(get_running_tid)(); local
946 ThreadId tid = VG_(get_running_tid)(); local
959 ThreadId tid = VG_(get_running_tid)(); local
    [all...]
  /system/core/debuggerd/arm/
machine.c 45 static void dump_memory(log_t* log, pid_t tid, uintptr_t addr, int scopeFlags) {
82 long data = ptrace(PTRACE_PEEKTEXT, tid, (void*)p, NULL);
114 log_t* log, pid_t tid, bool at_fault) { variable
116 if(ptrace(PTRACE_GETREGS, tid, 0, &regs)) {
138 dump_memory(log, tid, addr, scopeFlags | SCOPE_SENSITIVE);
144 dump_memory(log, tid, (uintptr_t)regs.ARM_pc, scopeFlags);
148 dump_memory(log, tid, (uintptr_t)regs.ARM_lr, scopeFlags);
153 log_t* log, pid_t tid, bool at_fault) variable
158 if(ptrace(PTRACE_GETREGS, tid, 0, &r)) {
177 if(ptrace(PTRACE_GETVFPREGS, tid, 0, &vfp_regs))
    [all...]
  /external/compiler-rt/lib/asan/
asan_thread.h 30 // so we can find them by tid even if the thread is long dead.
44 u32 tid() { return tid_; } function in class:__asan::AsanThreadSummary
45 void set_tid(u32 tid) { tid_ = tid; }
84 u32 tid() { return summary_->tid(); } function in class:__asan::AsanThread
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-s390x-linux.c 241 The parent gets the child's new tid returned from clone, but the
278 VG_(printf)("tid %d: guessed client stack range %#lx-%#lx\n",
462 if (!ML_(valid_client_addr)(ARG2, 4*sizeof(Addr), tid, NULL)) {
466 ML_(generic_PRE_sys_socketpair)( tid, ARG2_0, ARG2_1, ARG2_2, ARG2_3 );
472 if (!ML_(valid_client_addr)(ARG2, 3*sizeof(Addr), tid, NULL)) {
482 if (!ML_(valid_client_addr)(ARG2, 3*sizeof(Addr), tid, NULL)) {
486 ML_(generic_PRE_sys_bind)( tid, ARG2_0, ARG2_1, ARG2_2 );
492 if (!ML_(valid_client_addr)(ARG2, 2*sizeof(Addr), tid, NULL)) {
501 if (!ML_(valid_client_addr)(ARG2, 3*sizeof(Addr), tid, NULL)) {
505 ML_(generic_PRE_sys_accept)( tid, ARG2_0, ARG2_1, ARG2_2 )
    [all...]
syswrap-mips32-linux.c 226 static SysRes sys_set_tls (ThreadId tid, Addr tlsptr);
290 VG_ (printf) ("tid %d: guessed client stack range %#lx-%#lx\n",
358 SysRes sys_set_tls ( ThreadId tid, Addr tlsptr )
360 VG_(threads)[tid].arch.vex.guest_ULR = tlsptr;
436 ML_ (generic_PRE_sys_socketpair) (tid, ARG2_0, ARG2_1, ARG2_2, ARG2_3);
446 ML_ (generic_PRE_sys_bind) (tid, ARG2_0, ARG2_1, ARG2_2);
456 ML_ (generic_PRE_sys_accept) (tid, ARG2_0, ARG2_1, ARG2_2);
464 ML_ (generic_PRE_sys_sendto) (tid, ARG2_0, ARG2_1, ARG2_2, ARG2_3,
470 ML_ (generic_PRE_sys_send) (tid, ARG2_0, ARG2_1, ARG2_2);
476 ML_ (generic_PRE_sys_recvfrom) (tid, ARG2_0, ARG2_1, ARG2_2,
    [all...]
  /external/valgrind/main/drd/
drd_barrier.c 43 UWord tid; // A DrdThreadId declared as UWord because member in struct:barrier_thread_info
46 // by thread tid.
49 Bool thread_finished;// Whether thread 'tid' has finished.
57 const DrdThreadId tid);
84 const DrdThreadId tid)
86 p->tid = tid;
130 tl_assert(sizeof(((struct barrier_thread_info*)0)->tid) == sizeof(Word));
131 tl_assert(sizeof(((struct barrier_thread_info*)0)->tid)
303 .tid = DRD_(thread_get_running_tid)()
    [all...]
  /external/linux-tools-perf/util/
values.c 10 values->tid = malloc(values->threads_max * sizeof(*values->tid));
12 if (!values->pid || !values->tid || !values->value)
36 free(values->tid);
48 values->tid = realloc(values->tid,
49 values->threads_max * sizeof(*values->tid));
52 if (!values->pid || !values->tid || !values->value)
57 u32 pid, u32 tid)
62 if (values->pid[i] == pid && values->tid[i] == tid
    [all...]
  /system/core/libcorkscrew/
backtrace.c 44 extern int tgkill(int tgid, int tid, int sig);
57 static int tgkill(int tgid, int tid, int sig) {
58 return syscall(__NR_tgkill, tgid, tid, sig);
141 ssize_t unwind_backtrace_thread(pid_t tid, backtrace_frame_t* backtrace,
143 if (tid == gettid()) {
147 ALOGV("Unwinding thread %d from thread %d.", tid, gettid());
167 android_atomic_release_store(tid, &g_unwind_signal_state.tid_state);
170 int32_t tid_state = tid;
171 if (tgkill(getpid(), tid, SIGURG)) {
172 ALOGV("Failed to send SIGURG to thread %d.", tid);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_linux_test.cc 50 // For signaling to main thread that a child thread has reported its tid.
64 pid_t tid; local
66 SpawnTidReporter(&pthread_id, &tid);
68 tids_.push_back(tid);
81 void SpawnTidReporter(pthread_t *pthread_id, pid_t *tid);
91 // Writes its TID once to reported_tid and waits until signaled to terminate.
108 pid_t *tid) {
118 *tid = thread_arg.reported_tid;
123 pid_t tid; local
124 while ((tid = thread_lister->GetNextTID()) >= 0
    [all...]

Completed in 3600 milliseconds

1 2 3 45 6 7 8 91011>>