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

  /external/chromium_org/chrome/installer/util/
google_update_util.cc 73 // If Google Update is present at system-level, sets |cmd_string| to the command
75 // Otherwise, clears |cmd_string| and returns false.
76 bool GetUserLevelGoogleUpdateInstallCommandLine(base::string16* cmd_string) {
77 cmd_string->clear();
91 *cmd_string = cmd.GetCommandLineString();
93 return !cmd_string->empty();
96 // Launches command |cmd_string|, and waits for |timeout| milliseconds before
101 bool LaunchProcessAndWaitWithTimeout(const base::string16& cmd_string,
106 VLOG(0) << "Launching: " << cmd_string;
107 if (!base::LaunchProcess(cmd_string, base::LaunchOptions()
199 base::string16 cmd_string; local
    [all...]
  /external/lldb/source/Commands/
CommandObjectSyntax.cpp 99 std::string cmd_string; local
100 command.GetCommandString (cmd_string);
101 result.AppendErrorWithFormat ("'%s' is not a known command.\n", cmd_string.c_str());
CommandObjectHelp.cpp 120 std::string cmd_string; local
121 command.GetCommandString (cmd_string);
125 s.Printf ("ambiguous command %s", cmd_string.c_str());
140 cmd_string.c_str());
149 cmd_string.c_str(),
  /frameworks/compile/slang/tests/
test.py 71 cmd_string = ('../../../../../out/host/linux-x86/bin/llvm-rs-cc '
76 base_args = cmd_string.split()
  /external/chromium_org/base/
command_line_unittest.cc 350 CommandLine::StringType cmd_string(cl_program_path.GetCommandLineString());
352 EXPECT_EQ('"', cmd_string[0]);
353 EXPECT_EQ(program_string, cmd_string.substr(1, program_string.length()));
354 EXPECT_EQ('"', cmd_string[program_string.length() + 1]);
  /external/chromium_org/tools/gyp/test/lib/
TestCmd.py     [all...]

Completed in 328 milliseconds