HomeSort by relevance Sort by last modified time
    Searched refs:niceName (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/com/android/internal/os/
WrapperInit.java 92 * @param niceName The nice name for the application, or null if none.
97 public static void execApplication(String invokeWith, String niceName,
101 if (niceName != null) {
102 command.append(" '--nice-name=").append(niceName).append("'");
Zygote.java 76 * @param niceName null-ok a string specifying the process name.
88 int[][] rlimits, int mountExternal, String seInfo, String niceName, int[] fdsToClose,
94 uid, gid, gids, debugFlags, rlimits, mountExternal, seInfo, niceName, fdsToClose,
103 int[][] rlimits, int mountExternal, String seInfo, String niceName, int[] fdsToClose,
ZygoteConnection.java 248 parsedArgs.niceName, fdsToClose, parsedArgs.instructionSet,
374 String niceName;
557 if (niceName != null) {
561 niceName = arg.substring(arg.indexOf('=') + 1);
841 if (args.invokeWith == null && args.niceName != null) {
842 if (args.niceName != null) {
843 String property = "wrap." + args.niceName;
    [all...]
ZygoteInit.java 507 if (parsedArgs.niceName != null) {
508 Process.setArgV0(parsedArgs.niceName);
529 parsedArgs.niceName, parsedArgs.targetSdkVersion,
  /frameworks/base/cmds/app_process/
app_main.cpp 242 String8 niceName;
250 niceName = ZYGOTE_NICE_NAME;
256 niceName.setTo(arg + 12);
301 if (!niceName.isEmpty()) {
302 runtime.setArgv0(niceName.string());
303 set_process_name(niceName.string());
  /frameworks/base/core/java/android/os/
Process.java 456 * <p>The niceName parameter, if not an empty string, is a custom name to
463 * @param niceName A more readable name to use for the process.
481 final String niceName,
491 return startViaZygote(processClass, niceName, uid, gid, gids,
587 * @param niceName 'nice' process name to appear in ps
603 final String niceName,
663 if (niceName != null) {
664 argsForZygote.add("--nice-name=" + niceName);
    [all...]

Completed in 69 milliseconds