Searched defs:niceName (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/
H A DWrapperInit.java95 * @param niceName The nice name for the application, or null if none.
100 public static void execApplication(String invokeWith, String niceName, argument
104 if (niceName != null) {
105 command.append(" '--nice-name=").append(niceName).append("'");
H A DZygoteConnection.java237 parsedArgs.niceName);
356 String niceName; field in class:ZygoteConnection.Arguments
525 if (niceName != null) {
529 niceName = arg.substring(arg.indexOf('=') + 1);
868 if (args.invokeWith == null && args.niceName != null) {
869 if (args.niceName != null) {
870 String property = "wrap." + args.niceName;
932 if (parsedArgs.niceName != null) {
933 Process.setArgV0(parsedArgs.niceName);
939 parsedArgs.niceName, parsedArg
[all...]
/frameworks/base/cmds/app_process/
H A Dapp_main.cpp160 const char* niceName = NULL; local
168 niceName = "zygote";
174 niceName = arg + 12;
181 if (niceName && *niceName) {
182 setArgv0(argv0, niceName);
183 set_process_name(niceName);
/frameworks/base/core/java/android/os/
H A DProcess.java369 * <p>The niceName parameter, if not an empty string, is a custom name to
376 * @param niceName A more readable name to use for the process.
391 final String niceName,
398 return startViaZygote(processClass, niceName, uid, gid, gids,
555 * @param niceName 'nice' process name to appear in ps
568 final String niceName,
625 if (niceName != null) {
626 argsForZygote.add("--nice-name=" + niceName);
390 start(final String processClass, final String niceName, int uid, int gid, int[] gids, int debugFlags, int mountExternal, int targetSdkVersion, String seInfo, String[] zygoteArgs) argument
567 startViaZygote(final String processClass, final String niceName, final int uid, final int gid, final int[] gids, int debugFlags, int mountExternal, int targetSdkVersion, String seInfo, String[] extraArgs) argument

Completed in 212 milliseconds