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

1 2 3 45 6 7 8 91011>>

  /external/qemu/memcheck/
memcheck_proc_management.c 97 * pid - Process ID of the process that's being created.
103 create_new_process(uint32_t pid, uint32_t parent_pid)
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);
    [all...]
memcheck.h 51 * pid - ID of the process in context of which libc.so has been initialized.
53 void memcheck_guest_libc_initialized(uint32_t pid);
102 /* Handles PID initialization event.
106 * pid - ID of the process that is being initialized. This value will also be
109 void memcheck_init_pid(uint32_t pid);
  /system/core/libcutils/
mq.c 50 pid_t pid; member in struct:__anon15932
59 typedef void DeathListener(pid_t pid);
129 /** This peer's PID. */
130 pid_t pid; member in struct:__anon15938
133 * Map from pid to peer proxy. The peer has a peer proxy for each remote
195 * which the peer has been connected to. Maps pid to PeerProxy. Helps
231 pid_t* pid = (pid_t*) key; local
232 return (int) (*pid);
348 static bool peerIsDead(Peer* peer, pid_t pid) {
355 if (deadPeer == pid) {
389 pid_t pid = peerProxy->credentials.pid; local
685 pid_t pid = header->credentials.pid; local
898 pid_t pid = header->credentials.pid; local
1019 pid_t* pid = &(peerProxy->credentials.pid); local
    [all...]
  /external/clearsilver/util/
filter.c 21 NEOERR *filter_wait (pid_t pid, int options, int *exitcode)
26 rpid = waitpid (pid, &r, options);
52 pid, options, rpid, r);
56 pid_t *pid)
61 *pid = 0;
171 *pid = rpid;
177 pid_t *pid)
187 nerr = filter_create_fd(cmd, pfdin, pfdout, pfderr, pid);
  /external/dropbear/debian/
dropbear.init 34 start-stop-daemon --start --quiet --pidfile /var/run/"$NAME".pid \
41 start-stop-daemon --stop --quiet --oknodo --pidfile /var/run/"$NAME".pid
47 start-stop-daemon --stop --quiet --oknodo --pidfile /var/run/"$NAME".pid
49 start-stop-daemon --start --quiet --pidfile /var/run/"$NAME".pid \
  /external/oprofile/libutil/
