/external/toybox/toys/pending/ |
init.c | 18 First program to run (as PID 1) when the system comes up, reading 27 pid_t pid; member in struct:action_list_seed 228 pid_t pid; local 234 if (x->action & ASKFIRST) pid = fork(); 235 else pid = vfork(); 237 if (pid > 0) { 243 return pid; 244 } else if (pid < 0) { 272 static struct action_list_seed* mark_as_terminated_process(pid_t pid) 276 if (pid > 0) 301 pid_t pid; local 337 pid_t pid; local 372 pid_t pid; local 414 pid_t pid; local 491 pid_t pid = waitpid(-1, NULL, suspected_WNOHANG); local [all...] |
tcpsvd.c | 55 int pid; member in struct:list_pid 88 // Insert pid, ip and fd in the list. 89 static void insert(struct list_pid **l, int pid, char *addr) 92 newnode->pid = pid; 122 static char *delete(struct list_pid **pids, int pid) 130 if (head->pid == pid) { 267 pid_t pid; local 353 if (!(pid = xfork())) [all...] |
/external/valgrind/coregrind/ |
m_debuglog.c | 1151 UInt pid; local [all...] |
/frameworks/av/media/libmediaplayerservice/tests/ |
DrmSessionManager_test.cpp | 35 virtual bool getPriority(int pid, int* priority) { 36 // For testing, use pid as priority. 38 *priority = pid; 121 int pid; local 123 EXPECT_FALSE(mDrmSessionManager->getLowestPriority_l(&pid, &priority)); 126 EXPECT_TRUE(mDrmSessionManager->getLowestPriority_l(&pid, &priority)); 128 EXPECT_EQ(kTestPid1, pid); 219 // calling pid priority is too low
|
/frameworks/av/services/mediaresourcemanager/ |
ResourceManagerService.cpp | 64 int pid, 66 ssize_t index = map.indexOfKey(pid); 68 // new pid 70 map.add(pid, infosForPid); 73 return map.editValueFor(pid); 109 snprintf(buffer, SIZE, " Pid: %d\n", mMap.keyAt(i)); 167 int pid, 171 String8 log = String8::format("addResource(pid %d, clientId %lld, resources %s)", 172 pid, (long long) clientId, getString(resources).string()); 176 ResourceInfos& infos = getResourceInfosForEdit(pid, mMap) 379 int pid = -1; local [all...] |
/frameworks/av/services/mediaresourcemanager/test/ |
ResourceManagerService_test.cpp | 40 virtual bool getPriority(int pid, int *priority) { 41 // For testing, use pid as priority. 43 *priority = pid; 52 TestClient(int pid, sp<ResourceManagerService> service) 53 : mReclaimed(false), mPid(pid), mService(service) {} 136 // pid priority client type number 459 int pid; local 464 EXPECT_FALSE(mService->getLowestPriorityPid_l(type, &pid, &priority)); 468 EXPECT_TRUE(mService->getLowestPriorityPid_l(type, &pid, &priority)); 469 EXPECT_EQ(kTestPid1, pid); [all...] |
/frameworks/base/core/jni/ |
com_android_internal_os_Zygote.cpp | 83 pid_t pid; local 86 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) { 96 ALOGI("Process %d exited cleanly (%d)", pid, WEXITSTATUS(status)); 100 ALOGI("Process %d exited due to signal (%d)", pid, WTERMSIG(status)); 103 ALOGI("Process %d dumped core.", pid); 110 if (pid == gSystemServerPid) { 111 ALOGE("Exit zygote because system server (%d) has terminated", pid); 118 if (pid < 0 && errno != ECHILD) { 233 capheader.pid = 0; 421 pid_t pid = fork() local 588 pid_t pid = ForkAndSpecializeCommon(env, uid, gid, gids, local [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
MediaTestUtil.java | 79 String pid = poList2[1]; local 80 pidvalue = Integer.parseInt(pid); 81 Log.v(TAG, "PID = " + pidvalue);
|
/frameworks/base/services/core/java/com/android/server/am/ |
NativeCrashListener.java | 208 // first, the pid and signal number 216 int pid = unpackInt(buf, 0); local 219 Slog.v(TAG, "Read pid=" + pid + " signal=" + signal); 223 if (pid > 0) { 226 pr = mAm.mPidsSelfLocked.get(pid); 274 Slog.w(TAG, "Couldn't find ProcessRecord for pid " + pid); 277 Slog.e(TAG, "Bogus pid!");
|
/frameworks/native/opengl/libs/EGL/ |
Loader.cpp | 102 long pid = getpid(); local 104 snprintf(procPath, 128, "/proc/%ld/cmdline", pid);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
UsimDataDownloadHandler.java | 115 int pid = smsMessage.getProtocolIdentifier(); local 170 EVENT_SEND_ENVELOPE_RESPONSE, new int[]{ dcs, pid })); 199 private void sendSmsAckForEnvelopeResponse(IccIoResult response, int dcs, int pid) { 235 smsAckPdu[index++] = 0x07; // TP-PI: TP-PID, TP-DCS, TP-UDL present 241 smsAckPdu[index++] = 0x07; // TP-PI: TP-PID, TP-DCS, TP-UDL present 244 smsAckPdu[index++] = (byte) pid;
|
/hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/ |
loc_api_rpc_glue.c | 273 int pid = getpid(); local 276 loc_glue_callback_table[i].cb_id = i | (pid << 16);
|
/hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/ |
loc_api_rpc_glue.c | 273 int pid = getpid(); local 276 loc_glue_callback_table[i].cb_id = i | (pid << 16);
|
/hardware/qcom/gps/msm8974/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/ |
loc_api_rpc_glue.c | 273 int pid = getpid(); local 276 loc_glue_callback_table[i].cb_id = i | (pid << 16);
|
/hardware/ti/omap3/dspbridge/inc/ |
drv.h | 231 UINT pid; member in struct:PROCESS_CONTEXT
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
ProcessTest.java | 40 String pid = Integer.toString(Libcore.os.getpid()); local 42 String[] psCommand = onDevice ? new String[] { "ps", "--ppid", pid } 43 : new String[] { "ps", "S", "--ppid", pid };
|
/ndk/sources/android/libthread_db/gdb-6.6/ |
thread_db.h | 69 pid_t pid; member in struct:__anon27816 74 pid_t pid; member in struct:__anon27817
|
/ndk/sources/android/libthread_db/gdb-7.3.x/ |
thread_db.h | 74 pid_t pid; member in struct:__anon27828 80 pid_t pid; member in struct:__anon27829
|
/ndk/sources/android/libthread_db/gdb-7.6/ |
thread_db.h | 86 pid_t pid; member in struct:__anon27840 92 pid_t pid; member in struct:__anon27841
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
MemoryTracker.java | 41 public int pid; field in class:MemoryTracker.ProcessMemInfo 50 public ProcessMemInfo(int pid, String name, long start) { 51 this.pid = pid; 89 .putExtra("pid", android.os.Process.myPid()) 94 public ProcessMemInfo getMemInfo(int pid) { 95 return mData.get(pid); 102 public void startTrackingProcess(int pid, String name, long start) { 104 final Long lpid = Long.valueOf(pid); 111 mData.put(pid, new ProcessMemInfo(pid, name, start)) 136 final long pid = mPids.get(i).intValue(); local 150 final long pid = mPids.get(i).intValue(); local 194 final int pid = intent.getIntExtra("pid", -1); local [all...] |
/packages/apps/Messaging/src/com/android/messaging/util/ |
LogSaver.java | 44 * lines will include a timestamp, pid, tid, level, and tag. 133 int pid = Process.myPid(); local 139 pid, rec.mTid, rec.mLevelString, rec.mTag, rec.mMessage));
|
/packages/experimental/procstatlog/ |
procstatlog.c | 235 int pid = atoi(proc_entry->d_name); local 236 if (pid <= 0) continue; 239 while (bad_pos < bad_count && bad[bad_pos] < pid) ++bad_pos; 240 if (bad_pos < bad_count && bad[bad_pos] == pid) continue; 243 sprintf(filename, "/proc/%d/cmdline", pid); 266 while (pos > 0 && bad[pos - 1] > pid) { 270 bad[pos] = pid; 279 pids[pid_count++] = pid;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
agpgart.h | 85 __kernel_pid_t pid; /* pid of process */ member in struct:_agp_region
|
auto_fs4.h | 137 __u32 pid; member in struct:autofs_v5_packet
|
dlm_device.h | 58 __u32 pid; member in struct:dlm_purge_params
|