HomeSort by relevance Sort by last modified time
    Searched refs:cmd (Results 226 - 250 of 1177) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/dvb/
osd.h 100 OSD_Command cmd; member in struct:osd_cmd_s
134 int cmd; member in struct:osd_cap_s
  /system/core/fastboot/
usbtest.c 128 const char *cmd; member in struct:__anon25911
145 for(i = 0; tests[i].cmd; i++) {
146 fprintf(stderr," %-8s %s\n", tests[i].cmd, tests[i].help);
191 for(i = 0; tests[i].cmd; i++) {
192 if(!strcmp(argv[1], tests[i].cmd)) {
197 tests[i].cmd);
201 fprintf(stderr,"usbtest: %s: FAIL\n", tests[i].cmd);
204 fprintf(stderr,"usbtest: %s: OKAY\n", tests[i].cmd);
  /bionic/libc/kernel/common/linux/
if_vlan.h 43 int cmd; member in struct:vlan_ioctl_args
  /external/chromium/testing/gmock/test/
gmock_output_test.py 138 def GetShellCommandOutput(cmd):
141 return gmock_test_utils.Subprocess(cmd, capture_stderr=False).output
144 def GetNormalizedCommandOutputAndLeakyTests(cmd):
148 cmd: the shell command.
153 return GetNormalizedOutputAndLeakyTests(GetShellCommandOutput(cmd))
  /external/clang/test/CodeGen/
2007-09-28-PackedUnionMember.c 29 struct H cmd = { 4, 412 }; local
  /external/iproute2/include/linux/
if_vlan.h 48 int cmd; /* Should be one of the vlan_ioctl_cmds enum above. */ member in struct:vlan_ioctl_args
  /external/libnfc-nxp/src/
phDal4Nfc_messageQueueLib.h 45 int phDal4Nfc_msgctl(int msqid, int cmd, void *buf);
  /external/qemu/distrib/sdl-1.2.12/src/audio/macrom/
SDL_romaudio.c 172 SndCommand cmd; local
186 cmd.cmd = bufferCmd;
187 cmd.param1 = 0;
188 cmd.param2 = (long)&header;
189 SndDoCommand (chan, &cmd, 0);
203 cmd.cmd = callBackCmd;
204 cmd.param1 = 0;
205 cmd.param2 = play_me
287 SndCommand cmd; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/xbios/
SDL_xbios_centscreen.h 101 #define Vlock(cmd) \
102 (long)trap_14_ww((short)0x50,(short)(cmd))
105 #define MultiMon(cmd) \
106 (long)trap_14_ww((short)0x52,(short)(cmd))
  /external/webkit/Tools/Scripts/
run-bindings-tests 41 cmd = ['perl', '-w',
50 return subprocess.call(cmd) == 0
57 cmd = ['diff',
61 if subprocess.call(cmd) != 0:
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_vlan.h 46 int cmd; /* Should be one of the vlan_ioctl_cmds enum above. */ member in struct:vlan_ioctl_args
  /system/netd/
NatController.h 40 int runCmd(const char *path, const char *cmd);
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.h 117 void (*onAppCmd)(struct android_app* app, int32_t cmd);
325 void android_app_pre_exec_cmd(struct android_app* android_app, int8_t cmd);
332 void android_app_post_exec_cmd(struct android_app* android_app, int8_t cmd);
  /external/elfutils/libelf/
elf_clone.c 29 elf_clone (Elf *elf, Elf_Cmd cmd)
40 if (cmd != ELF_C_EMPTY)
45 elf->maximum_size, elf->cmd, elf->parent, elf->kind,
elf_begin.c 41 Elf_Cmd cmd, Elf *parent)
46 elf = allocate_elf (fildes, map_address, offset, maxsize, cmd, parent,
187 Elf_Cmd cmd, Elf *parent)
228 elf = allocate_elf (fildes, map_address, offset, maxsize, cmd, parent,
420 size_t maxsize, Elf_Cmd cmd, Elf *parent)
434 return file_read_elf (fildes, map_address, offset, maxsize, cmd, parent);
437 return file_read_ar (fildes, map_address, offset, maxsize, cmd, parent);
445 return allocate_elf (fildes, map_address, offset, maxsize, cmd, parent,
451 read_unmmaped_file (int fildes, off_t offset, size_t maxsize, Elf_Cmd cmd,
479 return file_read_ar (fildes, NULL, offset, maxsize, cmd, parent)
    [all...]
  /external/openssl/crypto/bio/
bss_null.c 68 static long null_ctrl(BIO *h, int cmd, long arg1, void *arg2);
114 static long null_ctrl(BIO *b, int cmd, long num, void *ptr)
118 switch (cmd)
  /hardware/ril/mock-ril/src/java/com/android/internal/communication/
Msg.java 120 * Send a message with cmd, token, status followed by the data.
123 * @param cmd for the header
129 public static final void send(RilChannel rc, int cmd, long token, int status, MessageMicro pb)
132 mh.setCmd(cmd);
146 * Send a message with cmd, token, status followed by the data.
149 * @param cmd for the header
154 public static final void send(RilChannel rc, int cmd, long token, MessageMicro pb)
156 send(rc, cmd, token, 0, pb);
160 * Send a message with cmd followed by the data.
163 * @param cmd for the heade
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_cmd_nl80211.c 205 int wpa_driver_nl80211_driver_cmd(void *priv, char *cmd, char *buf,
214 if (os_strcasecmp(cmd, "STOP") == 0) {
217 } else if (os_strcasecmp(cmd, "START") == 0) {
220 } else if (os_strcasecmp(cmd, "MACADDR") == 0) {
227 } else if (os_strcasecmp(cmd, "RELOAD") == 0) {
229 } else if (os_strncasecmp(cmd, "POWERMODE ", 10) == 0) {
232 state = atoi(cmd + 10);
238 } else if (os_strncasecmp(cmd, "GETPOWER", 8) == 0) {
249 if (os_strcasecmp(cmd, "BGSCAN-START") == 0) {
255 } else if (os_strcasecmp(cmd, "BGSCAN-STOP") == 0)
300 char *cmd = "P2P_GET_NOA"; local
336 int cmd; member in struct:cmd_desc
    [all...]
  /external/icu4c/tools/genrb/
gendtjar.pl 154 cmd("make all", $verbose);
156 cmd("make uni-core-data", $verbose);
159 cmd("make JAVA_OUT_DIR=\"$icu4jDir/src/com/ibm/icu/dev/test/util/\" all java-output", $verbose);
165 cmd("gmake all", $verbose);
167 cmd("gmake uni-core-data", $verbose);
169 cmd("gmake JAVA_OUT_DIR=\"$icu4jDir/src/com/ibm/icu/dev/test/util/\" all java-output", $verbose);
172 cmd("devenv.com allinone/allinone.sln /useenv /build Debug", $verbose);
175 cmd("NMAKE /f makedata.mak ICUMAKE=\"$icuSrcDataDir\" CFG=debug uni-core-data", $verbose);
238 cmd($command, $verbose);
299 cmd($command, $verbose)
350 sub cmd { subroutine
    [all...]
  /external/qemu/android/protocol/
core-commands-impl.c 168 UICmdSetCoarseOrientation* cmd = local
170 android_sensors_set_coarse_orientation(cmd->orient);
186 UICmdTraceControl* cmd = (UICmdTraceControl*)cmd_param; local
187 if (cmd->start) {
208 UICmdGetNetSpeed* cmd = (UICmdGetNetSpeed*)cmd_param; local
213 if (cmd->index >= android_netspeeds_count ||
214 android_netspeeds[cmd->index].name == NULL) {
217 const NetworkSpeed* netspeed = &android_netspeeds[cmd->index];
252 UICmdGetNetDelay* cmd = (UICmdGetNetDelay*)cmd_param; local
257 if (cmd->index >= android_netdelays_count |
295 UICmdGetQemuPath* cmd = (UICmdGetQemuPath*)cmd_param; local
    [all...]
  /frameworks/base/cmds/servicemanager/
binder.c 60 const char *cmd_name(uint32_t cmd)
62 switch(cmd) {
201 uint32_t cmd = *ptr++; local
203 fprintf(stderr,"%s:\n", cmd_name(cmd));
205 switch(cmd) {
269 LOGE("parse: OOPS %d\n", cmd);
279 uint32_t cmd[2]; local
280 cmd[0] = BC_ACQUIRE;
281 cmd[1] = (uint32_t) ptr;
282 binder_write(bs, cmd, sizeof(cmd))
287 uint32_t cmd[2]; local
295 uint32_t cmd[3]; local
310 uint32_t cmd; member in struct:__anon14474
441 uint32_t cmd[2]; local
    [all...]
  /bootable/bootloader/legacy/nandwrite/
nandwrite.c 169 void handle_command(const char *cmd, unsigned a0, unsigned a1, unsigned a2)
171 if(startswith(cmd,"flash:")){
172 handle_flash(cmd + 6, a0, a1);
176 if(startswith(cmd,"dump:")){
177 handle_dump(cmd + 5, a0);
  /system/core/init/
parser.c 15 struct command *cmd;
39 cmd = node_to_item(node2, struct command, clist);
40 RAW(" %p", cmd->func);
41 for (n = 0; n < cmd->nargs; n++) {
42 RAW(" %s", cmd->args[n]);
signal_handler.c 52 struct command *cmd; local
112 cmd = node_to_item(node, struct command, clist);
113 cmd->func(cmd->nargs, cmd->args);
  /system/core/libcutils/
qtaguid.c 60 static int write_ctrl(const char *cmd) {
63 LOGV("write_ctrl(%s)", cmd);
70 res = TEMP_FAILURE_RETRY(write(fd, cmd, strlen(cmd)));
77 LOGI("Failed write_ctrl(%s) res=%d errno=%d", cmd, res, savedErrno);

Completed in 1982 milliseconds

1 2 3 4 5 6 7 8 91011>>