Searched refs:command (Results 476 - 500 of 1145) sorted by relevance

<<11121314151617181920>>

/external/llvm/test/MC/Mips/
H A Dnooddspreg-error.s14 # command line options and any inconsistencies reported via a warning.
/external/llvm/tools/lli/
H A DAndroid.mk7 # lli command line tool
/external/llvm/tools/llvm-c-test/
H A DAndroid.mk7 # llvm-c-test command line tool
/external/llvm/tools/llvm-config/
H A DAndroid.mk6 # llvm-config command line tool
/external/llvm/tools/llvm-lto/
H A DAndroid.mk7 # llvm-lto command line tool
/external/llvm/tools/llvm-objdump/
H A DAndroid.mk7 # llvm-objdump command line tool
/external/llvm/tools/opt/
H A DAndroid.mk7 # opt command line tool
/external/qemu/android/
H A Dqemulator.c27 static void handle_key_command( void* opaque, SkinKeyCommand command, int param );
328 /* used to respond to a given keyboard command shortcut
331 handle_key_command( void* opaque, SkinKeyCommand command, int down ) argument
371 if (command == keycodes[nn].cmd) {
380 // for the show-trackball command, handle down events to enable, and
382 if (command == SKIN_KEY_COMMAND_SHOW_TRACKBALL) {
393 switch (command)
427 if (command == SKIN_KEY_COMMAND_ONION_ALPHA_UP)
449 if (command == SKIN_KEY_COMMAND_CHANGE_LAYOUT_NEXT) {
454 else if (command
[all...]
/external/valgrind/main/gdbserver_tests/
H A DmcinvokeRU.stdoutB.exp23 monitor command request to kill this process
H A DmcinvokeWS.stdoutB.exp23 monitor command request to kill this process
/external/lldb/source/Commands/
H A DCommandObjectProcess.cpp197 result.AppendError ("no file in target, create a debug target using the 'target create' command");
250 // run, then you could have hit a breakpoint, whose command might switch the value, and
518 // Instance variables to hold the values for command options.
546 DoExecute (Args& command, argument
587 if (command.GetArgumentCount())
612 error.SetErrorString ("no process specified, create a target with a file, or specify the --pid or --name command option");
632 // FIXME: in the async case it will now be possible to get to the command
798 DoExecute (Args& command, CommandReturnObject &result) argument
805 if (command.GetArgumentCount() != 0)
807 result.AppendErrorWithFormat ("The '%s' command doe
995 DoExecute(Args& command, CommandReturnObject &result) argument
1125 DoExecute(Args& command, CommandReturnObject &result) argument
1270 DoExecute(Args& command, CommandReturnObject &result) argument
1327 DoExecute(Args& command, CommandReturnObject &result) argument
1400 DoExecute(Args& command, CommandReturnObject &result) argument
1472 DoExecute(Args& command, CommandReturnObject &result) argument
1534 DoExecute(Args& command, CommandReturnObject &result) argument
1592 DoExecute(Args& command, CommandReturnObject &result) argument
[all...]
/external/chromium_org/chrome/browser/devtools/device/usb/
H A Dandroid_usb_browsertest.cc88 const char* GetMockShellResponse(std::string command) { argument
89 if (command == kDeviceModelCommand) {
91 } else if (command == kOpenedUnixSocketsCommand) {
93 } else if (command == kDumpsysCommand) {
95 } else if (command == kListProcessesCommand) {
97 } else if (command == kInstalledChromePackagesCommand) {
176 if ((current_message_->command ^ 0xffffffff) != magic) {
222 switch (current_message_->command) {
255 append(response->command);
259 (response->command !
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Ddriver.py159 command = self._command_from_driver_input(driver_input)
162 self._server_process.write(command)
388 command = driver_input.test_name
390 command = self.test_to_uri(driver_input.test_name)
392 command = self._port.abspath_for_test(driver_input.test_name)
394 command = path.cygpath(command)
400 command += "'--timeout'%s" % driver_input.timeout
402 command += "'--pixel-test"
404 command
[all...]
/external/libvorbis/examples/
H A Dframeview.pl192 my $panel_quit=$panel_shell->Button(-class=>"Exit",-text=>"quit",-command=>[sub{Shutdown()}])->
208 my $panel_rescan=$panel_shell->Button(-text=>"rescan",-command=>[sub{scan_directory()}])->
214 -command=>[sub{$fileno-=10;$fileno=$first_file if($fileno<$first_file);
218 -command=>[sub{$fileno+=10;$fileno=$last_file if($fileno>$last_file);
222 -command=>[sub{$fileno-=1;$fileno=$first_file if($fileno<$first_file);
226 -command=>[sub{$fileno+=1;$fileno=$last_file if($fileno>$last_file);
240 -command=>[sub{draw_graph();}])->
249 -command=>[sub{draw_graph();}])->
265 $graph_slider->configure(-command=>[sub{load_graph()}]);
555 Checkbutton(-variable=>\$panel_twovars[$i],-command
[all...]
/external/chromium_org/content/browser/devtools/
H A Ddevtools_http_handler_impl.cc458 std::string* command,
463 *command = "list";
468 // Malformed command.
471 *command = path.substr(1);
473 size_t separator_pos = command->find("/");
475 *target_id = command->substr(separator_pos + 1);
476 *command = command->substr(0, separator_pos);
499 std::string command; local
501 if (!ParseJsonPath(path, &command,
456 ParseJsonPath( const std::string& path, std::string* command, std::string* target_id) argument
[all...]
/external/chromium_org/third_party/pexpect/
H A Dpexpect.py151 def run(command, timeout=-1, withexitstatus=False, events=None,
155 This function runs the given command; waits for it to finish; then
157 path to the command is not given then the path is searched.
191 Run a command and capture exit status::
215 Whenever one of the patterns is seen in the command out run() will send the
229 child = spawn(command, maxread=2000, logfile=logfile, cwd=cwd, env=env)
231 child = spawn(command, timeout=timeout, maxread=2000, logfile=logfile,
282 def __init__(self, command, args=[], timeout=30, maxread=2000,
285 """This is the constructor. The command parameter may be a string that
286 includes a command an
[all...]
/external/lldb/test/pexpect-2.4/
H A Dpexpect.py13 spawn. You can call the run() function to execute a command and return the
21 external child command and then interact with the child by sending lines and
145 def run (command, timeout=-1, withexitstatus=False, events=None, extra_args=None, logfile=None, cwd=None, env=None):
148 This function runs the given command; waits for it to finish; then
150 path to the command is not given then the path is searched.
184 Run a command and capture exit status::
206 Whenever one of the patterns is seen in the command out run() will send the
220 child = spawn(command, maxread=2000, logfile=logfile, cwd=cwd, env=env)
222 child = spawn(command, timeout=timeout, maxread=2000, logfile=logfile, cwd=cwd, env=env)
268 def __init__(self, command, arg
[all...]
/external/bouncycastle/
H A Dimport_bouncycastle.sh83 declare -r command=$1
84 shift || usage "No command specified. Try import, regenerate, or generate."
85 if [ "$command" = "import" ]; then
91 elif [ "$command" = "regenerate" ]; then
105 elif [ "$command" = "generate" ]; then
119 usage "Unknown command specified $command. Try import, regenerate, or generate."
/external/chromium_org/build/android/pylib/device/
H A Dadb_wrapper.py59 # command failures present differently.
66 """Runs an adb command on the device associated with this object.
72 check_error: Check that the command doesn't return an error message. This
76 The output of the command.
153 def Shell(self, command, expect_rc=None, timeout=_DEFAULT_TIMEOUT,
155 """Runs a shell command on the device.
158 command: The shell command to run.
159 expect_rc: (optional) If set checks that the command's return code matches
165 The output of the shell command a
[all...]
/external/chromium_org/chrome/browser/chromeos/login/signin/
H A Dmerge_session_load_page.h57 virtual void CommandReceived(const std::string& command) OVERRIDE;
/external/chromium_org/chrome/browser/chromeos/offline/
H A Doffline_load_page.h61 virtual void CommandReceived(const std::string& command) OVERRIDE;
/external/chromium_org/chrome/browser/devtools/device/adb/
H A Dadb_client_socket.h34 void SendCommand(const std::string& command,
/external/chromium_org/chrome/browser/net/
H A Dnet_log_temp_file.h53 // Accepts the button command and executes it.
54 void ProcessCommand(Command command);
/external/chromium_org/chrome/browser/ui/pdf/
H A Dpdf_unsupported_feature.cc193 virtual void CommandReceived(const std::string& command) OVERRIDE {
194 if (command == "0") {
201 if (command == "1") {
205 } else if (command == "2") {
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_action_view_controller.cc120 // ourselves as an accelerator if the command was removed. Otherwise, we need
274 extensions::Command* command) {
275 DCHECK(command);
279 extension_->id(), CommandService::ACTIVE_ONLY, command, NULL);
282 extension_->id(), CommandService::ACTIVE_ONLY, command, NULL);
273 GetExtensionCommand( extensions::Command* command) argument

Completed in 700 milliseconds

<<11121314151617181920>>