Searched defs:commands (Results 1 - 25 of 125) sorted by relevance

12345

/external/lldb/examples/python/
H A Dstacks.py4 import commands namespace
H A Dcmdtemplate.py13 import commands namespace
74 # Add any commands contained in this module to LLDB
H A Dglobals.py12 import commands namespace
H A Ddelta.py7 # print out statistics about how long commands took to execute and also
19 import commands namespace
29 in order to dump out the commands.'''
49 # Any commands whose names might be followed by more valid C identifier
74 for GDB remote commands to make a send/receive round trip. This can be
76 a long time during a preset set of debugger commands.'''
113 # Add any commands contained in this module to LLDB
H A Dprocess_events.py11 import commands namespace
29 xcode_dir = commands.getoutput("xcode-select --print-path")
56 def run_commands(command_interpreter, commands):
58 for command in commands:
81 parser.add_option('-b', '--breakpoint', action='append', type='string', metavar='BPEXPR', dest='breakpoints', help='Breakpoint commands to create after the target has been created, the values will be sent to the "_regexp-break" command which supports breakpoints by name, file:line, and address.')
84 parser.add_option('-l', '--launch-command', action='append', type='string', metavar='CMD', dest='launch_commands', help='LLDB command interpreter commands to run once after the process has launched. This option can be specified more than once.', default=[])
85 parser.add_option('-s', '--stop-command', action='append', type='string', metavar='CMD', dest='stop_commands', help='LLDB command interpreter commands to run each time the process stops. This option can be specified more than once.', default=[])
86 parser.add_option('-c', '--crash-command', action='append', type='string', metavar='CMD', dest='crash_commands', help='LLDB command interpreter commands to run in case the process crashes. This option can be specified more than once.', default=[])
87 parser.add_option('-x', '--exit-command', action='append', type='string', metavar='CMD', dest='exit_commands', help='LLDB command interpreter commands to run once after the process has exited. This option can be specified more than once.', default=[])
89 parser.add_option('--ignore-errors', action='store_false', dest='stop_on_error', help="Don't stop executing LLDB commands i
[all...]
/external/vogar/src/vogar/commands/
H A DRm.java17 package vogar.commands;
H A DMkdir.java17 package vogar.commands;
H A DCommandFailedException.java17 package vogar.commands;
/external/lldb/scripts/
H A Dverify_api.py3 import commands namespace
12 (command_exit_status, command_output) = commands.getstatusoutput(command)
/external/v8/test/fuzz-natives/
H A Dtestcfg.py7 from testrunner.local import commands namespace
21 output = commands.Execute(
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.commands_3.6.0.I20100512-1500.jar ... properties org/ org/eclipse/ org/eclipse/core/ org/eclipse/core/commands/ org/eclipse/core/commands/AbstractHandler.class AbstractHandler.java ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DAbstractApplication.java58 protected void processCommandLine(List commands) { argument
66 protected String[] getArguments(List commands, String param) { argument
67 int index = commands.indexOf(param);
70 commands.remove(index);
71 if (index == commands.size()) // if this is the last command
73 List args = new ArrayList(commands.size());
74 while (index < commands.size()) { // while not the last command
75 String command = (String) commands.get(index);
79 commands.remove(index);
/external/lldb/test/functionalities/exec/
H A DTestExec.py4 import commands namespace
14 (exit_status, output) = commands.getstatusoutput (command)
/external/lldb/test/functionalities/fat_archives/
H A DTestFatArchives.py4 import commands namespace
14 (exit_status, output) = commands.getstatusoutput (command)
/external/parameter-framework/test/functional-tests/PfwTestCase/Functions/
H A DtFunction_Export_Import_Domains.py52 import os, commands namespace
103 Tested commands :
106 Used commands :
205 assert commands.getoutput("cat %s"%(self.filesystem_01)) == hex_value, log.F("FILESYSTEM : parameter %s update error"%self.param_name_01)
214 assert commands.getoutput("cat %s"%(self.filesystem_02)) == hex_value, log.F("FILESYSTEM : parameter %s update error"%self.param_name_02)
223 assert commands.getoutput("cat %s"%(self.filesystem_03)) == hex_value, log.F("FILESYSTEM : parameter %s update error"%self.param_name_03)
240 Tested commands :
244 Used commands :
269 init_filesystem_01 = commands.getoutput("cat %s"%(self.filesystem_01))
270 init_filesystem_02 = commands
[all...]
H A DtFunction_Sync.py47 import commands, os namespace
80 Tested commands :
120 Tested commands :
123 Used commands :
136 init_filesystem_01 = commands.getoutput("cat %s"%(self.filesystem_01))
137 init_filesystem_02 = commands.getoutput("cat %s"%(self.filesystem_02))
138 init_filesystem_03 = commands.getoutput("cat %s"%(self.filesystem_03))
158 assert commands.getoutput("cat %s"%(self.filesystem_01)) != init_filesystem_01, log.F("FILESYSTEM : parameter %s update error"%self.param_name_01)
160 assert commands.getoutput("cat %s"%(self.filesystem_02)) != init_filesystem_02, log.F("FILESYSTEM : parameter %s update error"%self.param_name_02)
162 assert commands
[all...]
/external/parameter-framework/test/functional-tests/PfwTestCase/Types/
H A DtBit_Block.py57 import commands namespace
100 Tested commands :
103 Used commands :
126 assert commands.getoutput("cat %s"%(self.filesystem_name)) == filesystem_value[index_bit], log.F("FILESYSTEM : parameter update error for %s after setting bit %s "%(self.block_name, self.bit_name[index_bit]))
137 Tested commands :
140 Used commands :
159 init_filesystem_value=commands.getoutput("cat %s"%(self.filesystem_name))
170 assert commands.getoutput("cat %s"%(self.filesystem_name)) == init_filesystem_value, log.F("FILESYSTEM : parameter update error for %s"%(self.block_name))
188 Tested commands :
191 Used commands
[all...]
H A DtEnum.py53 import commands namespace
76 Tested commands :
79 Used commands :
99 assert commands.getoutput("cat %s"%(self.filesystem_name)) == filesystem_value, log.F("FILESYSTEM : parameter update error for %s"%(self.param_name))
108 Tested commands :
111 Used commands :
131 assert commands.getoutput("cat %s"%(self.filesystem_name)) == filesystem_value, log.F("FILESYSTEM : parameter update error for %s"%(self.param_name))
140 Tested commands :
143 Used commands :
163 assert commands
[all...]
H A DtFP16_Q0_15.py54 import commands namespace
76 Tested commands :
79 Used commands :
100 assert commands.getoutput('cat $PFW_RESULT/FP16_Q0.15') == hex_value, log.F("FILESYSTEM : parameter update error")
110 Tested commands :
113 Used commands :
134 assert commands.getoutput('cat $PFW_RESULT/FP16_Q0.15') == hex_value, "FILESYSTEM : parameter update error"
144 Tested commands :
147 Used commands :
158 param_check = commands
[all...]
H A DtFP16_Q15_0.py54 import commands namespace
75 Tested commands :
78 Used commands :
99 assert commands.getoutput('cat $PFW_RESULT/FP16_Q15.0') == hex_value, log.F("FILESYSTEM : parameter update error")
109 Tested commands :
112 Used commands :
133 assert commands.getoutput('cat $PFW_RESULT/FP16_Q15.0') == hex_value, log.F("FILESYSTEM : parameter update error")
143 Tested commands :
146 Used commands :
158 param_check = commands
[all...]
H A DtFP16_Q7_8.py54 import commands namespace
76 Tested commands :
79 Used commands :
101 assert commands.getoutput('cat $PFW_RESULT/FP16_Q7.8') == hex_value, log.F("FILESYSTEM : parameter update error")
111 Tested commands :
114 Used commands :
136 assert commands.getoutput('cat $PFW_RESULT/FP16_Q7.8') == hex_value, log.F("FILESYSTEM : parameter update error")
146 Tested commands :
149 Used commands :
161 param_check = commands
[all...]
H A DtFP32_Q0_31.py54 import commands namespace
75 Tested commands :
78 Used commands :
100 assert commands.getoutput('cat $PFW_RESULT/FP32_Q0.31') == hex_value, log.F("FILESYSTEM : parameter update error")
110 Tested commands :
113 Used commands :
135 assert commands.getoutput('cat $PFW_RESULT/FP32_Q0.31') == hex_value, log.F("FILESYSTEM : parameter update error")
145 Tested commands :
148 Used commands :
160 param_check = commands
[all...]
H A DtFP32_Q15_16.py54 import commands namespace
75 Tested commands :
78 Used commands :
100 assert commands.getoutput('cat $PFW_RESULT/FP32_Q15.16') == hex_value, log.F("FILESYSTEM : parameter update error")
111 Tested commands :
114 Used commands :
136 assert commands.getoutput('cat $PFW_RESULT/FP32_Q15.16') == hex_value, log.F("FILESYSTEM : parameter update error")
146 Tested commands :
149 Used commands :
161 param_check = commands
[all...]
H A DtFP32_Q31_0.py54 import commands namespace
75 Tested commands :
78 Used commands :
103 assert commands.getoutput('cat $PFW_RESULT/FP32_Q31.0') == hex_value, log.F("FILESYSTEM : parameter update error")
113 Tested commands :
116 Used commands :
141 assert commands.getoutput('cat $PFW_RESULT/FP32_Q31.0') == hex_value, log.F("FILESYSTEM : parameter update error")
151 Tested commands :
154 Used commands :
166 param_check = commands
[all...]
H A DtFP32_Q8_20.py54 import commands namespace
75 Tested commands :
78 Used commands :
103 assert commands.getoutput('cat $PFW_RESULT/FP32_Q8.20') == hex_value, log.F("FILESYSTEM : parameter update error")
113 Tested commands :
116 Used commands :
140 assert commands.getoutput('cat $PFW_RESULT/FP32_Q8.20') == hex_value, log.F("FILESYSTEM : parameter update error")
150 Tested commands :
153 Used commands :
165 param_check = commands
[all...]

Completed in 573 milliseconds

12345