Searched refs:pid (Results 1 - 25 of 216) sorted by relevance

123456789

/external/dnsmasq/contrib/dnsmasq_MacOSX/
H A DDNSmasq11 pid=`GetPID dnsmasq`
13 kill $pid
/external/strace/
H A Dstrace-graph44 my ($pid, $call, $args, $result, $time);
48 $pid = $1;
62 $unfinished{$pid} = $_;
67 unless (exists $unfinished{$pid}) {
71 $_ = $unfinished{$pid} . $_;
72 delete $unfinished{$pid};
76 # $pid received signal $1
82 # $pid received signal $1
83 handle_killed($pid, $time);
93 handle_trace($pid,
[all...]
H A Dstrace.c121 int pid; member in struct:proc_pollfd
143 [-p pid] ... [-s strsize] [-u username] [-E var=val] ...\n\
161 -p pid -- trace process with process id PID, may be repeated\n\
191 int c, pid = 0; local
273 if ((pid = atoi(optarg)) <= 0) {
278 if (pid == getpid()) {
282 if ((tcp = alloctcb(pid)) == NULL) {
424 sprintf(procdir, "/proc/%d/task", tcp->pid);
441 else if (tid != tcbtab[c]->pid) {
470 tcp->pid, nti
1387 int pid; local
2008 int pid; local
[all...]
/external/bluetooth/glib/tests/
H A Dchild-test.c57 GPid pid; local
76 pid = pi.hProcess;
78 return pid;
80 pid = fork ();
81 if (pid < 0)
84 if (pid > 0)
85 return pid;
93 child_watch_callback (GPid pid, gint status, gpointer data) argument
98 g_print ("child " GPID_FORMAT " (ttl %d) exited, status %d\n", pid, ttl, status);
101 g_spawn_close_pid (pid);
125 GPid pid; local
150 GPid pid; local
[all...]
/external/dhcpcd/dhcpcd-hooks/
H A D50-yp.conf6 [ -s /var/run/ypbind.pid ] && cat /var/run/ypbind.pid
12 local cf=/etc/yp.conf."${interface}" prefix= x= pid=
30 pid="$(ypbind_pid)"
31 if [ -n "${pid}" ]; then
32 kill -HUP "${pid}"
40 local pid="$(ypbind_pid)"
41 if [ -n "${pid}" ]; then
42 kill -HUP "${pid}"
/external/elfutils/src/
H A DMakefile.am115 bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \
123 $(DESTDIR)$(bindir)/$$f $$opt > c$${pid}_.out 2> c$${pid}_.err \
124 && test -n "`cat c$${pid}_.out`" \
125 && test -z "`cat c$${pid}_.err`"; then :; \
128 done; rm -f c$${pid}_.???; exit $$bad
/external/clearsilver/util/
H A Dfilter.h31 * Input: pid -> the process identifier to wait for
36 NEOERR *filter_wait(pid_t pid, int options, int *exitcode);
62 * pid -> the pid of the sub process
66 pid_t *pid);
84 * pid -> the pid of the sub process
88 pid_t *pid);
/external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/
H A DMakefile13 kill `cat twistd.pid`
16 kill -HUP `cat twistd.pid`
/external/bluetooth/hcidump/parser/
H A Dhcrp.c39 static char *pid2str(uint16_t pid) argument
41 switch (pid) {
85 uint16_t pid, tid, plen, status; local
88 pid = get_u16(frm);
95 pid2str(pid), frm->in ? "rsp" : "cmd", tid, plen);
103 if (pid == 0x0001 && !frm->in) {
109 if (pid == 0x0002 && frm->in) {
/external/blktrace/btt/
H A Dproc.c30 __u32 pid; member in union:pn_info::__anon33
65 struct p_info * __find_process_pid(__u32 pid) argument
72 if (pid < this->u.pid)
74 else if (pid > this->u.pid)
103 static void insert_pid(struct p_info *that, __u32 pid) argument
113 if (pid < this->u.pid)
115 else if (pid > thi
168 find_process(__u32 pid, char *name) argument
207 process_alloc(__u32 pid, char *name) argument
[all...]
/external/bluetooth/glib/gio/inotify/
H A Dinotify-diag.c42 pid_t pid; local
46 pid = getpid ();
48 fname = g_strdup_printf ("/tmp/gvfsid.%d", pid);
/external/qemu/hw/
H A Dgoldfish_nand.h21 int pid; member in struct:__anon4881
H A Dgoldfish_trace.h67 extern void trace_switch(int pid);
68 extern void trace_fork(int tgid, int pid);
69 extern void trace_clone(int tgid, int pid);
77 extern void trace_init_name(int tgid, int pid, const char *name);
/external/bison/lib/
H A Dsubpipe.c114 pid_t pid; local
125 pid = vfork ();
126 if (pid < 0)
130 if (! pid)
151 return pid;
158 reap_subpipe (pid_t pid, char const *program) argument
162 if (waitpid (pid, &wstatus, 0) < 0)
183 end_of_output_subpipe (pid_t pid ATTRIBUTE_UNUSED,
/external/dbus/tools/
H A Ddbus-launch.h53 int x11_get_address (char **paddress, pid_t *pid, long *wid);
54 int x11_save_address (char *address, pid_t pid, long *wid);
/external/webkit/WebKitTools/DumpRenderTree/mac/PerlSupport/
H A DDumpRenderTreeSupport.c28 int processIsCrashing(int pid) argument
30 int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, pid };
/external/dropbear/
H A Dchansession.h43 pid_t pid; /* child process pid */ member in struct:ChanSess
71 pid_t pid; member in struct:ChildPid
H A Dcli-authpasswd.c48 pid_t pid; local
67 pid = fork();
69 if (pid < 0) {
74 if (!pid) {
101 while (waitpid(pid, &status, 0) < 0 && errno == EINTR)
/external/oprofile/libop/
H A Dop_interface.h36 u32 pid; /**< 32 bits can hold any pid */ member in struct:op_sample
37 u32 tgid; /**< always equal to pid for kernel < 2.4.0 */
68 unsigned int pid; member in struct:op_note
/external/bluetooth/bluez/compat/
H A Ddun.c122 static int find_pppd(int id, pid_t *pid) argument
138 *pid = 0;
144 *pid = atoi(de->d_name);
154 return *pid != 0;
159 int pid = fork(); local
162 switch (pid) {
170 return pid;
246 pid_t pid; local
253 if (find_pppd(di->id, &pid)) {
257 printf("rfcomm%d: %s channel %d pppd pid
267 pid_t pid; local
310 int pid; local
[all...]
/external/e2fsprogs/misc/
H A Duuidd.rc18 PIDFILE=/var/run/uuidd/uuidd.pid
41 if test -f /var/run/uuidd.pid; then exit 2; fi
/external/iptables/include/linux/netfilter_ipv6/
H A Dip6t_owner.h13 pid_t pid; member in struct:ip6t_owner_info
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_owner.h14 pid_t pid; member in struct:ipt_owner_info
/external/kernel-headers/original/linux/netfilter_ipv6/
H A Dip6t_owner.h13 pid_t pid; member in struct:ip6t_owner_info
/external/qemu/memcheck/
H A Dmemcheck_proc_management.c97 * pid - Process ID of the process that's being created.
103 create_new_process(uint32_t pid, uint32_t parent_pid) argument
114 new_proc->pid = pid;
127 ME("memcheck: Unable to get parent process pid=%u for new process pid=%u",
128 parent_pid, pid);
139 ME("memcheck: Unable to copy process' %s[pid=%u] allocation map to new process pid=%u",
140 parent->image_path, parent_pid, pid);
321 get_process_from_pid(uint32_t pid) argument
[all...]

Completed in 237 milliseconds

123456789