Home
last modified time | relevance | path

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

/aosp_15_r20/frameworks/native/cmds/dumpstate/
H A DDumpstateUtil.cpp281 std::string command_string; in RunCommandToFd() local
284 command_string += kSuPath; in RunCommandToFd()
286 command_string += " root "; in RunCommandToFd()
290 command_string += args[i + starting_index]; in RunCommandToFd()
292 command_string += " "; in RunCommandToFd()
297 const char* command = command_string.c_str(); in RunCommandToFd()
310 MYLOGI(logging_message.c_str(), command_string.c_str()); in RunCommandToFd()
322 dprintf(fd, "%s: skipped on dry run\n", command_string.c_str()); in RunCommandToFd()
/aosp_15_r20/external/pytorch/.ci/pytorch/win-test-helpers/
H A Drun_python_nn_smoketests.py43 command_string = " ".join(command_args) variable
44 print("Command:", command_string)
54 command_string = " ".join(command_args) variable
56 print("Command:", command_string)
/aosp_15_r20/external/chromium-trace/catapult/common/py_utils/py_utils/
H A Dts_proxy_server.py138 def _IssueCommand(self, command_string, timeout, retries=None): argument
140 logging.info('Issuing command to ts_proxy_server: %s', command_string)
142 self._proc.stdin.write('%s\n' % command_string)
155 raise TsProxyServerError('Failed to execute command: %s', command_string)
/aosp_15_r20/external/crosvm/e2e_tests/guest_under_test/rootfs/delegate/src/
H A Dmain.rs44 command: command_string, in listen()
46 println!("-> {}", &command_string); in listen()
48 .args(["-c", &command_string]) in listen()
/aosp_15_r20/external/aws-crt-java/integration-testing/
H A Djava_elasticurl_runner.py17 command_string = " ".join(java_command) variable
44 run_command(command_string)
/aosp_15_r20/system/logging/logd/
H A DCommandListener.h41 #define LogCmd(name, command_string) \ argument
45 : FrameworkCommand(#command_string), parent_(parent) {} \
/aosp_15_r20/external/python/absl-py/absl/testing/
Dabsltest.py1265 command_string = get_command_string(command)
1271 '%s' % (_quote_long_string(command_string),
1283 _quote_long_string(command_string),
1311 command_string = get_command_string(command)
1316 _quote_long_string(command_string)))
1325 _quote_long_string(command_string),
2044 command_string = ''
2047 command_string += "'" + word.replace("'", "'\"'\"'") + "' "
2048 return command_string[:-1]
/aosp_15_r20/system/extras/torq/tests/
H A Dvalidate_simpleperf_unit_test.py33 def set_up_parser(self, command_string): argument
35 sys.argv = command_string.split()
H A Dtorq_unit_test.py32 def set_up_parser(self, command_string): argument
34 sys.argv = command_string.split()
/aosp_15_r20/bootable/deprecated-ota/updater/
H A Dblockimg.cpp143 static bool UpdateLastCommandIndex(size_t command_index, const std::string& command_string) { in UpdateLastCommandIndex() argument
146 std::string content = std::to_string(command_index) + "\n" + command_string; in UpdateLastCommandIndex()