Searched refs:sChildProcess (Results 1 – 1 of 1) sorted by relevance
95 private static Process sChildProcess; field in CommandReceiver317 sChildProcess = Runtime.getRuntime().exec(cmdline); in doStartChildProcess()318 if (sChildProcess != null) { in doStartChildProcess()319 Log.i(TAG, "Forked child: " + sChildProcess); in doStartChildProcess()324 sChildProcess = null; in doStartChildProcess()348 sChildProcess.destroy(); in waitForChildProcessGone()354 if (sChildProcess != null && sChildProcess.isAlive()) { in waitForChildProcessGone()355 final boolean exit = sChildProcess.waitFor(timeout, TimeUnit.MILLISECONDS); in waitForChildProcessGone()357 Log.i(TAG, "Child process died: " + sChildProcess); in waitForChildProcessGone()360 Log.w(TAG, "Child process is still alive: " + sChildProcess); in waitForChildProcessGone()