Searched refs:sChildProcess (Results 1 – 1 of 1) sorted by relevance
128 private static Process sChildProcess; field in CommandReceiver433 sChildProcess = Runtime.getRuntime().exec(cmdline); in doStartChildProcess()434 if (sChildProcess != null) { in doStartChildProcess()435 Log.i(TAG, "Forked child: " + sChildProcess); in doStartChildProcess()440 sChildProcess = null; in doStartChildProcess()464 sChildProcess.destroy(); in waitForChildProcessGone()470 if (sChildProcess != null && sChildProcess.isAlive()) { in waitForChildProcessGone()471 final boolean exit = sChildProcess.waitFor(timeout, TimeUnit.MILLISECONDS); in waitForChildProcessGone()473 Log.i(TAG, "Child process died: " + sChildProcess); in waitForChildProcessGone()476 Log.w(TAG, "Child process is still alive: " + sChildProcess); in waitForChildProcessGone()