Searched refs:command_output (Results 1 - 6 of 6) sorted by relevance

/external/lldb/scripts/
H A Dverify_api.py12 (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/
H A Drippy.py308 (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, exitstatu
[all...]
/external/lldb/source/Host/macosx/
H A DSymbols.cpp740 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(),
/external/lldb/include/lldb/Host/
H A DHost.h459 std::string *command_output, // Pass NULL if you don't want the command output
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp975 std::string command_output; local
980 &command_output,
983 if (error.Success() && exit_status == 0 && !command_output.empty())
985 const char *cmd_output_ptr = command_output.c_str();
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py269 def _HasAdbPushSucceeded(command_output):
273 if not command_output:
277 if not re.search('^[0-9]', command_output.splitlines()[-1]):
278 logging.critical('PUSH FAILED: ' + command_output)

Completed in 213 milliseconds