Searched refs:processClass (Results 1 - 6 of 6) sorted by relevance

/frameworks/support/lifecycle/compiler/src/tests/kotlin/androidx/lifecycle/
H A DValidCasesTest.kt20 import androidx.lifecycle.utils.processClass
35 processClass("foo.Bar").compilesWithoutError()
40 processClass("foo.OnAnyMethod").compilesWithoutError().and().generatesSources(
47 processClass("foo.InheritanceOk1").compilesWithoutError()
52 processClass("foo.InheritanceOk2").compilesWithoutError().and().generatesSources(
62 processClass("foo.InheritanceOk3").compilesWithoutError().and().generatesSources(
72 processClass("NoPackageOk").compilesWithoutError()
77 processClass("foo.InterfaceOk1").compilesWithoutError()
82 processClass("foo.InterfaceOk2").compilesWithoutError().and().generatesSources(
94 processClass("fo
[all...]
H A DInvalidCasesTest.kt19 import androidx.lifecycle.utils.processClass
47 processClass(name).failsToCompile().withErrorContaining(errorMsg)
/frameworks/support/lifecycle/compiler/src/tests/kotlin/androidx/lifecycle/utils/
H A DTestUtils.kt34 fun processClass(className: String, vararg fullClassNames: String): CompileTester {
/frameworks/base/core/java/android/os/
H A DProcess.java444 * static main() function of a <var>processClass</var> is executed there.
448 * process is created and main() of <var>processClass</var> called there.
451 * give to the process instead of using processClass. This allows you to
453 * <var>processClass</var> to start them.
459 * @param processClass The class to use as the process's main entry
479 public static final ProcessStartResult start(final String processClass, argument
490 return zygoteProcess.start(processClass, niceName, uid, gid, gids,
496 public static final ProcessStartResult startWebView(final String processClass, argument
507 return WebViewZygote.getProcess().start(processClass, niceName, uid, gid, gids,
H A DZygoteProcess.java187 * static main() function of a <var>processClass</var> is executed there.
194 * give to the process instead of using processClass. This allows you to
196 * <var>processClass</var> to start them.
202 * @param processClass The class to use as the process's main entry
220 public final Process.ProcessStartResult start(final String processClass, argument
232 return startViaZygote(processClass, niceName, uid, gid, gids,
339 * @param processClass Class name whose static main() to run
357 private Process.ProcessStartResult startViaZygote(final String processClass, argument
429 argsForZygote.add(processClass);
689 public ChildZygoteProcess startChildZygote(final String processClass, argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java15486 final String dropboxTag = processClass(process) + "_strictmode";
15663 private static String processClass(ProcessRecord process) { method in class:ActivityManagerService
15700 final String dropboxTag = processClass(process) + "_" + eventType;
[all...]

Completed in 73 milliseconds