HomeSort by relevance Sort by last modified time
    Searched defs:command_line (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium-trace/catapult/telemetry/telemetry/util/
command_line.py 7 from telemetry.internal.util import command_line namespace
10 class ArgParseCommand(command_line.Command):
  /external/libchrome/base/test/
multiprocess_test.cc 8 #include "base/command_line.h"
20 CommandLine command_line(base_command_line);
24 if (!command_line.HasSwitch(switches::kTestChildProcess))
25 command_line.AppendSwitchASCII(switches::kTestChildProcess, procname);
27 return LaunchProcess(command_line, options);
57 CommandLine command_line = GetMultiProcessTestChildBaseCommandLine(); local
58 command_line.AppendSwitchASCII(switches::kTestChildProcess, procname);
59 return command_line;
multiprocess_test_android.cc 10 #include "base/command_line.h"
66 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
67 command_line->InitFromArgv(base_command_line.argv());
68 if (!command_line->HasSwitch(switches::kTestChildProcess))
69 command_line->AppendSwitchASCII(switches::kTestChildProcess, procname);
  /system/bt/service/
main.cpp 22 #include <base/command_line.h>
60 auto command_line = base::CommandLine::ForCurrentProcess(); local
61 if (command_line->HasSwitch(bluetooth::switches::kHelpLong) ||
62 command_line->HasSwitch(bluetooth::switches::kHelpShort)) {
settings.cpp 20 #include <base/command_line.h>
36 auto command_line = base::CommandLine::ForCurrentProcess(); local
37 const auto& switches = command_line->GetSwitches();
77 if (command_line->GetArgs().size()) {
  /external/chromium-trace/catapult/telemetry/telemetry/story/
story_filter.py 8 from telemetry.internal.util import command_line namespace
41 class StoryFilter(command_line.ArgumentHandlerMixIn):
  /external/dbus/test/
shell-test.c 18 char *command_line, *tmp; local
48 command_line = _dbus_string_get_data (&str);
49 printf ("\n\nTesting command line '%s'\n", command_line);
52 if (!_dbus_shell_parse_argv (command_line, &shell_argc, &shell_argv, &error))
  /external/libchrome/base/
sys_info.cc 8 #include "base/command_line.h"
24 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
25 if (command_line->HasSwitch(switches::kEnableLowEndDeviceMode))
27 if (command_line->HasSwitch(switches::kDisableLowEndDeviceMode))
  /system/tpm/tpm_manager/server/
main.cc 20 #include <base/command_line.h>
52 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
68 command_line->HasSwitch(kWaitForOwnershipTriggerSwitch),
  /ndk/sources/host-tools/make-3.81/
job.h 49 unsigned int command_line; /* Index into above. */ member in struct:child
50 char *command_ptr; /* Ptr into command_lines[command_line]. */
  /toolchain/binutils/binutils-2.25/binutils/
arparse.y 72 session command_line
76 command_line: label
  /toolchain/binutils/binutils-2.25/gold/
main.cc 164 Command_line command_line; local
165 command_line.process(argc - 1, const_cast<const char**>(argv + 1));
168 if (command_line.options().stats())
175 set_parameters_options(&command_line.options());
178 write_debug_script(command_line.options().output_file_name(),
183 if (command_line.options().user_set_Map())
186 if (!mapfile->open(command_line.options().Map()))
201 command_line.script_options().version_script_info()->clear();
204 Workqueue workqueue(command_line.options())
    [all...]
incremental-dump.cc 106 const char* command_line = incremental_inputs.command_line(); local
107 if (command_line == NULL)
114 printf("Link command line: %s\n", command_line);
  /external/chromium-trace/catapult/telemetry/
cloud_storage 13 from telemetry.internal.util import command_line namespace
66 class Ls(command_line.Command):
111 class Mv(command_line.Command):
146 class Rm(command_line.Command):
161 class Upload(command_line.Command):
194 class CloudStorageCommand(command_line.SubcommandCommand):
  /external/chromium-trace/catapult/telemetry/telemetry/
benchmark_runner.py 23 from telemetry.internal.util import command_line namespace
96 class Help(command_line.OptparseCommand):
124 class List(command_line.OptparseCommand):
169 class Run(command_line.OptparseCommand):
445 if isinstance(command_instance, command_line.OptparseCommand):
benchmark.py 9 from telemetry.internal.util import command_line namespace
49 class Benchmark(command_line.Command):
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
run_tests.py 17 from telemetry.internal.util import command_line namespace
28 class RunTestsCommand(command_line.OptparseCommand):
  /external/google-breakpad/src/tools/windows/dump_syms/
dump_syms_unittest.cc 83 std::wstring command_line = GetCommandLineW(); local
87 args = ::CommandLineToArgvW(command_line.c_str(), &num_args);
97 void RunCommand(const std::wstring& command_line,
129 ASSERT_TRUE(::CreateProcessW(NULL, (LPWSTR)command_line.c_str(), NULL, NULL,
193 std::wstring command_line = L"\"" + dump_syms_exe + L"\" \"" + local
196 ASSERT_NO_FATAL_FAILURE(RunCommand(command_line, &symbols));
  /external/webrtc/webrtc/base/
flags.cc 269 LPTSTR command_line = ::GetCommandLine(); local
271 LPWSTR *wide_argv = ::CommandLineToArgvW(command_line, &argc_);
  /system/tpm/tpm_manager/client/
main.cc 24 #include <base/command_line.h>
129 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
130 if (command_line->HasSwitch("help") || command_line->HasSwitch("h")) {
132 } else if (command_line->HasSwitch(kGetTpmStatusCommand)) {
135 } else if (command_line->HasSwitch(kTakeOwnershipCommand)) {
138 } else if (command_line->HasSwitch(kRemoveOwnerDependencyCommand)) {
142 command_line->GetSwitchValueASCII(kRemoveOwnerDependencyCommand));
143 } else if (command_line->HasSwitch(kDefineNvramCommand)) {
144 if (!command_line->HasSwitch(kNvramIndexArg) |
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/models/
graph_data.py 173 command_line = ndb.StringProperty(indexed=False) variable in class:TestMetadata
  /external/chromium-trace/catapult/third_party/coverage/coverage/
cmdline.py 411 def command_line(self, argv): member in class:CoverageScript
741 status = CoverageScript().command_line(argv)
  /external/e2fsprogs/ext2ed/
main.c 198 char *ptr,command_line [80]; local
241 strcpy (command_line,ptr);
244 if (*command_line != 0)
245 add_history (command_line);
248 if (*command_line==0)
249 strcpy (command_line,last_command_line);
255 wprintw (command_win,command_line);
260 strcpy (last_command_line,command_line);
263 quit=dispatch (command_line);
299 char command_line [80] local
    [all...]
  /external/libchrome/base/process/
process_metrics_unittest.cc 14 #include "base/command_line.h"
471 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
472 const FilePath temp_path = command_line->GetSwitchValuePath(kTempDirFlag);
  /system/security/keystore/
keystore_cli_v2.cpp 20 #include "base/command_line.h"
429 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
430 CommandLine::StringVector args = command_line->GetArgs();
435 return BrilloPlatformTest(command_line->GetSwitchValueASCII("prefix"));
439 return AddEntropy(command_line->GetSwitchValueASCII("input"));
441 return GenerateKey(command_line->GetSwitchValueASCII("name"));
443 return GetCharacteristics(command_line->GetSwitchValueASCII("name"));
445 return ExportKey(command_line->GetSwitchValueASCII("name"));
447 return DeleteKey(command_line->GetSwitchValueASCII("name"));
451 return DoesKeyExist(command_line->GetSwitchValueASCII("name"))
    [all...]

Completed in 599 milliseconds

1 2