Home
last modified time | relevance | path

Searched refs:ZygoteState (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/os/
DProcess.java372 public static class ZygoteState { class in Process
380 private ZygoteState(LocalSocket socket, DataInputStream inputStream, in ZygoteState() method in Process.ZygoteState
388 public static ZygoteState connect(String socketAddress) throws IOException { in connect()
413 return new ZygoteState(zygoteSocket, zygoteInputStream, zygoteWriter, in connect()
439 static ZygoteState primaryZygoteState;
444 static ZygoteState secondaryZygoteState;
537 ZygoteState zygoteState, ArrayList<String> args) in zygoteSendArgsAndGetResult()
709 private static ZygoteState openZygoteSocketIfNeeded(String abi) throws ZygoteStartFailedEx { in openZygoteSocketIfNeeded()
712 primaryZygoteState = ZygoteState.connect(ZYGOTE_SOCKET); in openZygoteSocketIfNeeded()
725 secondaryZygoteState = ZygoteState.connect(SECONDARY_ZYGOTE_SOCKET); in openZygoteSocketIfNeeded()
/frameworks/base/core/java/com/android/internal/os/
DZygoteInit.java722 final Process.ZygoteState zs = Process.ZygoteState.connect(otherZygoteName); in waitForSecondaryZygote()