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

  /hardware/qcom/audio/legacy/libalsa-intf/
alsaucm_test.c 67 const char *cmd_str; member in struct:cmd
177 for (cmd = cmds; cmd->cmd_str != NULL; cmd++) {
178 if (strncmp(cmd->cmd_str, command, strlen(cmd->cmd_str)) == 0)
182 if (cmd->cmd_str == NULL) {
208 fprintf(stderr, "%s: error failed to open sound card %s: %d\n", cmd->cmd_str, identifier, err);
217 fprintf(stderr, "%s: error failed to get card list: %d\n", cmd->cmd_str, err);
232 fprintf(stderr, "No card is opened before. %s command can't be executed\n", cmd->cmd_str);
238 fprintf(stderr, "%s: error failed to reset sound card %d\n", cmd->cmd_str, err);
245 fprintf(stderr, "No card is opened before. %s command can't be executed\n", cmd->cmd_str);
    [all...]
  /external/chromium_org/third_party/closure_compiler/
checker.py 92 cmd_str = " ".join(cmd)
93 self._debug("Running command: %s" % cmd_str)
97 cmd_str, stdout=devnull, stderr=subprocess.PIPE, shell=True)
  /external/chromium_org/chrome/installer/util/
master_preferences_unittest.cc 258 std::wstring cmd_str(
260 cmd_str.append(L" --do-not-launch-chrome");
261 CommandLine cmd_line = CommandLine::FromString(cmd_str);
283 cmd_str = L"setup.exe --do-not-launch-chrome";
284 cmd_line.ParseFromString(cmd_str);
install_util.cc 142 base::string16 cmd_str; local
143 LONG read_status = active_setup_key.ReadValue(L"StubPath", &cmd_str);
151 CommandLine cmd(CommandLine::FromString(cmd_str));
  /external/lldb/scripts/
disasm-gdb-remote.pl 584 my $cmd_str = shift;
585 my @cmd_chars = split(/ */, $cmd_str);
    [all...]
  /external/chromium_org/components/cloud_devices/tools/prototype/
prototype.py 127 self.cmd_str = ' '.join(cmd)
131 print 'Start: ', self.cmd_str
137 print 'Wait: ', self.cmd_str
141 print 'End: ', self.cmd_str
150 self.cmd_str = ' '.join(cmd)
153 print 'Fake start: ', self.cmd_str
156 print 'Fake wait: ', self.cmd_str
159 print 'Fake end: ', self.cmd_str
  /system/core/init/
init.c 547 char cmd_str[256] = ""; local
566 strlcat(cmd_str, cur_command->args[i], sizeof(cmd_str));
568 strlcat(cmd_str, " ", sizeof(cmd_str));
572 cmd_str, cur_action ? cur_action->name : "", ret, cur_command->filename,
    [all...]
  /external/lldb/include/lldb/Interpreter/
CommandObject.h 313 // string cmd_str, inserts the matches into matches, and returns the number added.
316 AddNamesMatchingPartialString (CommandMap &in_map, const char *cmd_str, StringList &matches);
  /external/lldb/source/Interpreter/
CommandObject.cpp 356 CommandObject::AddNamesMatchingPartialString (CommandObject::CommandMap &in_map, const char *cmd_str,
360 CommandDictCommandPartialMatch matcher(cmd_str);
    [all...]
CommandInterpreter.cpp 626 CommandInterpreter::GetCommandNamesMatchingPartialString (const char *cmd_str, bool include_aliases,
629 CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_str, matches);
633 CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_str, matches);
    [all...]

Completed in 603 milliseconds