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

1234567891011>>

/external/chromium_org/chrome/test/base/
H A Dinteractive_test_utils.h55 bool command) WARN_UNUSED_RESULT;
65 bool command) WARN_UNUSED_RESULT;
76 bool command,
97 bool command,
109 bool command,
115 if (!SendKeyPressSync(browser, key, control, shift, alt, command))
103 SendKeyPressAndWaitWithDetails( const Browser* browser, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, int type, const content::NotificationSource& source, const content::Details<U>& details) argument
/external/chromium_org/chromeos/system/
H A Dname_value_pairs_parser_unittest.cc16 const char* command[] = { "/bin/echo", "Foo" }; local
17 EXPECT_TRUE(parser.GetSingleValueFromTool(arraysize(command), command,
93 const char* command[] = { "/bin/echo", local
107 arraysize(command), command, "=", "\n", "#"); local
/external/ltrace/
H A Dlibltrace.c42 char *command = NULL; variable
117 if (command) {
122 if (ltelf_init(&lte, command) == 0)
128 pid_t pid = execute_program(command, argv);
129 struct process *proc = open_program(command, pid);
132 command, strerror(errno));
/external/protobuf/gtest/test/
H A Dgtest_xml_output_unittest.py172 command = [gtest_prog_path,
175 p = gtest_test_utils.Subprocess(command)
184 % (command, p.exit_code, 1))
200 command = [gtest_prog_path, "%s=xml:%s" % (GTEST_OUTPUT_FLAG, xml_path)]
201 p = gtest_test_utils.Subprocess(command)
210 % (command, p.exit_code, expected_exit_code))
/external/qemu/android/kernel/
H A Dkernel_utils.cpp38 // Helper class to perform launch a command through popen() and call
42 ScopedPopenFile(const char* command) { argument
43 mFile = ::popen(command, "r");
77 String command("/usr/bin/file ");
78 command += filePath;
80 ScopedPopenFile file(command.c_str());
82 KERNEL_PERROR << "Could not launch command: " << command.c_str();
92 KERNEL_ERROR << "Could not read file command output!?";
/external/oprofile/opcontrol/
H A Dopcontrol.cpp672 char command[1024]; local
675 strcpy(command, argv[0]);
676 char* slash = strrchr(command, '/');
677 strcpy(slash ? slash + 1 : command, "oprofiled --session-dir="OP_DATA_DIR);
720 snprintf(command + strlen(command), sizeof(command) - strlen(command),
723 snprintf(command + strlen(command), sizeo
[all...]
/external/chromium_org/chrome/browser/sessions/
H A Dsession_service.cc204 bool MigrateClosedPayload(const SessionCommand& command, argument
211 if ((command.id() == kCommandWindowClosedObsolete ||
212 command.id() == kCommandTabClosedObsolete) &&
213 command.size() == 12 && sizeof(payload->id) == 4 &&
215 memcpy(&payload->id, command.contents(), 4);
216 memcpy(&payload->close_time, command.contents() + 4, 8);
470 SessionCommand* command = local
473 memcpy(command->contents(), &payload, sizeof(payload));
474 ScheduleCommand(command);
495 SessionCommand* command local
783 SessionCommand* command = new SessionCommand(kCommandSetSelectedTabInIndex, local
793 SessionCommand* command = local
810 SessionCommand* command = new SessionCommand(kCommandSetWindowBounds3, local
822 SessionCommand* command = local
837 SessionCommand* command = local
850 SessionCommand* command = local
862 SessionCommand* command = new SessionCommand( local
874 SessionCommand* command = new SessionCommand( local
886 SessionCommand* command = local
905 SessionCommand* command = local
1089 const SessionCommand* command = *i; local
1482 ReplacePendingCommand(SessionCommand* command) argument
1537 ScheduleCommand(SessionCommand* command) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
H A Dvmw_context.c72 } command; member in struct:vmw_svga_winsys_context
100 * ran out of command space, but because a substantial ammount of GMR was
154 if (vswc->command.used || pfence != NULL)
158 vswc->command.buffer,
159 vswc->command.used,
165 vswc->command.used = 0;
166 vswc->command.reserved = 0;
215 assert(nr_bytes <= vswc->command.size);
216 if(nr_bytes > vswc->command.size)
220 vswc->command
[all...]
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_context.c72 } command; member in struct:vmw_svga_winsys_context
100 * ran out of command space, but because a substantial ammount of GMR was
154 if (vswc->command.used || pfence != NULL)
158 vswc->command.buffer,
159 vswc->command.used,
165 vswc->command.used = 0;
166 vswc->command.reserved = 0;
215 assert(nr_bytes <= vswc->command.size);
216 if(nr_bytes > vswc->command.size)
220 vswc->command
[all...]
/external/chromium_org/chrome/browser/chromeos/offline/
H A Doffline_load_page.cc124 std::string command(cmd);
126 if (command.length() > 1 && command[0] == '"') {
127 command = command.substr(1, command.length() - 2);
130 if (command == "open_network_settings") {
132 } else if (command == "open_connectivity_diagnostics") {
143 LOG(WARNING) << "Unknown command:" << cmd;
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_network_protocol_handler.h36 DevToolsProtocol::Command* command);
40 DevToolsProtocol::Command* command);
/external/chromium_org/chrome/browser/extensions/api/commands/
H A Dcommand_service.cc167 Command* command,
170 extension_id, type, command, active, BROWSER_ACTION);
175 Command* command,
178 extension_id, type, command, active, PAGE_ACTION);
197 // Look up to see if the user has overridden how the command should work.
205 Command command = iter->second; local
210 command.set_accelerator(shortcut_assigned);
211 command.set_global(saved_command.global());
213 (*command_map)[iter->second.command_name()] = command;
228 // Nothing needs to be done if the existing command i
165 GetBrowserActionCommand(const std::string& extension_id, QueryType type, Command* command, bool* active) const argument
173 GetPageActionCommand(const std::string& extension_id, QueryType type, Command* command, bool* active) const argument
316 Command command = FindCommandByName(extension_id, command_name); local
331 Command command = FindCommandByName(extension_id, command_name); local
378 GetBoundExtensionCommand( const std::string& extension_id, const ui::Accelerator& accelerator, Command* command, ExtensionCommandType* command_type) const argument
519 const Command command = iter->second; local
551 CanAutoAssign(const Command &command, const Extension* extension) argument
611 const Command command = iter->second; local
793 std::string command; local
818 GetExtensionActionCommand( const std::string& extension_id, QueryType query_type, Command* command, bool* active, ExtensionCommandType action_type) const argument
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/
H A Deventpage.js8 command: 'render',
/external/chromium_org/chrome/installer/util/
H A Dapp_commands.h47 // Retrieves the command identified by |command_id| from the set, copying it
48 // into |command| and returning true if present.
49 bool Get(const std::wstring& command_id, AppCommand* command) const;
51 // Sets a command in the collection, adding it if it doesn't already exist.
52 // Returns true if a new command is added; false if |command_id| was already
53 // present and has been replaced with |command|.
54 bool Set(const std::wstring& command_id, const AppCommand& command);
56 // Removes a command from the collection. Returns false if |command_id| was
/external/chromium_org/gpu/command_buffer/service/
H A Dmocks.cc35 void AsyncAPIMock::SetToken(unsigned int command, argument
39 DCHECK_EQ(1u, command);
/external/chromium_org/native_client_sdk/src/examples/api/file_io/
H A Dexample.js52 function makeMessage(command, path) {
54 // command <path length> <path> <space-separated extra args>
55 var msg = command;
112 var command = parts[0];
115 if (command == 'ERR') {
117 } else if (command == 'STAT') {
119 } else if (command == 'READY') {
121 } else if (command == 'DISP') {
128 } else if (command == 'LIST') {
/external/chromium_org/testing/gtest/scripts/
H A Dcommon.py46 def GetCommandOutput(command):
47 """Runs the shell command and returns its stdout as a list of lines."""
49 f = os.popen(command, 'r')
/external/chromium_org/third_party/angle/src/
H A Dcommit_id.py8 def grab_output(command, cwd):
9 return sp.Popen(command, stdout=sp.PIPE, shell=True, cwd=cwd).communicate()[0].strip()
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprtrace.h120 ** PRTraceOption -- command operands to
298 ** command and value, attributes of the Trace Facility may be
302 ** command: An enumerated value in the set of PRTraceOption.
304 ** dependent on command; for each value of command, the type
361 #define PR_SET_TRACE_OPTION(command,value)\
362 PR_SetTraceOption((command),(value))
364 #define PR_SET_TRACE_OPTION(command,value)
369 PRTraceOption command, /* One of the enumerated values */
370 void *value /* command valu
[all...]
/external/chromium_org/third_party/skia/debugger/QT/
H A DSkImageWidget.cpp37 SkDrawCommand* command = commands[fDebugger->index()]; local
39 if (command->render(fSurface->getCanvas())) {
/external/chromium_org/tools/cr/cr/actions/
H A Ddebugger.py21 def AddArguments(cls, command, parser):
22 cr.Runner.AddSelectorArg(command, parser)
/external/chromium_org/ui/base/test/
H A Dui_controls.h52 bool command);
58 bool command,
H A Dui_controls_aura.h26 bool command) = 0;
32 bool command,
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1639-2.js34 // Get the debug command processor in paused state.
56 // executed in the evaluate command, the stepping must stop at the end
62 command : "evaluate",
73 command : "continue",
H A Dregress-1853.js40 // Get the debug command processor in paused state.
51 command: "setbreakpoint",
64 command: "setbreakpoint",

Completed in 696 milliseconds

1234567891011>>