HomeSort by relevance Sort by last modified time
    Searched refs:command_string (Results 1 - 4 of 4) sorted by null

  /external/syslinux/gpxe/src/arch/i386/interface/pxe/
pxe_file.c 220 char command_string[ command_len + 1 ]; local
222 copy_from_user ( command_string, command, 0,
223 sizeof ( command_string ) );
224 DBG ( " %s", command_string );
226 if ( ( rc = system ( command_string ) ) != 0 ) {
  /development/testrunner/
adb_interface.py 54 def SendCommand(self, command_string, timeout_time=60, retry_count=3):
58 command_string: adb command to run
69 adb_cmd = "adb %s %s" % (self._target_arg, command_string)
231 command_string = self._BuildInstrumentationCommandPath(
236 logger.Log(command_string)
239 self.SendShellCommand(command_string, timeout_time=timeout_time,
301 command_string = "am instrument"
303 command_string += " --user %s" % user
305 command_string += " --no_window_animation"
308 command_string +=
    [all...]
  /frameworks/native/cmds/dumpstate/
DumpstateUtil.cpp 227 std::string command_string; local
230 command_string += kSuPath;
232 command_string += " root ";
236 command_string += args[i + starting_index];
238 command_string += " ";
243 const char* command = command_string.c_str();
257 MYLOGI(logging_message.c_str(), command_string.c_str());
268 dprintf(fd, "%s: skipped on dry run\n", command_string.c_str());
  /bootable/recovery/updater/
blockimg.cpp 121 static bool UpdateLastCommandIndex(int command_index, const std::string& command_string) {
124 std::string content = std::to_string(command_index) + "\n" + command_string;
    [all...]

Completed in 108 milliseconds