Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/com/android/internal/os/
H A DZygote.java716 static @Nullable Runnable forkSimpleApps(@NonNull ZygoteCommandBuffer argBuffer, in forkSimpleApps() argument
722 argBuffer.forkRepeatedly(zygoteSocket, expectedUid, minUid, firstNiceName); in forkSimpleApps()
724 return childMain(argBuffer, /*usapPoolSocket=*/null, /*writePipe=*/null); in forkSimpleApps()
740 private static Runnable childMain(@Nullable ZygoteCommandBuffer argBuffer, in childMain() argument
749 if (argBuffer == null) { in childMain()
789 args = ZygoteArguments.getInstance(argBuffer); in childMain()
811 if (argBuffer == null) { in childMain()
H A DZygoteConnection.java120 try (ZygoteCommandBuffer argBuffer = new ZygoteCommandBuffer(mSocket)) { in processCommand() argument
123 parsedArgs = ZygoteArguments.getInstance(argBuffer); in processCommand()
287 Runnable result = Zygote.forkSimpleApps(argBuffer, in processCommand()