Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 304) sorted by relevance

12345678910>>...13

/device/google/cuttlefish_common/host/libs/vm_manager/
Dcrosvm_manager.cpp75 cvd::Command command(config_->crosvm_binary()); in StartCommand() local
76 command.AddParameter("run"); in StartCommand()
79 command.AddParameter("--initrd=", config_->ramdisk_image_path()); in StartCommand()
81 command.AddParameter("--null-audio"); in StartCommand()
82 command.AddParameter("--mem=", config_->memory_mb()); in StartCommand()
83 command.AddParameter("--cpus=", config_->cpus()); in StartCommand()
84 command.AddParameter("--params=", config_->kernel_cmdline_as_string()); in StartCommand()
86 command.AddParameter("--rwdisk=", config_->system_image_path()); in StartCommand()
88 command.AddParameter("--rwdisk=", config_->super_image_path()); in StartCommand()
90 command.AddParameter("--rwdisk=", config_->data_image_path()); in StartCommand()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_sundry.py28 import distutils.command.bdist_dumb
30 import distutils.command.bdist_msi
31 import distutils.command.bdist
32 import distutils.command.bdist_rpm
33 import distutils.command.bdist_wininst
34 import distutils.command.build_clib
35 import distutils.command.build_ext
36 import distutils.command.build
37 import distutils.command.clean
38 import distutils.command.config
[all …]
/device/google/cuttlefish_common/common/libs/utils/
Dsubprocess.cpp63 const char* const* command, in subprocess_impl() argument
95 rval = execv(command[0], const_cast<char* const*>(command)); in subprocess_impl()
97 rval = execve(command[0], in subprocess_impl()
98 const_cast<char* const*>(command), in subprocess_impl()
102 LOG(ERROR) << "exec of " << command[0] << " failed (" << strerror(errno) in subprocess_impl()
109 LOG(INFO) << "Started (pid: " << pid << "): " << command[0]; in subprocess_impl()
111 while (command[i]) { in subprocess_impl()
112 LOG(INFO) << command[i++]; in subprocess_impl()
247 int execute(const std::vector<std::string>& command, in execute() argument
249 Command cmd(command[0]); in execute()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Ddist.py241 for (command, cmd_options) in options.items():
242 opt_dict = self.get_option_dict(command)
289 def get_option_dict(self, command): argument
295 dict = self.command_options.get(command)
297 dict = self.command_options[command] = {}
514 command = args[0]
515 if not command_re.match(command):
516 raise SystemExit, "invalid command name '%s'" % command
517 self.commands.append(command)
523 cmd_class = self.get_command_class(command)
[all …]
/device/generic/goldfish/ril/
Datchannel.h90 int at_send_command_singleline (const char *command,
94 int at_send_command_numeric (const char *command,
97 int at_send_command_multiline (const char *command,
104 int at_send_command (const char *command, ATResponse **pp_outResponse);
106 int at_send_command_sms (const char *command, const char *pdu,
Datchannel.c673 static int at_send_command_full_nolock (const char *command, ATCommandType type, in at_send_command_full_nolock() argument
685 err = writeline (command); in at_send_command_full_nolock()
740 static int at_send_command_full (const char *command, ATCommandType type, in at_send_command_full() argument
757 err = at_send_command_full_nolock(command, type, in at_send_command_full()
783 int at_send_command (const char *command, ATResponse **pp_outResponse) in at_send_command() argument
787 err = at_send_command_full (command, NO_RESULT, NULL, in at_send_command()
794 int at_send_command_singleline (const char *command, in at_send_command_singleline() argument
800 err = at_send_command_full (command, SINGLELINE, responsePrefix, in at_send_command_singleline()
817 int at_send_command_numeric (const char *command, in at_send_command_numeric() argument
822 err = at_send_command_full (command, NUMERIC, NULL, in at_send_command_numeric()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/
DUsbMassStorageDxe.uni5 // is the transportation protocol. The top layer is the command set.
6 // The transportation layer provides the transportation of the command, data and result.
7 // The command set defines the command, data and result.
9 // USB mass storage class adopts various industrial standard as its command set.
31command set. The transportation layer provides the transportation of the command, data and result.…
DUsbMassStorageDxe.inf5 # is the transportation protocol. The top layer is the command set.
6 # The transportation layer provides the transportation of the command, data and result.
7 # The command set defines the command, data and result.
9 # USB mass storage class adopts various industrial standard as its command set.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
DBaseHTTPServer.py243 self.command = None # set in case of error on the first line
254 [command, path, version] = words
280 [command, path] = words
282 if command != 'GET':
284 "Bad HTTP/0.9 request type (%r)" % command)
291 self.command, self.path, self.request_version = command, path, version
317 self.command = ''
326 mname = 'do_' + self.command
328 self.send_error(501, "Unsupported method (%r)" % self.command)
375 if self.command != 'HEAD' and code >= 200 and code not in (204, 304):
Dsmtpd.py154 command = line.upper()
157 command = line[:i].upper()
159 method = getattr(self, 'smtp_' + command, None)
161 self.push('502 Error: command "%s" not implemented' % command)
409 command = parts[1]
411 command = ''
412 if not Utils.list_exists(listname) or command not in (
415 listnames.append((rcpt, listname, command))
419 for rcpt, listname, command in listnames:
438 for rcpt, listname, command in listnames:
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
DBaseHTTPServer.py243 self.command = None # set in case of error on the first line
251 command, path, version = words
277 command, path = words
279 if command != 'GET':
281 "Bad HTTP/0.9 request type (%r)" % command)
288 self.command, self.path, self.request_version = command, path, version
314 self.command = ''
323 mname = 'do_' + self.command
325 self.send_error(501, "Unsupported method (%r)" % self.command)
372 if self.command != 'HEAD' and code >= 200 and code not in (204, 304):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dmain.c233 char *command = NULL; in Py_Main() local
262 command = (char *)malloc(strlen(_PyOS_optarg) + 2); in Py_Main()
263 if (command == NULL) in Py_Main()
266 strcpy(command, _PyOS_optarg); in Py_Main()
267 strcat(command, "\n"); in Py_Main()
439 if (command == NULL && module == NULL && _PyOS_optind < argc && in Py_Main()
508 (command == NULL && filename == NULL && module == NULL && stdin_is_interactive)) { in Py_Main()
515 if (command != NULL) { in Py_Main()
532 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) && in Py_Main()
542 if (command) { in Py_Main()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
Dmain.c238 char *command = NULL; in Py_Main() local
268 command = (char *)malloc(strlen(_PyOS_optarg) + 2); in Py_Main()
269 if (command == NULL) in Py_Main()
272 strcpy(command, _PyOS_optarg); in Py_Main()
273 strcat(command, "\n"); in Py_Main()
454 if (command == NULL && module == NULL && _PyOS_optind < argc && in Py_Main()
523 (command == NULL && filename == NULL && module == NULL && stdin_is_interactive)) { in Py_Main()
530 if (command != NULL) { in Py_Main()
547 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) && in Py_Main()
557 if (command) { in Py_Main()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
Dmain.c238 char *command = NULL; in Py_Main() local
296 command = (char *)malloc(strlen(_PyOS_optarg) + 2); in Py_Main()
297 if (command == NULL) in Py_Main()
300 strcpy(command, _PyOS_optarg); in Py_Main()
301 strcat(command, "\n"); in Py_Main()
477 if (command == NULL && module == NULL && _PyOS_optind < argc && in Py_Main()
546 (command == NULL && filename == NULL && module == NULL && stdin_is_interactive)) { in Py_Main()
553 if (command != NULL) { in Py_Main()
570 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) && in Py_Main()
580 if (command) { in Py_Main()
[all …]
/device/generic/goldfish/network/netmgr/
Dcommander.cpp56 void Commander::registerCommand(const char* commandStr, Command* command) { in registerCommand() argument
57 mCommands[commandStr] = command; in registerCommand()
110 auto command = mCommands.find(mReceiveBuffer.data()); in onReadAvailable() local
112 if (command != mCommands.end()) { in onReadAvailable()
113 command->second->onCommand(mReceiveBuffer.data(), args); in onReadAvailable()
/device/google/contexthub/util/nanotool/
Dnanotool.cpp55 NanotoolCommand command = NanotoolCommand::Poll; member
164 && (args->command == NanotoolCommand::Disable in ValidateArgs()
165 || args->command == NanotoolCommand::Calibrate in ValidateArgs()
166 || args->command == NanotoolCommand::Test in ValidateArgs()
167 || args->command == NanotoolCommand::Poll)) { in ValidateArgs()
174 if (args->command == NanotoolCommand::Flash in ValidateArgs()
182 if (args->command == NanotoolCommand::Poll) { in ValidateArgs()
195 if (args->command == NanotoolCommand::Calibrate) { in ValidateArgs()
318 args->command = StrToCommand(optarg); in ParseArgs()
319 if (args->command == NanotoolCommand::Invalid) { in ParseArgs()
[all …]
/device/linaro/hikey/hifi/xaf/hifi-dpf/core/
Dxf-shmem.c167 xf_proxy_message_t *command; in xf_shmem_process_input() local
180 command = XF_PROXY_COMMAND(core, XF_QUEUE_IDX(read_idx)); in xf_shmem_process_input()
183 XF_PROXY_INVALIDATE(command, sizeof(*command)); in xf_shmem_process_input()
186 m->id = command->session_id; in xf_shmem_process_input()
187 m->opcode = command->opcode; in xf_shmem_process_input()
188 m->length = command->length; in xf_shmem_process_input()
189 m->buffer = xf_ipc_a2b(core, command->address); in xf_shmem_process_input()
/device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/UserManuals/
DGenCfgOptUserManual.md26 the **'build'** command; the **GENBSF** use case may be done at any time.
37 and increments. The command signature for **UPDTXT** is:
59 command signature for **HEADER** is
72 following table summarizes the two command options.
75 Use the **HEADER** command to hide specific variables in the public header file.
80 The **STRUCT** command allows you to specify a specific data type for a
92 The **EMBED** command allows you to put one or more UPD data into a specify data
134 The command signature for **GENBSF** is
141 Every BSF command in the DSC file begins with **!BSF** or **@Bsf**. The
155 command.
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dcommand_template1 """distutils.command.x
3 Implements the Distutils 'x' command.
15 # Brief (40-50 characters) description of the command
Dupload.py59 for command, pyversion, filename in self.distribution.dist_files:
60 self.upload_file(command, pyversion, filename)
62 def upload_file(self, command, pyversion, filename): argument
99 'filetype': command,
121 if command == 'bdist_rpm':
125 elif command == 'bdist_dumb':
/device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/FdtPlatformDxe/
DREADME.txt54 Shell command "setfdt" to define the location of the FDT by the mean of an EFI
57 If the path passed in to the command is a valid EFI Shell file path, the
58 command translates it into the corresponding device path and stores that
62 If the path passed in to the command is not recognised as a valid EFI
63 Shell device path, the command handles it as device path and stored
66 Finally, the "-i" option of the "setfdt" command allows to trigger the FDT
67 installation process. The installation process is completed when the command
68 returns. The command can be invoked with the "-i" option only and in that
69 case the "Fdt" UEFI variable is not updated and the command just runs the
70 FDT installation process. If the command is invoked with the "-i" option and
/device/google/cuttlefish_common/host/commands/virtual_usb_manager/usbip/
Dclient.cpp43 rval.command = NetToHost(t.command); in NetToHost()
78 rval.command = HostToNet(t.command); in HostToNet()
147 switch (hdr.command) { in HandleIncomingMessage()
155 LOG(ERROR) << "Unsupported command requested: " << hdr.command; in HandleIncomingMessage()
246 rephdr.command = kUsbIpCmdRepSubmit; in HandleAsyncDataReady()
290 rephdr.command = kUsbIpCmdRepUnlink; in HandleUnlinkCmd()
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel1CommandsLib/
DUefiShellLevel1CommandsLib.uni28 #string STR_NO_SCRIPT #language en-US "The command '%H%s%N' is incorrect outside of a s…
64 " 1. This command exits the UEFI Shell or, if /b is specified, the current\r\n"
90 " command [arguments]\r\n"
91 " [command [arguments]]\r\n"
96 " command [arguments]\r\n"
97 " [command [arguments]]\r\n"
104 " command [arguments] - Command to be executed with optional arguments\r\n"
108 " 1. The FOR command executes one or more commands for each item in a set of\r\n"
113 " containing wildcards, and be expanded before command is executed.\r\n"
117 " %digit will be interpreted as a positional argument on the command line\r\n"
[all …]
/device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm12CommandLib/
DTpm12CommandLib.uni4 // This library is used by other modules to send TPM 1.2 command.
18 #string STR_MODULE_ABSTRACT #language en-US "Provides some TPM 1.2 command functions"
20 …SCRIPTION #language en-US "This library is used by other modules to send TPM 1.2 command."
/device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm2CommandLib/
DTpm2CommandLib.uni4 // This library is used by other modules to send TPM 2.0 command.
18 #string STR_MODULE_ABSTRACT #language en-US "Provides some TPM 2.0 command functions"
20 …SCRIPTION #language en-US "This library is used by other modules to send TPM 2.0 command."

12345678910>>...13