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

  /external/lldb/scripts/
verify_api.py 12 (command_exit_status, command_output) = commands.getstatusoutput(command)
14 if command_output:
15 return command_output[0:-1].split("'\n")
  /external/lldb/test/pexpect-2.4/examples/
rippy.py 308 (command_output, exitstatus) = run(cmd)
309 ar = re.findall("(mp3lame)", command_output)
356 (command_output, exitstatus) = pexpect.run(cmd, events={pexpect.TIMEOUT:progress_callback}, timeout=5, withexitstatus=True, logfile=GLOBAL_LOGFILE)
360 return (command_output, exitstatus)
419 (command_output, exitstatus) = run(cmd)
420 ar = re.findall("Movie-Aspect is ([0-9]+\.?[0-9]*:[0-9]+\.?[0-9]*)", command_output)
428 #idh = re.findall("ID_VIDEO_HEIGHT=([0-9]+)", command_output)
444 (command_output, exitstatus) = run(cmd)
445 idl = re.findall("ID_AUDIO_ID=([0-9]+)", command_output)
454 (command_output, exitstatus) = run(cmd
    [all...]
  /external/lldb/source/Host/macosx/
Symbols.cpp 740 std::string command_output; local
745 &command_output, // Command output
748 if (error.Success() && exit_status == 0 && !command_output.empty())
751 (const UInt8 *)command_output.data(),
752 command_output.size(),
    [all...]
  /external/lldb/include/lldb/Host/
Host.h 459 std::string *command_output, // Pass NULL if you don't want the command output
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwin.cpp 975 std::string command_output; local
    [all...]
  /external/chromium_org/build/android/pylib/
android_commands.py 268 def _HasAdbPushSucceeded(command_output):
272 if not command_output:
276 if not re.search('^[0-9]', command_output.splitlines()[-1]):
277 logging.critical('PUSH FAILED: ' + command_output)
    [all...]

Completed in 229 milliseconds