OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:command_string
(Results
1 - 3
of
3
) sorted by null
/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
)
234
command_string
= self._BuildInstrumentationCommandPath(
239
logger.Log(
command_string
)
242
self.SendShellCommand(
command_string
, timeout_time=timeout_time,
309
command_string
= "am instrument"
311
command_string
+= " --no-hidden-api-checks"
313
command_string
+= " --user %s" % user
315
command_string
+= " --no_window_animation
[
all
...]
/external/openssh/
sshconnect.c
108
char *
command_string
;
local
120
command_string
= expand_proxy_command(proxy_command, options.user,
122
debug("Executing proxy dialer command: %.500s",
command_string
);
150
argv[2] =
command_string
;
165
free(
command_string
);
187
char *
command_string
;
local
200
command_string
= expand_proxy_command(proxy_command, options.user,
202
debug("Executing proxy command: %.500s",
command_string
);
228
argv[2] =
command_string
;
249
free(
command_string
);
[
all
...]
/bootable/recovery/updater/
blockimg.cpp
138
static bool UpdateLastCommandIndex(size_t command_index, const std::string&
command_string
) {
141
std::string content = std::to_string(command_index) + "\n" +
command_string
;
[
all
...]
Completed in 337 milliseconds