Searched refs:comm (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/os/
H A DParcelFileDescriptor.java249 final FileDescriptor[] comm = createCommSocketPair();
250 final ParcelFileDescriptor pfd = new ParcelFileDescriptor(fd, comm[0]);
252 queue.addOnFileDescriptorEventListener(comm[1],
413 final FileDescriptor[] comm = createCommSocketPair();
416 new ParcelFileDescriptor(fds[0], comm[0]),
417 new ParcelFileDescriptor(fds[1], comm[1]) };
465 final FileDescriptor[] comm = createCommSocketPair();
470 new ParcelFileDescriptor(fd0, comm[0]),
471 new ParcelFileDescriptor(fd1, comm[1]) };
764 private static Status readCommStatus(FileDescriptor comm, byt argument
[all...]
/frameworks/native/cmds/dumpstate/
H A Dutils.cpp154 // if no cmdline, a kernel thread has comm
155 snprintf(cmdpath, sizeof(cmdpath), "/proc/%d/comm", pid);
204 char comm[255]; local
213 snprintf(commpath, sizeof(commpath), "/proc/%d/comm", tid);
214 memset(comm, 0, sizeof(comm));
216 strcpy(comm, "N/A");
219 TEMP_FAILURE_RETRY(read(fd, comm, sizeof(comm) - 2));
222 c = strrchr(comm, '\
[all...]

Completed in 81 milliseconds