HomeSort by relevance Sort by last modified time
    Searched refs:Pid (Results 1 - 11 of 11) sorted by null

  /external/llvm/unittests/Support/
ProgramTest.cpp 131 ASSERT_NE(PI1.Pid, 0) << "Invalid process id";
141 if (WaitResult.Pid == PI1.Pid)
150 ASSERT_NE(PI2.Pid, 0) << "Invalid process id";
158 if (WaitResult.Pid == PI2.Pid)
215 ASSERT_EQ(PI.Pid, 0)
  /system/core/libbacktrace/
BacktraceImpl.h 37 inline pid_t Pid() { return backtrace_obj_->Pid(); }
64 BacktracePtrace(BacktraceImpl* impl, pid_t pid, pid_t tid, BacktraceMap* map);
71 Backtrace* CreatePtraceObj(pid_t pid, pid_t tid, BacktraceMap* map);
BacktraceThread.cpp 44 ThreadEntry::ThreadEntry(pid_t pid, pid_t tid)
45 : pid_(pid), tid_(tid), ref_count_(1), mutex_(PTHREAD_MUTEX_INITIALIZER),
60 ThreadEntry* ThreadEntry::Get(pid_t pid, pid_t tid, bool create) {
64 if (entry->Match(pid, tid)) {
72 entry = new ThreadEntry(pid, tid);
151 BACK_LOGW("Unable to find pid %d tid %d information", getpid(), gettid());
188 ThreadEntry* entry = ThreadEntry::Get(Pid(), Tid());
204 if (tgkill(Pid(), Tid(), THREAD_SIGNAL) != 0) {
backtrace_test.cpp 96 void WaitForStop(pid_t pid) {
100 while (ptrace(PTRACE_GETSIGINFO, pid, 0, &si) < 0 && (errno == EINTR || errno == ESRCH)) {
255 void VerifyProcTest(pid_t pid, pid_t tid, bool share_map,
260 ptrace_tid = pid;
274 map.reset(BacktraceMap::Create(pid));
276 UniquePtr<Backtrace> backtrace(Backtrace::Create(pid, tid, map.get()));
292 pid_t pid; local
293 if ((pid = fork()) == 0) {
297 VerifyProcTest(pid, BACKTRACE_CURRENT_THREAD, false, ReadyLevelBacktrace, VerifyLevelDump);
299 kill(pid, SIGKILL)
301 ASSERT_EQ(waitpid(pid, &status, 0), pid); local
305 pid_t pid; local
315 ASSERT_EQ(waitpid(pid, &status, 0), pid); local
319 pid_t pid; local
328 ASSERT_EQ(waitpid(pid, &status, 0), pid); local
344 pid_t pid; local
353 ASSERT_EQ(waitpid(pid, &status, 0), pid); local
381 pid_t pid; local
419 ASSERT_EQ(waitpid(pid, &status, 0), pid); local
796 pid_t pid; local
816 ASSERT_EQ(waitpid(pid, NULL, 0), pid); local
868 pid_t pid; local
887 ASSERT_EQ(waitpid(pid, NULL, 0), pid); local
    [all...]
  /external/llvm/include/llvm/Support/
Program.h 46 ProcessId Pid;
130 /// \returns A \see ProcessInfo struct with Pid set to:
  /system/core/include/backtrace/
Backtrace.h 61 // If pid < 0 or equals the current pid, then the Backtrace object
63 // If pid < 0 or equals the current pid and tid >= 0, then the Backtrace
65 // If pid >= 0 and tid < 0, then the Backtrace object corresponds to a
70 static Backtrace* Create(pid_t pid, pid_t tid, BacktraceMap* map = NULL);
92 pid_t Pid() { return pid_; }
114 Backtrace(BacktraceImpl* impl, pid_t pid, BacktraceMap* map);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bdaiface.h 297 STDMETHOD_(HRESULT,GetTableSection)(THIS_ DWORD *Pid,DWORD MaxBufferSize,DWORD *ActualSize,BYTE *SecBuffer) PURE;
311 #define IBDA_FDC_GetTableSection(This,Pid,MaxBufferSize,ActualSize,SecBuffer) (This)->lpVtbl->GetTableSection(This,Pid,MaxBufferSize,ActualSize,SecBuffer)
rpcdcep.h 156 RPCRTAPI RPC_STATUS RPC_ENTRY I_RpcBindingInqLocalClientPID(RPC_BINDING_HANDLE Binding,unsigned __LONG32 *Pid);
evntrace.h 570 ULONG Pid;
  /frameworks/base/core/java/android/os/
BatteryStats.java 319 public abstract SparseArray<? extends Pid> getPidStats();
415 public class Pid {
3994 Uid.Pid pid = pids.valueAt(j); local
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 2765 noteStartWakeLocked(ws.get(i), pid, name, historyName, type, unimportantForLogging, local
2785 noteStopWakeLocked(ws.get(i), pid, name, historyName, type, elapsedRealtime, uptime); local
2795 noteStopWakeLocked(ws.get(i), pid, name, historyName, type, elapsedRealtime, uptime); local
4853 Pid pid = mPids.valueAt(i); local
    [all...]

Completed in 497 milliseconds