Searched refs:pid (Results 76 - 89 of 89) sorted by relevance

1234

/system/core/libcorkscrew/
H A Dmap_info.c69 map_info_t* load_map_info_list(pid_t pid) { argument
71 snprintf(cmd, sizeof(cmd), "vmmap -w -resident -submap -allSplitLibs -interleaved %d", pid);
92 // Linux /proc/<pid>/maps lines:
/system/core/init/
H A Dbuiltins.c463 pid_t pid; local
480 pid = fork();
481 if (pid > 0) {
483 waitpid(pid, &status, 0);
489 } else if (pid == 0) {
H A Ddevices.c801 pid_t pid; local
811 pid = fork();
812 if (!pid) {
H A Dinit_parser.c442 struct service *service_find_by_pid(pid_t pid) argument
448 if (svc->pid == pid) {
H A Dproperty_service.c409 ERROR("sys_prop: Unable to %s service ctl [%s] uid:%d gid:%d pid:%d\n",
410 msg.name + 4, msg.value, cr.uid, cr.gid, cr.pid);
/system/core/adb/
H A Dusb_linux.c161 unsigned vid, pid; local
196 pid = device->idProduct;
197 DBGX("[ %s is V:%04x P:%04x ]\n", devname, vid, pid);
228 is_adb_interface(vid, pid, interface->bInterfaceClass,
H A Dadb.h452 int is_adb_interface(int vid, int pid, int usb_class, int usb_subclass, int usb_protocol);
H A Dcommandline.c129 " jdwp:<process pid> (remote only)\n"
562 pid_t pid;
582 pid = fork();
584 if (pid < 0) {
587 } else if (pid == 0) {
H A Dadb.c937 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
952 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
985 fprintf(stderr,"--- adb starting (pid %d) ---\n", getpid());
1134 pid_t pid = fork();
1135 if(pid < 0) return -1;
1137 if (pid == 0) {
/system/core/libsysutils/src/
H A DSocketClient.cpp40 mPid = creds.pid;
/system/core/sdcard/
H A Dfuse.h122 __u32 pid; /* tgid */ member in struct:fuse_file_lock
543 __u32 pid; member in struct:fuse_in_header
/system/core/libnl_2/genl/
H A Dgenl.c49 void *genlmsg_put(struct nl_msg *msg, uint32_t pid, uint32_t seq, int family, argument
/system/core/sh/
H A Deval.c230 TRACE(("pid %d, evaltree(%p: %d, %d) called\n",
849 pid_t pid; local
854 switch (pid = vfork()) {
888 (void)waitpid(pid, NULL, 0);
893 forkparent(jp, cmd, mode, pid);
/system/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp193 switch (pid_t pid = fork()) {

Completed in 200 milliseconds

1234