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

  /system/core/adb/
bugreport.h 37 virtual int SendShellCommand(
bugreport_test.cpp 121 MOCK_METHOD3(SendShellCommand, int(const std::string& command, bool disable_shell_protocol,
138 EXPECT_CALL(br_, SendShellCommand("bugreportz -v", false, _))
161 EXPECT_CALL(br_, SendShellCommand("bugreportz -v", false, _))
169 EXPECT_CALL(br_, SendShellCommand("bugreport", false, _))
184 EXPECT_CALL(br_, SendShellCommand("bugreportz", false, _))
202 EXPECT_CALL(br_, SendShellCommand("bugreportz -p", false, _))
218 EXPECT_CALL(br_, SendShellCommand("bugreportz", false, _))
233 EXPECT_CALL(br_, SendShellCommand("bugreportz", false, _))
253 EXPECT_CALL(br_, SendShellCommand("bugreportz -p", false, _))
288 EXPECT_CALL(br_, SendShellCommand("bugreportz -p", false, _)
    [all...]
bugreport.cpp 204 int status = SendShellCommand("bugreportz -v", false, &version_callback);
217 return SendShellCommand("bugreport", false);
268 return SendShellCommand(bugz_command, false, &bugz_callback);
277 int Bugreport::SendShellCommand(const std::string& command, bool disable_shell_protocol,
  /development/testrunner/
adb_interface.py 74 def SendShellCommand(self, cmd, timeout_time=20, retry_count=3):
99 bug_output = self.SendShellCommand("bugreport", timeout_time=60)
156 output = self.SendShellCommand("ls %s" % src)
239 self.SendShellCommand(command_string, timeout_time=timeout_time,
320 ls_response = self.SendShellCommand("ls /data/trace")
322 self.SendShellCommand("create /data/trace", "mkdir /data/trace")
323 self.SendShellCommand("make /data/trace world writeable",
352 output = self.SendShellCommand(command)
415 output = self.SendShellCommand(command, retry_count=1)
449 output = self.SendShellCommand("getprop dev.bootcomplete", retry_count=1
    [all...]
runtest.py 378 self._adb.SendShellCommand("mkdir -p %s" % remote_dir)
466 output = self._adb.SendShellCommand("cat /data/local.prop")
470 old_prop_value = self._adb.SendShellCommand("getprop %s" \
481 self._adb.SendShellCommand("setprop %s '%s'" \
493 self._adb.SendShellCommand("\"echo %s >> /data/local.prop\""
500 permout = self._adb.SendShellCommand("ls -l /data/local.prop")
510 self._adb.SendShellCommand("chmod 644 /data/local.prop")
  /development/testrunner/test_defs/
native_test.py 88 output = adb.SendShellCommand("'%s 2>&1;echo -n exit code:$?'" %
100 adb.SendShellCommand("rm %s" % full_path)

Completed in 141 milliseconds