Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerShellCommandDataLoader.java65 int commandId; in getDataLoaderParamsArgs() local
81 commandId = sRandom.nextInt(Integer.MAX_VALUE - 1) + 1; in getDataLoaderParamsArgs()
82 } while (sShellCommands.contains(commandId)); in getDataLoaderParamsArgs()
84 sShellCommands.put(commandId, new WeakReference<>(shellCommand)); in getDataLoaderParamsArgs()
87 return SHELL_COMMAND_ID_PREFIX + commandId; in getDataLoaderParamsArgs()
303 final int commandId = extractShellCommandId(args); in lookupShellCommand() local
304 if (commandId == INVALID_SHELL_COMMAND_ID) { in lookupShellCommand()
310 shellCommandRef = sShellCommands.get(commandId, null); in lookupShellCommand()