op_lockfile.c 3 * PID-based lockfile management
47 pid_t pid = op_read_lock_file(file); local
50 if (kill(pid, 0)) {
  /external/webkit/WebKitTools/Scripts/
parallelcl 121 my $pid;
124 ($pid, $tmpFile) = forkAndCompileFiles(@{$job}, $options);
126 print STDERR "####### Spawned child with PID $pid and tmpFile $tmpFile ##########\n" if $debug;
127 push(@children, $pid);
170 my $pid = fork();
171 die "Fork failed" unless defined($pid);
173 unless ($pid) {
185 return ($pid, $tmpFile);
206 print STDERR "######## Child with PID $deceased finished ###########\n" if $debug
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
IBatteryStats.aidl 26 void noteStartWakelock(int uid, int pid, String name, int type);
27 void noteStopWakelock(int uid, int pid, String name, int type);
37 void noteStartWakelockFromSource(in WorkSource ws, int pid, String name, int type);
38 void noteStopWakelockFromSource(in WorkSource ws, int pid, String name, int type);
  /frameworks/base/cmds/dumpstate/
utils.c 51 int pid; local
56 if (!(pid = atoi(de->d_name))) {
60 sprintf(cmdpath,"/proc/%d/cmdline", pid);
68 func(pid, cmdline);
74 void show_wchan(int pid, const char *name) {
81 sprintf(path, "/proc/%d/wchan", pid);
92 printf("%-7d %-32s %s\n", pid, name, buffer);
144 pid_t pid = fork(); local
147 if (pid < 0) {
149 return pid;
380 int pid = atoi(d->d_name); local
    [all...]
  /development/ndk/platforms/android-3/include/
sched.h 52 extern int sched_rr_get_interval(pid_t pid, struct timespec *tp);
  /frameworks/base/include/binder/
IPermissionController.h 33 int32_t pid, int32_t uid) = 0;
  /frameworks/base/media/libmedia/
IMediaPlayerService.cpp 49 virtual sp<IMediaMetadataRetriever> createMetadataRetriever(pid_t pid)
53 data.writeInt32(pid);
59 pid_t pid, const sp<IMediaPlayerClient>& client,
63 data.writeInt32(pid);
84 virtual sp<IMediaRecorder> createMediaRecorder(pid_t pid)
88 data.writeInt32(pid);
93 virtual sp<IMediaPlayer> create(pid_t pid, const sp<IMediaPlayerClient>& client, int fd,
98 data.writeInt32(pid);
154 pid_t pid = data.readInt32(); local
169 pid, client, url, numHeaders > 0 ? &headers : NULL, audioSessionId)
176 pid_t pid = data.readInt32(); local
217 pid_t pid = data.readInt32(); local
224 pid_t pid = data.readInt32(); local
    [all...]
  /sdk/eclipse/scripts/
setup_eclipse.sh 60 echo "*** Eclipse started in background with PID $ECLIPSE_PID"
61 echo "$ECLIPSE_PID" > "$BASE_DIR"/eclipse.pid
  /sdk/emulator/qtools/
q2g.cpp 59 gtrace->WriteFirstHeader(qheader->start_sec, event.pid);
84 event.pid);
90 gtrace->AddProcEntry(sym->filenum, sym->procnum, event.time, event.pid);
100 ignored.pid);
read_method.cpp 102 if (!IsValidPid(proc->pid))
107 method_record.time, proc->pid, method_record.addr,
111 method_record.time, proc->pid, method_record.addr,
116 Stack *pStack = stacks[proc->pid];
121 stacks[proc->pid] = pStack;
  /dalvik/dvz/
dvz.c 31 // pid of child process
41 static void post_run_func (int pid) {
47 g_pid = pid;
55 spawned_pgid = getpgid(pid);
  /external/chromium/base/
wmi_util_unittest.cc 50 int pid = 0; local
51 bool result = WMIProcessUtil::Launch(L"cmd.exe /c echo excelent!", &pid);
53 EXPECT_GT(pid, 0);
process_util_posix.cc 109 bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle) {
112 *handle = pid;
116 bool OpenPrivilegedProcessHandle(ProcessId pid, ProcessHandle* handle) {
119 return OpenProcessHandle(pid, handle);
146 pid_t pid = HANDLE_EINTR(waitpid(process_id, NULL, WNOHANG)); local
147 if (pid == process_id) {
315 // return a valid pid. If IPC fails in the child, the parent will have to wait
318 pid_t pid = fork(); local
319 switch (pid) {
321 return pid;
378 pid_t pid; local
632 pid_t pid; local
    [all...]
  /external/e2fsprogs/lib/
fpopen.c 43 pid_t pid; local
96 if ((pid = fork()) < 0) {
99 } else if (pid == 0) {
  /external/openssl/crypto/rand/
rand_vms.c 88 long pid, iosb[2]; local
122 pid = -1; /* search context */
123 while ((status = sys$getjpiw(0, &pid, 0, item, iosb, 0, 0))
  /external/dbus/bus/
dir-watch-kqueue.c 58 pid_t pid; local
68 pid = getpid ();
70 (void) kill (pid, SIGHUP);
81 pid = getpid ();
83 (void) kill (pid, SIGHUP);
  /system/core/adb/
jdwp_service.c 22 | hello I'm in process <pid> |
35 equivalent to "adb forward tcp:<hostport> jdwp:<pid>"
37 "jdwp:<pid>" is a new forward destination format used to target
92 /** JDWP PID List Support Code
93 ** for each JDWP process, we record its pid and its connected socket
107 int pid; member in struct:JdwpProcess
111 char in_buff[4]; /* input character to read PID */
131 if (proc->pid < 0)
134 len = snprintf(p, end-p, "%d\n", proc->pid);
176 proc->pid = -1
    [all...]
  /external/kernel-headers/original/linux/
netlink.h 167 __u32 pid; member in struct:netlink_skb_parms
194 extern int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 pid, int nonblock);
195 extern int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, __u32 pid,
197 extern void netlink_set_err(struct sock *ssk, __u32 pid, __u32 group, int code);
237 int pid; member in struct:netlink_notify
242 __nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags)
251 nlh->nlmsg_pid = pid;
258 #define NLMSG_NEW(skb, pid, seq, type, len, flags) \
261 __nlmsg_put(skb, pid, seq, type, len, flags); })
263 #define NLMSG_PUT(skb, pid, seq, type, len)
    [all...]
  /bionic/libthread_db/
libthread_db.c 48 agent->pid = ps_getpid(proc_handle);
89 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)0 /* r0 */, NULL);
90 gEventMsgHandle.tid = gEventMsgHandle.pid;
125 th->pid = ps_getpid(agent->ph);
136 info->ti_state = TD_THR_SLEEP; /* XXX this needs to be read from /proc/<pid>/task/<tid>.
196 snprintf(path, sizeof(path), "/proc/%d/task/", agent->pid);
202 handle.pid = agent->pid;
  /external/strace/
syscall.c 795 int pid = tcp->pid; local
820 if (upeek(pid, PT_GPR2, &syscall_mode) < 0)
840 if (upeek(pid, PT_PSWADDR, &pc) < 0)
843 opcode = ptrace(PTRACE_PEEKTEXT, pid, (char *)(pc-sizeof(long)), 0);
874 if (offset_reg && (upeek(pid, gpr_offset[offset_reg], &tmp) < 0))
880 if (offset_reg && (upeek(pid, gpr_offset[offset_reg], &tmp) < 0))
884 scno = ptrace(PTRACE_PEEKTEXT, pid, svc_addr, 0);
894 if (offset_reg && (upeek(pid, gpr_offset[offset_reg], &tmp) < 0))
901 if (upeek(pid, sizeof(unsigned long)*PT_R0, &scno) < 0
1307 int pid = tcp->pid; local
1885 int pid = tcp->pid; local
    [all...]

Completed in 694 milliseconds

1 2 3 45 6 7 8 91011>>