HomeSort by relevance Sort by last modified time
    Searched defs:pid (Results 676 - 700 of 1289) sorted by null

<<21222324252627282930>>

  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/inc/
mm_jpeg.h 146 pthread_t pid; /* job cmd thread ID */ member in struct:__anon2938
  /device/lge/hammerhead/camera/QCamera2/stack/mm-jpeg-interface/inc/
mm_jpeg.h 148 pthread_t pid; /* job cmd thread ID */ member in struct:__anon3443
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 748 int pid = REAL(fork)(); local
749 if (common_flags()->coverage) CovAfterFork(pid);
750 return pid;
  /external/deqp/framework/delibs/deutil/
deProcess.c 55 pid_t pid; member in struct:deProcess_s
157 process->pid = 0;
217 pid_t pid = 0; local
246 pid = fork();
248 if (pid < 0)
260 if (pid == 0)
331 waitpid(pid, &result, 0);
343 process->pid = pid;
374 if (waitpid(process->pid, &status, WNOHANG) == 0
    [all...]
  /external/dhcpcd/
configure.c 70 pid_t pid; local
79 switch (pid = vfork()) {
94 return pid;
200 snprintf(env[2], e, "pid=%d", getpid());
346 pid_t pid; local
374 pid = exec_script(argv, env);
375 if (pid == -1)
377 else if (pid != 0) {
379 while (waitpid(pid, &status, 0) == -1) {
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 490 pid_t pid; local
510 if ((pid = fork()) == 0) {
516 (void) waitpid(pid, 0, 0);
  /external/google-breakpad/src/client/linux/handler/
exception_handler.cc 387 pid_t pid; // the crashing process member in struct:google_breakpad::ThreadArgument
404 return thread_arg->handler->DoDump(thread_arg->pid, thread_arg->context,
485 thread_arg.pid = getpid();
490 // kernels, but we need to know the PID of the cloned process before we
  /external/iproute2/misc/
ifstat.c 514 pid_t pid; local
517 } else if ((pid = fork()) != 0) {
518 if (pid>0)
nstat.c 399 pid_t pid; local
402 } else if ((pid = fork()) != 0) {
403 if (pid>0)
rtacct.c 393 pid_t pid; local
396 } else if ((pid = fork()) != 0) {
397 if (pid>0)
  /external/iputils/ninfod/
ni_ifaddrs.c 170 pid_t pid = getpid(); local
189 if (nh->nlmsg_pid != pid || nh->nlmsg_seq != seq)
322 pid_t pid = getpid(); local
400 if (nlh->nlmsg_pid != pid || nlh->nlmsg_seq != nlm->seq)
ninfod.c 459 pid_t pid; local
464 if (fscanf(fp, "%d", &pid) != 1) {
465 DEBUG(LOG_ERR, "pid file '%s' exists, but read failed.\n",
468 DEBUG(LOG_ERR, "pid file '%s' exists : %d\n",
469 opt_p, pid);
  /external/iputils/
rarpd.c 668 pid_t pid = fork(); local
670 if (pid > 0)
672 else if (pid == -1) {
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 157 __kernel_pid_t pid; member in struct:f_owner_ex
  /external/kernel-headers/original/uapi/linux/
capability.h 42 int pid; member in struct:__user_cap_header_struct
150 * Transfer any capability in your permitted set to any pid,
151 * remove any capability in your permitted set from any pid
  /external/kernel-headers/original/uapi/linux/dvb/
dmx.h 100 __u16 pid; member in struct:dmx_sct_filter_params
113 __u16 pid; member in struct:dmx_pes_filter_params
  /external/kernel-headers/original/uapi/rdma/
rdma_netlink.h 50 __s32 pid; member in struct:rdma_cm_id_stats
  /external/libdrm/freedreno/kgsl/
kgsl_drm.h 173 uint32_t pid; member in struct:drm_kgsl_gem_lock_handles
  /external/libedit/src/
vi.c 1005 pid_t pid; local
1036 pid = fork();
1037 switch (pid) {
1046 while (waitpid(pid, &status, 0) != pid)
  /external/libvncserver/x11vnc/
inet.c 286 { pid_t pid, pidw; local
288 if ((pid = fork()) > 0) {
290 pidw = waitpid(pid, &rc, WNOHANG);
293 pidw = waitpid(pid, &rc, WNOHANG);
298 kill(pid, SIGTERM);
300 waitpid(pid, &rc2, WNOHANG);
309 } else if (pid == -1) {
  /external/linux-tools-perf/src/tools/perf/util/
event.c 40 .pid = -1,
48 static pid_t perf_event__get_comm_tgid(pid_t pid, char *comm, size_t len)
56 snprintf(filename, sizeof(filename), "/proc/%d/status", pid);
95 union perf_event *event, pid_t pid,
108 tgid = perf_event__get_comm_tgid(pid, event->comm.comm,
113 event->comm.pid = tgid;
123 event->comm.tid = pid;
131 snprintf(filename, sizeof(filename), "/proc/%d/task", pid);
141 pid = strtol(dirent.d_name, &end, 10);
146 (void) perf_event__get_comm_tgid(pid, event->comm.comm
400 pid_t pid = strtol(dirent.d_name, &end, 10); local
    [all...]
  /external/lldb/source/Commands/
CommandObjectPlatform.cpp 489 "List processes on a remote platform by name, pid, or many other matching attributes.",
532 lldb::pid_t pid = m_options.match_info.GetProcessInfo().GetProcessID(); local
533 if (pid != LLDB_INVALID_PROCESS_ID)
536 if (platform_sp->GetProcessInfo (pid, proc_info))
544 result.AppendErrorWithFormat ("no process found with pid = %" PRIu64 "\n", pid);
747 { LLDB_OPT_SET_1 , false, "pid" , 'p', required_argument, NULL, 0, eArgTypePid , "List the process info for a specific process ID." },
774 "platform process info <pid> [<pid> <pid> ...]"
825 lldb::pid_t pid = Args::StringToUInt32 (arg, LLDB_INVALID_PROCESS_ID, 0, &success); local
    [all...]
  /external/lldb/source/Host/linux/
Host.cpp 51 // Get the process info with additional information from /proc/$PID/stat (like process state, and tracer pid).
52 static bool GetProcessAndStatInfo (lldb::pid_t pid, ProcessInstanceInfo &process_info, ProcessStatInfo &stat_info, lldb::pid_t &tracerpid);
59 ReadProcPseudoFile (lldb::pid_t pid, const char *name)
73 if (snprintf (path, PATH_MAX, "/proc/%" PRIu64 "/%s", pid, name) > 0)
111 ReadProcPseudoFileStat (lldb::pid_t pid, ProcessStatInfo& stat_info)
113 // Read the /proc/$PID/stat file.
114 lldb::DataBufferSP buf_sp = ReadProcPseudoFile (pid, "stat");
116 // The filename of the executable is stored in parenthesis right after the pid. We look for the closing
158 GetLinuxProcessUserAndGroup (lldb::pid_t pid, ProcessInstanceInfo &process_info, lldb::pid_t &tracerpid
262 lldb::pid_t pid = atoi (direntry->d_name); local
    [all...]
  /external/ltrace/
handle_event.c 90 debug(DEBUG_FUNCTION, "handle_event(pid=%d, type=%d)",
91 event->proc ? event->proc->pid : -1, event->type);
122 event->proc->pid,
131 event->proc->pid,
139 event->proc->pid,
148 event->proc->pid,
157 event->proc->pid,
166 event->proc->pid,
175 event->proc->pid,
185 event->proc->pid, event->e_un.newpid)
216 pid_t pid; member in struct:Pending_New
580 pid_t pid = proc->pid; local
    [all...]
  /external/openssh/openbsd-compat/
bsd-cray.c 203 int pid; /* process ID */ local
249 pid = getpid();
590 sr = setlimits(username, C_PROC, pid, UDBRC_INTER);
691 cray_retain_utmp(struct utmp *ut, int pid)
699 if (pid == utmp.ut_pid) {

Completed in 603 milliseconds

<<21222324252627282930>>