Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 417) sorted by relevance

12345678910>>...17

/frameworks/av/services/oboeservice/
DAAudioCommandQueue.cpp28 aaudio_result_t AAudioCommandQueue::sendCommand(std::shared_ptr<AAudioCommand> command) { in sendCommand() argument
35 mCommands.push(command); in sendCommand()
39 std::unique_lock _cl(command->lock); in sendCommand()
40 android::base::ScopedLockAssertion lockAssertion(command->lock); in sendCommand()
42 command->operationCode, command->isWaitingForReply, command->timeoutNanoseconds); in sendCommand()
46 + std::chrono::nanoseconds(command->timeoutNanoseconds); in sendCommand()
47 while (command->isWaitingForReply) { in sendCommand()
48 if (command->conditionVariable.wait_until(_cl, timeoutExpire) in sendCommand()
50 ALOGD("Command %d time out", command->operationCode); in sendCommand()
51 command->result = AAUDIO_ERROR_TIMEOUT; in sendCommand()
[all …]
DAAudioServiceStreamBase.cpp422 auto command = mCommandQueue.waitForCommand(timeoutNanos); in run() local
449 if (command != nullptr) { in run()
450 std::scoped_lock<std::mutex> _commandLock(command->lock); in run()
451 switch (command->operationCode) { in run()
453 command->result = start_l(); in run()
459 command->result = pause_l(); in run()
463 command->result = stop_l(); in run()
467 command->result = flush_l(); in run()
470 command->result = close_l(); in run()
477 (RegisterAudioThreadParam *) command->parameter.get(); in run()
[all …]
/frameworks/base/tools/protologtool/src/com/android/protolog/tool/
DProtoLogTool.kt45 private fun processClasses(command: CommandOptions) { in <lambda>()
47 command.protoLogGroupsJarArg, in <lambda>()
48 command.protoLogGroupsClassNameArg) in <lambda>()
49 val out = injector.fileOutputStream(command.outputSourceJarArg) in <lambda>()
51 val processor = ProtoLogCallProcessor(command.protoLogClassNameArg, in <lambda>()
52 command.protoLogGroupsClassNameArg, groups) in <lambda>()
57 command.javaSourceArgs.map { path -> in <lambda>()
59 val transformer = SourceTransformer(command.protoLogImplClassNameArg, in <lambda>()
60 command.protoLogCacheClassNameArg, processor) in <lambda>()
65 if (containsProtoLogText(text, command.protoLogClassNameArg)) { in <lambda>()
[all …]
/frameworks/av/media/libaaudio/scripts/
Dmeasure_device_power.py85 def adbTryMultiple(command): argument
90 print(('Try to adb {} {} of {}'.format(command, count, limit)))
93 returnCode = subprocess.call(["adb", command])
213 def measureEnergyForCommand(command): argument
215 print(("Measure energy for: " + command))
216 result = runCommand(command)
222 def averageEnergyForCommand(command, count): argument
224 sumReport = measureEnergyForCommand(command)
227 report = measureEnergyForCommand(command)
243 command = line.strip()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/demomode/
DDemoModeController.kt67 DemoMode.COMMANDS.map { command -> m.put(command, mutableListOf()) } in <lambda>() method
101 commands.forEach { command -> in <lambda>() method
102 if (!receiverMap.containsKey(command)) { in <lambda>()
104 "Command ($command) not recognized. " + "See DemoMode.java for valid commands" in <lambda>()
108 receiverMap[command]!!.add(listener) in <lambda>()
120 listener.demoCommands().forEach { command -> receiverMap[command]!!.remove(listener) } in <lambda>() method
145 fun demoFlowForCommand(command: String): Flow<Bundle> = conflatedCallbackFlow { in <lambda>()
148 override fun demoCommands(): List<String> = listOf(command) in <lambda>()
150 override fun dispatchDemoCommand(command: String, args: Bundle) { in <lambda>()
186 fun dispatchDemoCommand(command: String, args: Bundle) { in <lambda>()
[all …]
/frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
DLauncher.java76 Command command = findCommand(args[0]); in main() local
77 if (command != null) { in main()
83 command.run(args2); in main()
91 for (Command command : COMMANDS) { in findCommand()
92 if (command.name().equals(name)) { in findCommand()
93 return command; in findCommand()
104 for (Command command : COMMANDS) {
105 String shortHelp = command.shortHelp();
106 String detailedOptions = command.detailedOptions();
113 System.err.println(String.format("%s: %s", command.name(), shortHelp));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
DTransmitApduLogicalChannelInvocation.java48 protected void sendRequestMessage(ApduCommand command, Message msg) { in sendRequestMessage() argument
49 Rlog.v(LOG_TAG, "Send: " + command); in sendRequestMessage()
50 mCi.iccTransmitApduLogicalChannel(command.channel, command.cla | command.channel, in sendRequestMessage()
51 command.ins, command.p1, command.p2, command.p3, command.cmdHex, msg); in sendRequestMessage()
/frameworks/base/tools/aapt2/cmd/
DCommand_test.cpp38 TestCommand command; in TEST() local
40 command.AddRequiredFlag("--rflag", "", &required_flag, Command::kPath); in TEST()
42 command.AddOptionalFlag("--oflag", "", &optional_flag, Command::kPath); in TEST()
44 command.AddRequiredFlagList("--rlflag", "", &required_flag_list, Command::kPath); in TEST()
46 command.AddOptionalFlagList("--olflag", "", &optional_flag_list, Command::kPath); in TEST()
48 command.AddRequiredFlag("--nflag", "", &non_path_flag); in TEST()
69 ASSERT_THAT(command.Execute({"--rflag", kLongPath, in TEST()
88 ASSERT_THAT(command.args_.size(), Eq(2)); in TEST()
89 ASSERT_THAT(command.args_[0], Eq(kExpected)); in TEST()
90 ASSERT_THAT(command.args_[1], Eq(kExpected)); in TEST()
/frameworks/av/services/audiopolicy/service/
DAudioPolicyService.cpp1978 sp<AudioCommand> command = mAudioCommands[0]; in threadLoop() local
1983 mLastCommand = command; in threadLoop()
1985 switch (command->mCommand) { in threadLoop()
1987 VolumeData *data = (VolumeData *)command->mParam.get(); in threadLoop()
1991 command->mStatus = AudioSystem::setStreamVolume(data->mStream, in threadLoop()
1997 ParametersData *data = (ParametersData *)command->mParam.get(); in threadLoop()
2001 command->mStatus = AudioSystem::setParameters(data->mIO, data->mKeyValuePairs); in threadLoop()
2005 VoiceVolumeData *data = (VoiceVolumeData *)command->mParam.get(); in threadLoop()
2009 command->mStatus = AudioSystem::setVoiceVolume(data->mVolume); in threadLoop()
2013 StopOutputData *data = (StopOutputData *)command->mParam.get(); in threadLoop()
[all …]
/frameworks/base/packages/BackupEncryption/test/robolectric/src/com/android/server/backup/encryption/testing/
DDiffScriptProcessor.java84 Command command = Command.parse(commandString.get()); in process() local
86 if (command.mIsRange) { in process()
87 checkFileRange(command.mCount, command.mLimit); in process()
88 copyRange(randomAccessInput, outputStream, command.mCount, command.mLimit); in process()
90 long bytesCopied = copyBytes(diffScript, outputStream, command.mCount); in process()
91 if (bytesCopied < command.mCount) { in process()
97 command.mCount, in process()
241 private static Command parse(String command) throws MalformedDiffScriptException { in parse() argument
242 if (!VALID_COMMAND_PATTERN.matcher(command).matches()) { in parse()
243 throw new MalformedDiffScriptException("Bad command: " + command); in parse()
[all …]
/frameworks/base/core/java/com/android/internal/os/
DWrapperInit.java110 StringBuilder command = new StringBuilder(invokeWith); in execApplication() local
118 command.append(' '); in execApplication()
119 command.append(appProcess); in execApplication()
127 command.append(" -Xcompiler-option --generate-mini-debug-info"); in execApplication()
129 command.append(" /system/bin --application"); in execApplication()
131 command.append(" '--nice-name=").append(niceName).append("'"); in execApplication()
133 command.append(" com.android.internal.os.WrapperInit "); in execApplication()
134 command.append(pipeFd != null ? pipeFd.getInt$() : 0); in execApplication()
135 command.append(' '); in execApplication()
136 command.append(targetSdkVersion); in execApplication()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DModelInterpreter.java472 onCHLD(String command) throws InterpreterEx in onCHLD() argument
479 c0 = command.charAt(6); in onCHLD()
481 if (command.length() >= 8) { in onCHLD()
482 c1 = command.charAt(7); in onCHLD()
493 onDial(String command) throws InterpreterEx in onDial() argument
497 success = mSimulatedCallState.onDial(command.substring(1)); in onDial()
517 onSMSSend(String command) in onSMSSend() argument
535 String command = commands[i]; in processLine() local
537 if (command.equals("A")) { in processLine()
539 } else if (command.equals("H")) { in processLine()
[all …]
DTestExecutorService.java183 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule() argument
186 mScheduledRunnables.put(scheduledTime, command); in schedule()
188 Log.i(TAG, "schedule: runnable=" + System.identityHashCode(command) + ", time=" in schedule()
192 command, delay); in schedule()
201 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, in scheduleAtFixedRate() argument
203 return scheduleWithFixedDelay(command, initialDelay, period, unit); in scheduleAtFixedRate()
207 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, in scheduleWithFixedDelay() argument
211 mScheduledRunnables.put(nextScheduledTime, command); in scheduleWithFixedDelay()
212 mRepeatDuration.put(command, unit.toMillis(delay)); in scheduleWithFixedDelay()
215 command, delay); in scheduleWithFixedDelay()
[all …]
/frameworks/native/services/surfaceflinger/CompositionEngine/src/planner/
DPlanner.cpp213 const String8 command(args[1]); in dump() local
214 if (command == "--compare" || command == "-c") { in dump()
219 command.string()); in dump()
226 command.string()); in dump()
251 } else if (command == "--describe" || command == "-d") { in dump()
255 command.string()); in dump()
261 command.string()); in dump()
277 } else if (command == "--help" || command == "-h") { in dump()
279 } else if (command == "--similar" || command == "-s") { in dump()
282 command.string()); in dump()
[all …]
/frameworks/base/core/java/com/android/internal/midi/
DMidiConstants.java102 public static boolean allowRunningStatus(byte command) { in allowRunningStatus() argument
104 return (command >= STATUS_NOTE_OFF && command < STATUS_SYSTEM_EXCLUSIVE); in allowRunningStatus()
108 public static boolean cancelsRunningStatus(byte command) { in cancelsRunningStatus() argument
110 return (command >= STATUS_SYSTEM_EXCLUSIVE && command <= STATUS_END_SYSEX); in cancelsRunningStatus()
/frameworks/base/tools/bit/
Dcommand.cpp101 get_command_output(const Command& command, int* err, bool quiet) in get_command_output() argument
104 print_command(command); in get_command_output()
123 const char* prog = command.GetProg(); in get_command_output()
124 char* const* argv = command.GetArgv(); in get_command_output()
125 char* const* env = command.GetEnv(); in get_command_output()
160 run_command(const Command& command) in run_command() argument
162 print_command(command); in run_command()
171 const char* prog = command.GetProg(); in run_command()
172 char* const* argv = command.GetArgv(); in run_command()
173 char* const* env = command.GetEnv(); in run_command()
/frameworks/native/cmds/dumpstate/
DDumpstateUtil.cpp288 const char* command = command_string.c_str(); in RunCommandToFd() local
291 dprintf(fd, "Skipping '%s' on user build.\n", command); in RunCommandToFd()
296 dprintf(fd, "------ %s (%s) ------\n", title.c_str(), command); in RunCommandToFd()
334 dprintf(fd, "*** failed to drop root before running %s: %s\n", command, in RunCommandToFd()
337 MYLOGE("*** could not drop root before running %s: %s\n", command, strerror(errno)); in RunCommandToFd()
382 MYLOGD("execvp on command '%s' failed (error: %s)\n", command, strerror(errno)); in RunCommandToFd()
396 dprintf(fd, "*** command '%s' timed out after %.3fs (killing pid %d)\n", command, in RunCommandToFd()
398 MYLOGE("*** command '%s' timed out after %.3fs (killing pid %d)\n", command, in RunCommandToFd()
402 dprintf(fd, "*** command '%s': Error after %.4fs (killing pid %d)\n", command, in RunCommandToFd()
404 MYLOGE("command '%s': Error after %.4fs (killing pid %d)\n", command, in RunCommandToFd()
[all …]
/frameworks/native/libs/binder/
DRpcState.cpp501 RpcWireHeader command{ in transactAddress() local
502 .command = RPC_COMMAND_TRANSACT, in transactAddress()
538 {&command, sizeof(RpcWireHeader)}, in transactAddress()
574 RpcWireHeader command; in waitForReply() local
576 iovec iov{&command, sizeof(command)}; in waitForReply()
581 if (command.command == RPC_COMMAND_REPLY) break; in waitForReply()
583 if (status_t status = processCommand(connection, session, command, CommandType::ANY); in waitForReply()
588 CommandData data(command.bodySize); in waitForReply()
591 iovec iov{data.data(), command.bodySize}; in waitForReply()
595 if (command.bodySize < sizeof(RpcWireReply)) { in waitForReply()
[all …]
/frameworks/base/tools/dump-coverage/
Ddump_coverage.cc151 std::string command, args; in SplitOnColon() local
154 command = options; in SplitOnColon()
156 command = options.substr(0, loc_delim); in SplitOnColon()
159 return tuple(command, args); in SplitOnColon()
166 auto command = get<0>(split), args = get<1>(split); in ParseOptionsAndExecuteCommand() local
168 LOG(INFO) << "command: '" << command << "' args: '" << args << "'"; in ParseOptionsAndExecuteCommand()
170 if (command == "dump") { in ParseOptionsAndExecuteCommand()
174 if (command == "reset") { in ParseOptionsAndExecuteCommand()
179 << command << "'"; in ParseOptionsAndExecuteCommand()
/frameworks/base/services/core/java/com/android/server/wm/
DViewServer.java228 String command; in run() local
233 command = request; in run()
236 command = request.substring(0, index); in run()
241 if (COMMAND_PROTOCOL_VERSION.equalsIgnoreCase(command)) { in run()
243 } else if (COMMAND_SERVER_VERSION.equalsIgnoreCase(command)) { in run()
245 } else if (COMMAND_WINDOW_MANAGER_LIST.equalsIgnoreCase(command)) { in run()
247 } else if (COMMAND_WINDOW_MANAGER_GET_FOCUS.equalsIgnoreCase(command)) { in run()
249 } else if (COMMAND_WINDOW_MANAGER_AUTOLIST.equalsIgnoreCase(command)) { in run()
253 command, parameters); in run()
257 Slog.w(LOG_TAG, "An error occurred with the command: " + command); in run()
/frameworks/base/core/tests/coretests/src/android/app/timezonedetector/
DShellCommandTestSupport.java37 ShellCommand command = mock(ShellCommand.class); in createShellCommandWithArgsAndOptions() local
57 when(command.getNextArg()).thenAnswer( in createShellCommandWithArgsAndOptions()
59 when(command.getNextOption()).thenAnswer( in createShellCommandWithArgsAndOptions()
61 when(command.getNextArgRequired()).thenAnswer( in createShellCommandWithArgsAndOptions()
63 return command; in createShellCommandWithArgsAndOptions()
/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
DShellHelper.java38 String command = String.format(template, args); in runShellCommand() local
39 return runShellCommandRaw(command); in runShellCommand()
46 public static String runShellCommandRaw(@NonNull String command) { in runShellCommandRaw() argument
49 ParcelFileDescriptor pfd = automan.executeShellCommand(command); in runShellCommandRaw()
60 throw new AndroidRuntimeException("Command '" + command + "' failed: ", e); in runShellCommandRaw()
/frameworks/base/packages/SystemUI/docs/
Ddemo_mode.md12 The protocol is based on broadcast intents, and thus can be driven via the command line (```adb she…
23 Commands are sent as string extras with key ```command``` (required). Possible values are:
66 adb shell am broadcast -a com.android.systemui.demo -e command enter
73 adb shell am broadcast -a com.android.systemui.demo -e command exit
80 adb shell am broadcast -a com.android.systemui.demo -e command clock -e hhmm
88 adb shell am broadcast -a com.android.systemui.demo -e command network -e wifi
96 adb shell am broadcast -a com.android.systemui.demo -e command status -e volume
104 adb shell am broadcast -a com.android.systemui.demo -e command battery -e level
112 adb shell am broadcast -a com.android.systemui.demo -e command notifications -e
120 adb shell am broadcast -a com.android.systemui.demo -e command exit
[all …]
/frameworks/av/media/bufferpool/2.0/tests/
DBufferpoolUnitTest.cpp59 int32_t command; member
170 switch (message.data.command) { in doReceiver()
175 message.data.command = PipeCommand::INIT_ERROR; in doReceiver()
182 message.data.command = PipeCommand::INIT_ERROR; in doReceiver()
186 message.data.command = PipeCommand::INIT_OK; in doReceiver()
197 message.data.command = PipeCommand::TRANSFER_ERROR; in doReceiver()
202 message.data.command = PipeCommand::TRANSFER_ERROR; in doReceiver()
212 message.data.command = PipeCommand::TRANSFER_OK; in doReceiver()
219 message.data.command = PipeCommand::STOP_ERROR; in doReceiver()
223 message.data.command = PipeCommand::STOP_OK; in doReceiver()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarDemoMode.java110 public void dispatchDemoCommand(String command, @NonNull Bundle args) { in dispatchDemoCommand() argument
111 if (command.equals(COMMAND_CLOCK)) { in dispatchDemoCommand()
112 dispatchDemoCommandToView(command, args, mClockView); in dispatchDemoCommand()
114 if (command.equals(COMMAND_OPERATOR)) { in dispatchDemoCommand()
115 dispatchDemoCommandToView(command, args, mOperatorNameView); in dispatchDemoCommand()
117 if (command.equals(COMMAND_BARS)) { in dispatchDemoCommand()
139 private void dispatchDemoCommandToView(String command, Bundle args, View v) { in dispatchDemoCommandToView() argument
141 ((DemoModeCommandReceiver) v).dispatchDemoCommand(command, args); in dispatchDemoCommandToView()

12345678910>>...17