Searched defs:command (Results 1 - 9 of 9) sorted by relevance

/system/core/adb/
H A Dframebuffer_service.c73 const char* command = "screencap"; local
74 const char *args[2] = {command, NULL};
75 execvp(command, (char**)args);
H A Dadb.h51 unsigned command; /* command identifier constant */ member in struct:amessage
56 unsigned magic; /* command ^ 0xffffffff */
297 /* these should only be used for the "adb disconnect" command */
H A Dcommandline.c83 " -d - directs command to the only connected USB device\n"
85 " -e - directs command to the only running emulator.\n"
87 " -s <specific device> - directs command to the device or emulator with the given\n"
102 " Using this command with no additional arguments\n"
112 " adb shell <command> - run remote shell command\n"
113 " adb emu <command> - run emulator console command\n"
149 " command line will be included even if -nosystem would\n"
359 static void format_host_command(char* buffer, size_t buflen, const char* command, transport_typ argument
453 char command[4096]; local
1169 char command[100]; local
[all...]
H A Dtransport.c100 unsigned command = p->msg.command; local
107 int b = (command >> (n*8)) & 255;
115 /* There is some non-ASCII name in the command, so dump
117 snprintf(cmd, sizeof cmd, "%08x", command);
218 p->msg.magic = p->msg.command ^ 0xffffffff;
263 p->msg.command = A_SYNC;
294 p->msg.command = A_SYNC;
325 if(p->msg.command == A_SYNC){
1156 if(p->msg.magic != (p->msg.command
[all...]
/system/netd/
H A Dlogwrapper.c169 int system_nosh(const char *command) argument
177 if (!command) /* just checking... */
181 * The command to argp splitting is from code that was
184 if (strnlen(command, sizeof(buffer) - 1) == sizeof(buffer) - 1) {
185 ALOGE("command line too long while processing: %s", command);
189 strcpy(buffer, command); // Command len is already checked.
193 ALOGE("argument overflow while processing: %s", command);
/system/core/init/
H A Dinit.h26 struct command struct
48 struct command *current;
/system/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp27 * This benchmark supports the following command-line options:
79 enum command { enum in class:AddIntsService
112 // Parse command line arguments
115 char *chptr; // character pointer for command-line parsing
/system/core/fastboot/
H A Dfastboot.c214 // at the command line with the -s option.
272 "usage: fastboot [ <option> ] <command>\n"
745 char command[256]; local
748 command[0] = 0;
750 strcat(command,*argv);
753 strcat(command," ");
756 fb_queue_command(command,"");
/system/core/sh/
H A Dparser.c67 * Shell command parser.
107 STATIC union node *command(void);
123 * Read and parse a command. Returns NEOF on end of file. (NULL is a
258 n1 = command();
269 lp->n = command();
288 command(void) function
301 /* Check for redirection which may precede command */
310 TRACE(("command: TNOT recognized\n"));
476 /* Handle an empty command like other simple commands. */
479 * An empty command befor
[all...]

Completed in 283 milliseconds