Searched defs:pid (Results 1 – 7 of 7) sorted by relevance
| /libcore/luni/src/main/java/android/system/ |
| D | StructUcred.java | 28 public final int pid; field in StructUcred 36 public StructUcred(int pid, int uid, int gid) { in StructUcred()
|
| D | Os.java | 230 …public static void kill(int pid, int signal) throws ErrnoException { Libcore.os.kill(pid, signal);… in kill() 509 …public static int waitpid(int pid, MutableInt status, int options) throws ErrnoException { return … in waitpid()
|
| /libcore/luni/src/main/java/java/lang/ |
| D | ProcessManager.java | 86 int pid = Libcore.os.waitpid(0, status, 0); in watchChildren() local 120 private void onExit(int pid, int exitValue) { in onExit() 207 int pid; in exec() local 233 private final int pid; field in ProcessManager.ProcessImpl 247 ProcessImpl(int pid, FileDescriptor in, FileDescriptor out, FileDescriptor err) { in ProcessImpl()
|
| /libcore/luni/src/main/java/libcore/io/ |
| D | Os.java | 93 public void kill(int pid, int signal) throws ErrnoException; in kill() 156 public int waitpid(int pid, MutableInt status, int options) throws ErrnoException; in waitpid()
|
| D | ForwardingOs.java | 101 public void kill(int pid, int signal) throws ErrnoException { os.kill(pid, signal); } in kill() 163 …public int waitpid(int pid, MutableInt status, int options) throws ErrnoException { return os.wait… in waitpid()
|
| D | Posix.java | 95 public native void kill(int pid, int signal) throws ErrnoException; in kill() 243 public native int waitpid(int pid, MutableInt status, int options) throws ErrnoException; in waitpid()
|
| /libcore/luni/src/main/native/ |
| D | libcore_io_Posix.cpp | 936 static void Posix_kill(JNIEnv* env, jobject, jint pid, jint sig) { in Posix_kill() 1508 static jint Posix_waitpid(JNIEnv* env, jobject, jint pid, jobject javaStatus, jint options) { in Posix_waitpid()
|