Home
last modified time | relevance | path

Searched refs:shellCommand (Results 1 – 25 of 33) sorted by relevance

12

/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerShellCommandDataLoader.java65 private static String getDataLoaderParamsArgs(ShellCommand shellCommand) { in getDataLoaderParamsArgs() argument
87 sShellCommands.put(commandId, new WeakReference<>(shellCommand)); in getDataLoaderParamsArgs()
93 static DataLoaderParams getStreamingDataLoaderParams(ShellCommand shellCommand) { in getStreamingDataLoaderParams() argument
95 getDataLoaderParamsArgs(shellCommand)); in getStreamingDataLoaderParams()
98 static DataLoaderParams getIncrementalDataLoaderParams(ShellCommand shellCommand) { in getIncrementalDataLoaderParams() argument
100 getDataLoaderParamsArgs(shellCommand)); in getIncrementalDataLoaderParams()
307 ShellCommand shellCommand = lookupShellCommand(mParams.getArguments()); in onPrepareImage() local
317 if (shellCommand == null) { in onPrepareImage()
321 final ParcelFileDescriptor inFd = getStdInPFD(shellCommand); in onPrepareImage()
326 if (shellCommand == null) { in onPrepareImage()
[all …]
/frameworks/base/services/core/jni/
Dcom_android_server_pm_PackageManagerShellCommandDataLoader.cpp221 static inline unique_fd openLocalFile(JNIEnv* env, const JniIds& jni, jobject shellCommand, in openLocalFile() argument
223 if (shellCommand) { in openLocalFile()
225 jni.pmscdGetLocalFile, shellCommand, in openLocalFile()
235 static inline InputDescs openLocalFile(JNIEnv* env, const JniIds& jni, jobject shellCommand, in openLocalFile() argument
242 unique_fd idsigFd = openLocalFile(env, jni, shellCommand, idsigPath); in openLocalFile()
262 unique_fd fileFd = openLocalFile(env, jni, shellCommand, filePath); in openLocalFile()
273 static inline InputDescs openInputs(JNIEnv* env, const JniIds& jni, jobject shellCommand, in openInputs() argument
279 return openLocalFile(env, jni, shellCommand, size, std::string(metadata.data, dataSize)); in openInputs()
282 if (!shellCommand) { in openInputs()
288 jni.pmscdGetStdIn, shellCommand)}; in openInputs()
[all …]
/frameworks/av/services/camera/libcameraservice/libcameraservice_fuzzer/
DREADME.md16 5. Shell Command (parameter name: `shellCommand`)
24 | `shellCommand` | 0. `set-uid-state` 1. `reset-uid-state` 2. `get-uid-state` 3. `set-rotate-and-c…
Dcamera_service_fuzzer.cpp304 mCameraService->shellCommand(in, out, err, args); in invokeShellCommand()
/frameworks/base/services/flags/java/com/android/server/flags/
DFeatureFlagsBinder.java43 FlagsShellCommand shellCommand, in FeatureFlagsBinder() argument
46 mShellCommand = shellCommand; in FeatureFlagsBinder()
/frameworks/native/libs/sensor/include/sensor/
DISensorServer.h67 virtual status_t shellCommand(int in, int out, int err,
/frameworks/native/libs/graphicsenv/include/graphicsenv/
DIGpuService.h77 virtual status_t shellCommand(int in, int out, int err, std::vector<String16>& args) = 0;
/frameworks/base/core/java/android/os/
DIBinder.java264 public void shellCommand(@Nullable FileDescriptor in, @Nullable FileDescriptor out, in shellCommand() method
DBinder.java1043 shellCommand(in != null ? in.getFileDescriptor() : null, in onTransact()
1226 public void shellCommand(@Nullable FileDescriptor in, @Nullable FileDescriptor out, in shellCommand() method in Binder
DBinderProxy.java701 public void shellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, in shellCommand() method in BinderProxy
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger_middleware/
DDefaultHalFactory.java107 ServiceManager.waitForService(aidlServiceName).shellCommand(null, in create()
/frameworks/native/services/gpuservice/include/gpuservice/
DGpuService.h48 status_t shellCommand(int in, int out, int err, std::vector<String16>& args) override;
/frameworks/base/services/core/java/com/android/server/inputmethod/
DInputMethodManagerService.java6387 private int handleShellCommandListInputMethods(@NonNull ShellCommand shellCommand) { in handleShellCommandListInputMethods() argument
6392 final String nextOption = shellCommand.getNextOption(); in handleShellCommandListInputMethods()
6405 userIdToBeResolved = UserHandle.parseUserArg(shellCommand.getNextArgRequired()); in handleShellCommandListInputMethods()
6411 mCurrentUserId, shellCommand.getErrPrintWriter()); in handleShellCommandListInputMethods()
6412 try (PrintWriter pr = shellCommand.getOutPrintWriter()) { in handleShellCommandListInputMethods()
6448 @NonNull ShellCommand shellCommand, boolean enabled) { in handleShellCommandEnableDisableInputMethod()
6449 final int userIdToBeResolved = handleOptionsForCommandsThatOnlyHaveUserOption(shellCommand); in handleShellCommandEnableDisableInputMethod()
6450 final String imeId = shellCommand.getNextArgRequired(); in handleShellCommandEnableDisableInputMethod()
6452 try (PrintWriter out = shellCommand.getOutPrintWriter(); in handleShellCommandEnableDisableInputMethod()
6453 PrintWriter error = shellCommand.getErrPrintWriter()) { in handleShellCommandEnableDisableInputMethod()
[all …]
/frameworks/native/include/binder/
DIBinder.h108 static status_t shellCommand(const sp<IBinder>& target, int in, int out, int err,
/frameworks/native/libs/binder/include/binder/
DIBinder.h108 static status_t shellCommand(const sp<IBinder>& target, int in, int out, int err,
/frameworks/base/cmds/am/src/com/android/commands/am/
DAm.java146 mAm.asBinder().shellCommand(FileDescriptor.in, FileDescriptor.out, FileDescriptor.err, in runAmCmd()
/frameworks/native/cmds/cmd/
Dcmd.cpp238 status_t error = IBinder::shellCommand(service, in, out, err, args, cb, result); in cmdMain()
/frameworks/native/services/gpuservice/
DGpuService.cpp152 status_t GpuService::shellCommand(int /*in*/, int out, int err, std::vector<String16>& args) { in shellCommand() function in android::GpuService
/frameworks/native/libs/graphicsenv/
DIGpuService.cpp257 status = shellCommand(in, out, err, args); in onTransact()
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DBinderDeathDispatcherTest.java87 public void shellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, in shellCommand() method in BinderDeathDispatcherTest.MyTarget
/frameworks/native/libs/sensor/
DISensorServer.cpp362 status = shellCommand(in, out, err, args); in onTransact()
/frameworks/native/services/sensorservice/
DSensorService.h206 virtual status_t shellCommand(int in, int out, int err, Vector<String16>& args);
/frameworks/native/libs/binder/ndk/tests/
Dlibbinder_ndk_unit_test.cpp350 EXPECT_EQ(OK, IBinder::shellCommand(testService, STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO, in TEST()
1052 status_t error = IBinder::shellCommand(unitTestService, inFd[0], outFd[0], errFd[0], argsVec, in shellCmdToString()
/frameworks/native/libs/binder/
DBinder.cpp109 status_t IBinder::shellCommand(const sp<IBinder>& target, int in, int out, int err, in shellCommand() function in android::IBinder
/frameworks/av/services/audiopolicy/service/
DAudioPolicyService.cpp1441 status = shellCommand(in, out, err, args); in onTransact()
1455 status_t AudioPolicyService::shellCommand(int in, int out, int err, Vector<String16>& args) { in shellCommand() function in android::AudioPolicyService

12