Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerShellCommandDataLoader.java68 int commandId; in getDataLoaderParamsArgs() local
84 commandId = sRandom.nextInt(Integer.MAX_VALUE - 1) + 1; in getDataLoaderParamsArgs()
85 } while (sShellCommands.contains(commandId)); in getDataLoaderParamsArgs()
87 sShellCommands.put(commandId, new WeakReference<>(shellCommand)); in getDataLoaderParamsArgs()
90 return SHELL_COMMAND_ID_PREFIX + commandId; in getDataLoaderParamsArgs()
360 final int commandId = extractShellCommandId(args); in lookupShellCommand() local
361 if (commandId == INVALID_SHELL_COMMAND_ID) { in lookupShellCommand()
367 shellCommandRef = sShellCommands.get(commandId, null); in lookupShellCommand()