Lines Matching full:process
27 // Unwinding another process, modelling debuggerd.
30 // We fork ourself to create the secondary process for remote unwinding.
80 // First do the in-process unwinding.
95 Process p = exec(secCmdLine);
100 throw new RuntimeException("Couldn't parse process");
103 // Wait until the forked process had time to run until its sleep phase.
114 System.out.println("Unwinding other process failed.");
117 // Kill the forked process if it is not already dead.
122 private static Process exec(String[] args) {
130 private static int getPid(Process p) {
133 if (s.startsWith("Process[pid=")) {
134 return Integer.parseInt(s.substring("Process[pid=".length(), s.indexOf(",")));