Searched defs:command (Results 251 - 275 of 428) sorted by relevance

<<1112131415161718

/external/chromium_org/chrome/browser/devtools/device/usb/
H A Dandroid_usb_device.cc154 AdbMessage::AdbMessage(uint32 command, argument
158 : command(command),
347 net::StreamSocket* AndroidUsbDevice::CreateSocket(const std::string& command) { argument
352 sockets_[socket_id] = new AndroidUsbSocket(this, socket_id, command,
357 void AndroidUsbDevice::Send(uint32 command, argument
361 scoped_refptr<AdbMessage> m = new AdbMessage(command, arg0, arg1, body);
380 header.push_back(message->command);
386 if (message->command == AdbMessage::kCommandAUTH &&
389 if (message->command
[all...]
/external/chromium_org/chrome/browser/
H A Derrorpage_browsertest.cc68 std::string command = base::StringPrintf( local
75 browser->tab_strip_model()->GetActiveWebContents(), command, &result));
/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/browser/extensions/
H A Dextension_messages_apitest.cc192 std::string command = base::StringPrintf( local
197 CHECK(content::ExecuteScriptAndExtractInt(frame, command, &result));
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_blocking_page.cc263 std::string command(cmd); // Make a local copy so we can modify it.
265 if (command.length() > 1 && command[0] == '"') {
266 command = command.substr(1, command.length() - 2);
268 if (command == kDoReportCommand) {
273 if (command == kDontReportCommand) {
278 if (command == kLearnMoreCommand) {
294 if (command
352 DCHECK(colon_index < command.size() - 1); int result_int = 0; bool result = base::StringToInt(base::StringPiece(command.begin() + colon_index + 1, command.end()), &result_int); command = command.substr(0, colon_index); if (result) element_index = static_cast<size_t>(result_int); } if (element_index >= unsafe_resources_.size()) argument
[all...]
H A Dsafe_browsing_blocking_page_test.cc330 virtual void CommandReceived(const std::string& command) OVERRIDE {
331 SafeBrowsingBlockingPage::CommandReceived(command);
427 void SendCommand(const std::string& command) { argument
432 // to its interstital page until it gets a command from the renderer
440 interstitial_page->CommandReceived(command);
783 // command anyway doesn't advance to the malware site.
806 // The "proceed" command should go back instead, if proceeding is disabled.
/external/chromium_org/chrome/browser/ssl/
H A Dssl_blocking_page.cc228 CommandLine command(base::FilePath("/system/bin/am"));
229 command.AppendArg("start");
230 command.AppendArg(
256 CommandLine command(base::FilePath(""));
260 command.SetProgram(pathname);
261 command.AppendArg(kClockCommands[i].argument);
265 if (command.GetProgram().empty()) {
270 CommandLine command(base::FilePath("/usr/bin/open"));
271 command.AppendArg("/System/Library/PreferencePanes/DateAndTime.prefPane");
277 CommandLine command(pat
551 CommandReceived(const std::string& command) argument
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dwindow_commands.cc191 const WindowCommand& command,
215 // Switch to main frame and retry command if subframe no longer exists.
225 status = command.Run(session, web_view, params, value);
190 ExecuteWindowCommand( const WindowCommand& command, Session* session, const base::DictionaryValue& params, scoped_ptr<base::Value>* value) argument
/external/chromium_org/chrome/test/remoting/
H A Dremote_desktop_browsertest.cc256 // Now log in using the username and password passed in from the command line.
380 bool command) {
388 command); local
507 // Enter the pin # passed in from the command line.
528 // Enter the pin # passed in from the command line.
558 // The test framework overrides any command line user-data-dir
374 SimulateKeyPressWithCode( ui::KeyboardCode keyCode, const char* code, bool control, bool shift, bool alt, bool command) argument
/external/chromium_org/cloud_print/virtual_driver/win/install/
H A Dsetup.cc87 void SpoolerServiceCommand(const char* command) { argument
92 command_line.AppendArg(command);
/external/chromium_org/components/crash/app/
H A Dbreakpad_win.cc208 // Now we just start chrome browser with the same command line.
443 const CommandLine& command = *CommandLine::ForCurrentProcess(); local
445 (command.HasSwitch(switches::kNoErrorDialogs) ||
488 const CommandLine& command = *CommandLine::ForCurrentProcess(); local
489 if (command.HasSwitch(switches::kDisableBreakpad))
559 if (command.HasSwitch(switches::kFullMemoryCrashReport))
/external/chromium_org/components/storage_monitor/
H A Dstorage_monitor_linux.cc210 std::vector<std::string> command; local
211 command.push_back(kUmountBinary);
212 command.push_back(path.value());
216 if (!base::LaunchProcess(command, options, &handle))
/external/chromium_org/gpu/command_buffer/common/
H A Dcmd_buffer_common.h5 // This file contains the common parts of command buffer formats.
31 // Computes the number of command buffer entries needed for a certain size. In
43 // Struct that defines the command header in the command buffer.
46 uint32_t command:11; member in struct:gpu::CommandHeader
52 command = _command;
56 // Sets the header based on the passed in command. Can not be used for
64 // Sets the header by a size in bytes of the immediate data after the command.
83 // Union that defines possible command buffer entries.
102 // Immediate command pu
[all...]
/external/chromium_org/sync/test/engine/
H A Dmock_connection_manager.cc218 sync_pb::ClientCommand* command) {
219 gu_client_command_.reset(command);
223 sync_pb::ClientCommand* command) {
224 commit_client_command_.reset(command);
217 SetGUClientCommand( sync_pb::ClientCommand* command) argument
222 SetCommitClientCommand( sync_pb::ClientCommand* command) argument
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dcompile_frontend.py215 command = ''
219 command += dump_module(dependency, recursively, processed_modules)
220 command += module_arg(name) + ':'
222 command += str(len(filtered_scripts))
226 command += ':'
228 command += ','
230 command += jsmodule_name_prefix + dependency
232 command += ' --js ' + path.join(devtools_frontend_path, name, script)
233 return command
284 command variable
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface_unittest.cc84 // Runs the CommandLineInterface with the given command line. The
85 // command is automatically split on spaces, and the string "$tmpdir"
87 void Run(const string& command);
257 void CommandLineInterfaceTest::Run(const string& command) { argument
259 SplitStringUsing(command, " ", &args);
542 // Test that generator parameters are correctly parsed from the command line.
1443 bool Run(const string& command) { argument
1446 SplitStringUsing(command, " ", &args);
/external/deqp/modules/glshared/
H A DglsFragOpInteractionCase.cpp217 static void computeRandomRenderCommand (de::Random& rnd, RenderCommand& command, glu::ApiType apiType, int targetW, int targetH) argument
219 command.quad = getRandomQuad(rnd, targetW, targetH);
220 command.depth = getRandomDepth(rnd);
221 gls::InteractionTestUtil::computeRandomRenderState(rnd, command.state, apiType, targetW, targetH);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-antlr.jar ... ant.BuildException java.io.IOException e String[] command org.apache.tools.ant.taskdefs. ...
/external/kernel-headers/original/uapi/linux/
H A Dscc.h139 int command; /* one of the KISS-Commands defined above */ member in struct:scc_kiss_cmd
153 char option; /* command for function port */
/external/lldb/source/Commands/
H A DCommandObjectSource.cpp97 // Instance variables to hold the values for command options.
127 DoExecute (Args& command, CommandReturnObject &result) argument
237 // Instance variables to hold the values for command options.
274 // This is kind of gross, but the command hasn't been parsed yet so we can't look at the option
511 DoExecute (Args& command, CommandReturnObject &result) argument
513 const size_t argc = command.GetArgumentCount();
719 // One little trick here, if you type the exact same list command twice in a row, it is
H A DCommandObjectWatchpoint.cpp183 // Add the entry for the first argument for this command to the object's arguments vector.
251 // Instance variables to hold the values for command options.
258 DoExecute (Args& command, CommandReturnObject &result) argument
292 if (command.GetArgumentCount() == 0)
307 if (!CommandObjectMultiwordWatchpoint::VerifyWatchpointIDs(target, command, wp_ids))
366 // Add the entry for the first argument for this command to the object's arguments vector.
375 DoExecute (Args& command, argument
396 if (command.GetArgumentCount() == 0)
407 if (!CommandObjectMultiwordWatchpoint::VerifyWatchpointIDs(target, command, wp_ids))
445 // Add the entry for the first argument for this command t
455 DoExecute(Args& command, CommandReturnObject &result) argument
538 DoExecute(Args& command, CommandReturnObject &result) argument
685 DoExecute(Args& command, CommandReturnObject &result) argument
843 DoExecute(Args& command, CommandReturnObject &result) argument
989 DoExecute(Args& command, CommandReturnObject &result) argument
[all...]
/external/lldb/source/Host/macosx/
H A DSymbols.cpp730 StreamString command; local
732 command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, uuid_str.c_str());
734 command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, file_path);
736 if (!command.GetString().empty())
741 Error error = Host::RunShellCommand (command.GetData(),
/external/lzma/CPP/7zip/Bundles/LzmaCon/
H A DLzmaAlone.cpp125 PrintHelpAndExit("Incorrect command");
199 const UString &command = nonSwitchStrings[paramIndex++]; local
230 if (command.CompareNoCase(L"b") == 0)
246 if (command.CompareNoCase(L"e") == 0)
248 else if (command.CompareNoCase(L"d") == 0)
/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/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface_unittest.cc83 // Runs the CommandLineInterface with the given command line. The
84 // command is automatically split on spaces, and the string "$tmpdir"
86 void Run(const string& command);
248 void CommandLineInterfaceTest::Run(const string& command) { argument
250 SplitStringUsing(command, " ", &args);
480 // Test that generator parameters are correctly parsed from the command line.
1284 bool Run(const string& command) { argument
1287 SplitStringUsing(command, " ", &args);

Completed in 586 milliseconds

<<1112131415161718