Searched refs:command (Results 151 - 175 of 527) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
H A DTest.pm113 my ($command) = @_;
123 system @$command;
/external/chromium/chrome/browser/tab_contents/
H A Dview_source_uitest.cc23 bool IsMenuCommandEnabled(int command) { argument
30 EXPECT_TRUE(window_proxy->IsMenuCommandEnabled(command, &enabled));
/external/chromium/testing/gtest/test/
H A Dgtest_xml_outfiles_test.py100 command = [gtest_prog_path, "--gtest_output=xml:%s" % self.output_dir_]
101 p = gtest_test_utils.Subprocess(command,
/external/gtest/test/
H A Dgtest_xml_outfiles_test.py100 command = [gtest_prog_path, "--gtest_output=xml:%s" % self.output_dir_]
101 p = gtest_test_utils.Subprocess(command,
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractExecutionThreadService.java125 public void execute(Runnable command) {
126 new Thread(command, getServiceName()).start();
/external/libxml2/
H A Dxmlcatalog.c98 char command[100]; local
110 * Parse the command itself
120 command[i++] = *cur++;
122 command[i] = 0;
182 * start interpreting the command
184 if (!strcmp(command, "exit"))
186 if (!strcmp(command, "quit"))
188 if (!strcmp(command, "bye"))
190 if (!strcmp(command, "public")) {
202 } else if (!strcmp(command, "syste
[all...]
/external/openssh/
H A Daudit.c175 * This will be called when a user runs a non-interactive command. Note that
180 audit_run_command(const char *command) argument
182 debug("audit run command euid %d user %s command '%.200s'", geteuid(),
183 audit_username(), command);
H A Dsession.c142 /* original command from peer. */
299 char *command; local
314 * or a command.
407 command = packet_get_string(&dlen);
408 debug("Exec command '%.500s'", command);
409 if (do_exec(s, command) != 0)
411 "command execution failed");
412 xfree(command);
443 * This is called to fork and execute a command whe
448 do_exec_no_pty(Session *s, const char *command) argument
643 do_exec_pty(Session *s, const char *command) argument
791 do_exec(Session *s, const char *command) argument
845 do_login(Session *s, const char *command) argument
923 check_quietlogin(Session *s, const char *command) argument
1617 do_child(Session *s, const char *command) argument
2158 char *command = packet_get_string(&len); local
[all...]
/external/protobuf/gtest/test/
H A Dgtest_xml_outfiles_test.py100 command = [gtest_prog_path, "--gtest_output=xml:%s" % self.output_dir_]
101 p = gtest_test_utils.Subprocess(command,
/external/qemu/android/skin/
H A Dkeyset.h74 /* retrieve the textual name of a given command, this is the command name without
75 * the "SKIN_KEY_COMMAND_" prefix. returns NULL if command is NONE or invalid
78 extern const char* skin_key_command_to_str ( SkinKeyCommand command );
85 /* returns a short human-friendly description of the command */
111 /* maximum number of key bindings per command. one command can be bound to several
122 /* return the number of keyboard bindings for a given command. results are placed in the 'bindings' array
125 SkinKeyCommand command,
128 /* return the command fo
[all...]
/external/v8/src/
H A Dd8-debug.h65 void KeyboardCommand(i::SmartArrayPointer<char> command);
76 // Handle a keyboard command.
77 void HandleKeyboardCommand(char* command);
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKView.h68 WK_EXPORT void WKViewReapplyEditCommand(WKViewRef view, WKEditCommandRef command);
69 WK_EXPORT void WKViewUnapplyEditCommand(WKViewRef view, WKEditCommandRef command);
/external/webkit/Tools/Scripts/
H A Dwebkit-tools-completion.sh42 local command current_command="${COMP_WORDS[1]}"
45 command="help";
48 command="$current_command"
57 case "$command" in
/external/chromium/build/util/
H A Dlastchange.py39 # command is apparently either not installed or not executable.
62 def RunGitCommand(directory, command):
71 command = ['git'] + command
77 command = ['sh', '-c', ' '.join(command)]
79 proc = subprocess.Popen(command,
115 # svn-related configuration. This command exits with an error code
/external/e2fsprogs/ext2ed/
H A Dmain.c14 2. The parser, which asks the command line from the user.
15 3. The dispatcher, which analyzes the command line and calls the appropriate handler function.
16 4. A command pattern matcher which is used along with the readline completion feature.
60 int AllowChanges=0; /* When set, the enablewrite command will fail */
68 char last_command_line [80]; /* A simple one command cache, in addition to the readline history */
134 * Read a character from the command window
189 * This function asks the user for a command and calls the dispatcher
191 * function readline to read the command, hence all the usual readline
192 * keys are available. The new command is saved both in the
193 * readline's history and in our tiny one-command cach
362 char command [80]; local
[all...]
/external/kernel-headers/original/linux/
H A Data.h87 /* bits in ATA command block registers */
103 ATA_ABORTED = (1 << 2), /* command aborted */
105 /* ATA command block registers */
234 ATA_PROT_ATAPI, /* packet command, PIO data xfer*/
235 ATA_PROT_ATAPI_NODATA, /* packet command, no data */
236 ATA_PROT_ATAPI_DMA, /* packet command with special DMA sauce */
271 u8 command; /* IO operation */ member in struct:ata_taskfile
315 /* For ATA-1 devices, if the INITIALIZE DEVICE PARAMETERS command
344 return (tf->command == ATA_CMD_READ_MULTI) ||
345 (tf->command
[all...]
H A Di2c.h83 char read_write, u8 command, int size,
92 extern s32 i2c_smbus_read_byte_data(struct i2c_client * client, u8 command);
94 u8 command, u8 value);
95 extern s32 i2c_smbus_read_word_data(struct i2c_client * client, u8 command);
97 u8 command, u16 value);
99 u8 command, u8 length,
103 u8 command, u8 *values);
105 u8 command, u8 length,
137 /* a ioctl like command that can be used to perform specific functions
140 int (*command)(struc member in struct:i2c_driver
[all...]
/external/chromium/net/tools/dump_cache/
H A Dupgrade.cc50 int32 command; member in struct:__anon2663::Message
165 // Only one command will be in-flight at a time. Let's start the Read IO here
359 msg.command = GET_PREV_ENTRY;
367 DCHECK(input_->msg.command == GET_PREV_ENTRY);
378 msg.command = GET_KEY;
386 DCHECK(input_->msg.command == GET_KEY);
423 msg.command = GET_USE_TIMES;
431 DCHECK(input_->msg.command == GET_USE_TIMES);
445 msg.command = GET_DATA_SIZE;
454 DCHECK(input_->msg.command
[all...]
/external/tcpdump/
H A Dprint-smb.c246 int command; local
249 command = data[0];
253 switch (command) {
799 int command; local
814 command = buf[4];
816 fn = smbfind(command, smb_fns);
897 command = words[1];
898 if (command == 0xFF)
903 fn = smbfind(command, smb_fns);
1349 int command; local
[all...]
/external/bluetooth/bluez/tools/
H A Dciptool.c410 } command[] = { variable in typeref:struct:__anon736
426 "\tciptool [options] [command]\n"
435 for (i = 0; command[i].cmd; i++)
436 printf("\t%-8s %-10s\t%s\n", command[i].cmd,
437 command[i].opt ? command[i].opt : " ",
438 command[i].doc);
485 for (i = 0; command[i].cmd; i++) {
486 if (strncmp(command[i].cmd, argv[0], 4) && strncmp(command[
[all...]
/external/llvm/utils/lit/lit/
H A DTestRunner.py14 def __init__(self, command, message):
15 self.command = command
76 def executeCommand(command, cwd=None, env=None):
77 p = subprocess.Popen(command, cwd=cwd,
98 raise NotImplementedError,"unsupported test command: '&'"
114 raise ValueError,'Unknown shell command: %r' % cmd.op
203 raise InternalShellError(j, '%r: command not found' % j.args[0])
344 # Only valgrind the first command in each pipeline, to avoid
370 command
[all...]
/external/chromium/chrome/browser/debugger/
H A Ddebugger_remote_service.cc26 // Constants for the "data", "result", and "command" JSON message fields.
29 const char kCommandKey[] = "command";
52 // retrieved from the request "command" field. If an operation result
75 std::string command; local
78 content->GetString(kCommandKey, &command);
79 response.SetString(kCommandKey, command);
82 // Unknown command (bad format?)
91 if (command == DebuggerRemoteServiceCommand::kAttach) {
95 } else if (command == DebuggerRemoteServiceCommand::kDetach) {
98 } else if (command
[all...]
/external/quake/quake/src/QW/client/
H A Dkeys.c155 char command[128]; local
165 command[i] = s[i];
166 command[i] = 0;
168 cmd = Cmd_CompleteCommand (command);
169 if (!cmd || strcmp (cmd, command))
170 cmd = Cvar_CompleteVariable (command);
171 if (!cmd || strcmp (cmd, command) )
220 Cbuf_AddText (key_lines[edit_line]+1); // valid command
235 SCR_UpdateScreen (); // force an update, because the command
241 { // command completio
[all...]
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp147 void EditorClientWinCE::registerCommandForUndo(WTF::PassRefPtr<WebCore::EditCommand> command) argument
152 void EditorClientWinCE::registerCommandForRedo(WTF::PassRefPtr<WebCore::EditCommand> command) argument
385 Editor::Command command = frame->editor()->command(interpretKeyEvent(event)); local
391 return !command.isTextInsertion() && command.execute(event);
394 if (command.execute(event))
/external/dbus/dbus/
H A Ddbus-auth.c75 * i.e. handles a DATA command.
138 DBusAuthCommand command,
243 DBusAuthCommand command,
246 DBusAuthCommand command,
249 DBusAuthCommand command,
267 DBusAuthCommand command,
270 DBusAuthCommand command,
273 DBusAuthCommand command,
276 DBusAuthCommand command,
1455 DBusString command; local
1747 handle_server_state_waiting_for_auth(DBusAuth *auth, DBusAuthCommand command, const DBusString *args) argument
1780 handle_server_state_waiting_for_data(DBusAuth *auth, DBusAuthCommand command, const DBusString *args) argument
1813 handle_server_state_waiting_for_begin(DBusAuth *auth, DBusAuthCommand command, const DBusString *args) argument
1988 handle_client_state_waiting_for_data(DBusAuth *auth, DBusAuthCommand command, const DBusString *args) argument
2020 handle_client_state_waiting_for_ok(DBusAuth *auth, DBusAuthCommand command, const DBusString *args) argument
2048 handle_client_state_waiting_for_reject(DBusAuth *auth, DBusAuthCommand command, const DBusString *args) argument
2073 handle_client_state_waiting_for_agree_unix_fd(DBusAuth *auth, DBusAuthCommand command, const DBusString *args) argument
2109 DBusAuthCommand command; /**< Corresponding enum */ member in struct:__anon4448
2125 lookup_command_from_name(DBusString *command) argument
2155 DBusAuthCommand command; local
[all...]

Completed in 726 milliseconds

1234567891011>>