Home
last modified time | relevance | path

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

/aosp14/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/synthetic/
H A DTestInterface.java94 void runCommand(int command) { in runCommand() method in TestInterface.LooperThread
433 mLT.runCommand(mLT.TestPowerManagement); in runPowerManagement()
437 mLT.runCommand(mLT.TestMemoryBandwidth); in runMemoryBandwidth()
441 mLT.runCommand(mLT.TestMemoryLatency); in runMemoryLatency()
445 mLT.runCommand(mLT.TestHeatSoak); in runCPUHeatSoak()
449 mLT.runCommand(mLT.TestGFlops); in runCPUGFlops()
/aosp14/system/core/libsysutils/include/sysutils/
H A DFrameworkCommand.h30 virtual int runCommand(SocketClient *c, int argc, char **argv) = 0;
/aosp14/system/core/libsysutils/src/
H A DFrameworkCommand.cpp30 int FrameworkCommand::runCommand(SocketClient *c UNUSED, int argc UNUSED, in runCommand() function in FrameworkCommand
H A DFrameworkListener.cpp194 if (c->runCommand(cli, argc, argv)) { in dispatchCommand()
H A DSocketListener_test.cpp105 int runCommand(SocketClient* cli, int argc, char** argv) { in runCommand() function in __anon21196f050110::TestCommand
/aosp14/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
H A DShortcutManagerTestUtils.java191 public static List<String> runCommand(Instrumentation instrumentation, String command) { in runCommand() method in ShortcutManagerTestUtils
192 return runCommand(instrumentation, command, null); in runCommand()
194 public static List<String> runCommand(Instrumentation instrumentation, String command, in runCommand() method in ShortcutManagerTestUtils
211 runCommand(instrumentation, command, result -> result.size() == 0); in runCommandForNoOutput()
216 return runCommand(instrumentation, "cmd shortcut " + command, resultAsserter); in runShortcutCommand()
323 runCommand(instrumentation, in enableComponent()
330 runCommand(instrumentation, "appops set " + packageName + " " + op + " " + mode); in appOps()
338 for (String s : runCommand(instrumentation, "dumpsys shortcut")) { in dumpsysShortcut()
344 return new JSONObject(concatResult(runCommand(instrumentation, "dumpsys shortcut -c"))); in getCheckinDump()
/aosp14/frameworks/base/tests/DynamicCodeLoggerIntegrationTests/src/com/android/server/pm/dex/
H A DDynamicCodeLoggerIntegrationTests.java426 runCommand("cmd jobscheduler run -f android " + jobId); in runDynamicCodeLoggingJob()
430 String response = runCommand( in runDynamicCodeLoggingJob()
443 private static String runCommand(String command) throws Exception { in runCommand() method in DynamicCodeLoggerIntegrationTests
/aosp14/frameworks/base/services/core/java/com/android/server/pm/verify/domain/
H A DDomainVerificationShell.java126 public Boolean runCommand(@NonNull BasicShellCommandHandler commandHandler, in runCommand() method in DomainVerificationShell
/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerShellCommand.java375 mDomainVerificationShell.runCommand(this, cmd); in onCommand()