HomeSort by relevance Sort by last modified time
    Searched refs:SendCommand (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /external/chromium_org/tools/android/forwarder2/
command.h 44 bool SendCommand(command::Type command, int port, Socket* socket);
device_listener.cc 30 SendCommand(command::BIND_ERROR, listener_port, host_socket.get());
36 SendCommand(command::BIND_SUCCESS, listener_port, host_socket.get());
96 SendCommand(command::ACCEPT_ERROR, listener_port_, host_socket_.get());
100 SendCommand(command::ACCEPT_SUCCESS, listener_port_, host_socket_.get());
103 SendCommand(command::ACK, listener_port_, host_socket_.get());
123 SendCommand(command::ADB_DATA_SOCKET_SUCCESS, listener_port_,
host_controller.cc 37 bool send_command_success = SendCommand(
106 SendCommand(
118 SendCommand(
134 SendCommand(command::DATA_CONNECTION, device_port_, adb_data_socket.get());
169 if (!SendCommand(command::UNLISTEN, device_port_, &socket)) {
command.cc 80 bool SendCommand(command::Type command, int port, Socket* socket) {
device_controller.cc 123 SendCommand(command::UNLISTEN_ERROR, port, socket.get());
127 SendCommand(command::UNLISTEN_SUCCESS, port, socket.get());
  /development/testrunner/
adb_interface.py 54 def SendCommand(self, command_string, timeout_time=20, retry_count=3):
90 return self.SendCommand("shell %s" % cmd, timeout_time=timeout_time,
111 self.SendCommand("push %s %s" % (src, dest), timeout_time=60)
128 self.SendCommand("pull %s %s" % (src, dest), timeout_time=60)
143 return self.SendCommand("install -r %s" % apk_path)
164 output = self.SendCommand("root")
170 self.SendCommand("wait-for-device")
329 self.SendCommand("wait-for-device")
362 self.SendCommand("wait-for-device")
434 self.SendCommand("wait-for-device"
    [all...]
  /external/chromium_org/third_party/android_testrunner/
adb_interface.py 54 def SendCommand(self, command_string, timeout_time=20, retry_count=3):
90 return self.SendCommand("shell %s" % cmd, timeout_time=timeout_time,
111 self.SendCommand("push %s %s" % (src, dest), timeout_time=60)
128 self.SendCommand("pull %s %s" % (src, dest), timeout_time=60)
153 output = self.SendCommand("root")
158 self.SendCommand("wait-for-device")
321 self.SendCommand("wait-for-device")
367 self.SendCommand("wait-for-device")
439 self.SendCommand("wait-for-device")
481 output = self.SendCommand("sync", retry_count=retry_count
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
devtools_client.h 33 virtual Status SendCommand(const std::string& method,
frame_tracker.cc 34 Status status = client->SendCommand("Runtime.enable", params);
37 return client->SendCommand("Page.enable", params);
javascript_dialog_manager.cc 39 Status status = client_->SendCommand("Page.handleJavaScriptDialog", params);
54 return client_->SendCommand("Page.enable", params);
geolocation_override_manager.cc 50 return client_->SendCommand("Page.setGeolocationOverride", params);
stub_devtools_client.cc 24 Status StubDevToolsClient::SendCommand(const std::string& method,
stub_devtools_client.h 30 virtual Status SendCommand(const std::string& method,
dom_tracker.cc 33 return client->SendCommand("DOM.getDocument", params);
64 client->SendCommand("DOM.getDocument", params);
dom_tracker_unittest.cc 32 virtual Status SendCommand(const std::string& method,
41 return SendCommand(method, params);
performance_logger.cc 40 Status status = client->SendCommand(kDomainEnableCommands[i_cmd], params);
devtools_client_impl_unittest.cc 103 TEST_F(DevToolsClientImplTest, SendCommand) {
112 ASSERT_EQ(kOk, client.SendCommand("method", params).code());
220 ASSERT_TRUE(client.SendCommand("method", params).IsError());
267 ASSERT_TRUE(client.SendCommand("method", params).IsError());
426 client->SendCommand("method", params);
476 ASSERT_TRUE(client.SendCommand("method", params).IsOk());
477 ASSERT_TRUE(client.SendCommand("method", params).IsOk());
489 ASSERT_TRUE(client.SendCommand("method", params).IsError());
501 ASSERT_TRUE(client.SendCommand("method", params).IsError());
513 ASSERT_TRUE(client.SendCommand("method", params).IsError())
    [all...]
web_view_impl.cc 149 return client_->SendCommand("Page.navigate", params);
155 return client_->SendCommand("Page.reload", params);
239 Status status = client_->SendCommand("Input.dispatchMouseEvent", params);
270 Status status = client_->SendCommand("Input.dispatchTouchEvent", params);
293 Status status = client_->SendCommand("Input.dispatchKeyEvent", params);
319 return client_->SendCommand("Page.deleteCookie", params);
405 return client_->SendCommand("DOM.setFileInputFiles", params);
629 client->SendCommand("Runtime.releaseObject", params);
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_blocking_page_test.cc 261 void SendCommand(const std::string& command) {
382 SendCommand("\"proceed\"");
414 SendCommand("\"takeMeBack\""); // Simulate the user clicking "back"
425 SendCommand("\"proceed\""); // Simulate the user clicking "proceed"
437 SendCommand("\"takeMeBack\""); // Simulate the user clicking "proceed"
449 SendCommand("\"proceed\""); // Simulate the user clicking "proceed".
461 SendCommand("\"reportError\""); // Simulate the user clicking "report error"
476 SendCommand("\"learnMore\""); // Simulate the user clicking "learn more"
492 SendCommand("\"takeMeBack\""); // Simulate the user clicking "back"
508 SendCommand("\"proceed\""); // Simulate the user clicking "proceed
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_libcdep.cc 113 char *SendCommand(bool is_data, const char *module_name, uptr module_offset) {
211 char *SendCommand(bool is_data, const char *module_name, uptr module_offset) {
254 char *SendCommand(bool is_data, const char *module_name, uptr module_offset) {
275 const char *str = SendCommand(false, module_name, module_offset);
337 const char *str = SendCommand(true, module_name, module_offset);
377 char *SendCommand(bool is_data, const char *module_name, uptr module_offset) {
383 return internal_symbolizer_->SendCommand(is_data, module_name,
394 char *reply = external_symbolizer_->SendCommand(is_data, module_name,
  /external/chromium_org/chrome/browser/devtools/
adb_client_socket.h 42 void SendCommand(const std::string& command,
tethering_adb_filter.h 59 void SendCommand(const std::string& method, int port);
  /external/chromium_org/chrome/test/chromedriver/net/
adb_client_socket.h 45 void SendCommand(const std::string& command,
  /external/chromium_org/build/android/
run_update_verification.py 20 adb.Adb().SendCommand('backup %s' % package_name)
44 adb.Adb().SendCommand('restore %s' % app_data)
  /external/chromium_org/chrome/browser/extensions/api/debugger/
debugger_api.cc 69 namespace SendCommand = extensions::api::debugger::SendCommand;
95 SendCommand::Params::CommandParams* command_params);
374 SendCommand::Params::CommandParams* command_params) {
623 scoped_ptr<SendCommand::Params> params(SendCommand::Params::Create(*args_));
645 SendCommand::Results::Result result;
649 results_ = SendCommand::Results::Create(result);

Completed in 604 milliseconds

1 2 3 4 5