Searched refs:cmd (Results 151 - 175 of 752) sorted by relevance

1234567891011>>

/external/valgrind/main/coregrind/
H A Dfixup_macho_loadcmds.c28 cmd LC_SEGMENT_64
54 cmd LC_SEGMENT_64
382 struct load_command *cmd; local
385 for (c = 0, cmd = (struct load_command *)(mh+1);
387 c++, cmd = (struct load_command *)(cmd->cmdsize
388 + (unsigned long)cmd)) {
390 printf("load cmd: offset %4lu size %3d kind %2d = ",
391 (unsigned long)((UChar*)cmd - (UChar*)ii.macho_img),
392 cmd
[all...]
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
H A Dwpagui.cpp446 int WpaGui::ctrlRequest(const char *cmd, char *buf, size_t *buflen) argument
452 ret = wpa_ctrl_request(ctrl_conn, cmd, strlen(cmd), buf, buflen,
455 printf("'%s' command timed out.\n", cmd);
457 printf("'%s' command failed.\n", cmd);
950 QString cmd(sel);
954 if (cmd.startsWith("Select any")) {
955 cmd = "any";
957 int pos = cmd.indexOf(':');
960 cmd
[all...]
H A Dscanresults.cpp62 char cmd[20]; local
68 snprintf(cmd, sizeof(cmd), "BSS %d", index++);
73 if (wpagui->ctrlRequest(cmd, reply, &reply_len) < 0)
/external/qemu/android/protocol/
H A Dui-commands-impl.c92 UICmdSetWindowsScale* cmd = (UICmdSetWindowsScale*)data; local
93 android_emulator_set_window_scale(cmd->scale, cmd->is_dpi);
99 UICmdChangeDispBrightness* cmd = (UICmdChangeDispBrightness*)data; local
102 cmd->light, cmd->brightness);
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dproc-llist.c52 newnode->cmd = node->cmd;
76 free(cur->cmd);
H A Dproc-llist.h36 char *cmd; // command run by user member in struct:_lnode
/external/openssl/crypto/asn1/
H A Dbio_asn1.c117 static long asn1_bio_ctrl(BIO *h, int cmd, long arg1, void *arg2);
120 static long asn1_bio_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
365 static long asn1_bio_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) argument
368 return BIO_callback_ctrl(b->next_bio,cmd,fp);
371 static long asn1_bio_ctrl(BIO *b, int cmd, long arg1, void *arg2) argument
379 switch(cmd)
435 return BIO_ctrl(b->next_bio, cmd, arg1, arg2);
447 return BIO_ctrl(b->next_bio, cmd, arg1, arg2);
454 static int asn1_bio_set_ex(BIO *b, int cmd, argument
460 return BIO_ctrl(b, cmd,
463 asn1_bio_get_ex(BIO *b, int cmd, asn1_ps_func **ex_func, asn1_ps_func **ex_free_func) argument
[all...]
/external/quake/quake/src/WinQuake/
H A Dkeys.cpp161 const char *cmd; local
180 cmd = Cmd_CompleteCommand (key_lines[edit_line]+1);
181 if (!cmd)
182 cmd = Cvar_CompleteVariable (key_lines[edit_line]+1);
183 if (cmd)
185 Q_strcpy (key_lines[edit_line]+1, cmd);
186 key_linepos = Q_strlen(cmd)+1;
460 char cmd[1024]; local
486 cmd[0] = 0; // start out with a null string
490 strcat (cmd, " ");
602 char cmd[1024]; local
[all...]
/external/bluetooth/bluedroid/bta/include/
H A Dutl.h127 ** cmd - the fields of the device class to update.
137 extern BOOLEAN utl_set_device_class(tBTA_UTL_COD *p_cod, UINT8 cmd);
/external/dropbear/
H A Dchansession.h42 unsigned char * cmd; /* command to exec */ member in struct:ChanSess
/external/elfutils/libelf/
H A Delf_next.c85 ret = __libelf_next_arhdr_wrlock (parent) != 0 ? ELF_C_NULL : elf->cmd;
/external/kernel-headers/original/linux/
H A Dloop.h37 int (*transfer)(struct loop_device *, int cmd,
48 int (*ioctl)(struct loop_device *, int cmd,
135 int (*transfer)(struct loop_device *lo, int cmd,
142 int (*ioctl)(struct loop_device *, int cmd, unsigned long arg);
/external/libnfc-nxp/src/
H A DphHciNfc_AdminMgmt.h144 * \param[in] cmd cmd to be sent to the Admin gate of the
159 uint8_t cmd,
/external/linux-tools-perf/util/
H A Dexec_cmd.c127 int execl_perf_cmd(const char *cmd,...) argument
134 va_start(param, cmd);
135 argv[0] = cmd;
144 return error("too many args to run %s", cmd);
/external/openssl/crypto/bio/
H A Dbio_cb.c66 long MS_CALLBACK BIO_debug_callback(BIO *bio, int cmd, const char *argp, argument
75 if (BIO_CB_RETURN & cmd)
81 switch (cmd)
131 BIO_snprintf(p,p_maxlen,"bio callback - unknown type (%d)\n",cmd);
/external/oprofile/gui/
H A Doprof_start_util.h35 int do_exec_command(std::string const & cmd, std::vector<std::string> const & args = std::vector<std::string>());
/external/qemu/distrib/sdl-1.2.15/src/audio/macrom/
H A DSDL_romaudio.c172 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
287 SndCommand cmd; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dscanresults.cpp58 char cmd[20]; local
64 snprintf(cmd, sizeof(cmd), "BSS %d", index++);
69 if (wpagui->ctrlRequest(cmd, reply, &reply_len) < 0)
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_privsep.c30 static int wpa_priv_reg_cmd(struct wpa_driver_privsep_data *drv, int cmd) argument
34 res = sendto(drv->priv_socket, &cmd, sizeof(cmd), 0,
43 static int wpa_priv_cmd(struct wpa_driver_privsep_data *drv, int cmd, argument
50 io[0].iov_base = &cmd;
51 io[0].iov_len = sizeof(cmd);
90 "for reply (cmd=%d)", cmd);
194 struct privsep_cmd_set_key cmd; local
199 os_memset(&cmd,
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_privsep.c30 static int wpa_priv_reg_cmd(struct wpa_driver_privsep_data *drv, int cmd) argument
34 res = sendto(drv->priv_socket, &cmd, sizeof(cmd), 0,
43 static int wpa_priv_cmd(struct wpa_driver_privsep_data *drv, int cmd, argument
50 io[0].iov_base = &cmd;
51 io[0].iov_len = sizeof(cmd);
90 "for reply (cmd=%d)", cmd);
194 struct privsep_cmd_set_key cmd; local
199 os_memset(&cmd,
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_privsep.c30 static int wpa_priv_reg_cmd(struct wpa_driver_privsep_data *drv, int cmd) argument
34 res = sendto(drv->priv_socket, &cmd, sizeof(cmd), 0,
43 static int wpa_priv_cmd(struct wpa_driver_privsep_data *drv, int cmd, argument
50 io[0].iov_base = &cmd;
51 io[0].iov_len = sizeof(cmd);
90 "for reply (cmd=%d)", cmd);
194 struct privsep_cmd_set_key cmd; local
199 os_memset(&cmd,
[all...]
/external/strace/
H A Dquota.c42 #define QCMD_CMD(cmd) ((u_int32_t)(cmd) >> SUBCMDSHIFT)
43 #define QCMD_TYPE(cmd) ((u_int32_t)(cmd) & SUBCMDMASK)
45 #define OLD_CMD(cmd) ((u_int32_t)(cmd) << 8)
46 #define NEW_CMD(cmd) ((u_int32_t)(cmd) | 0x800000)
47 #define XQM_CMD(cmd) ((u_int32_t)(cmd) | ('
331 decode_cmd_data(struct tcb *tcp, u_int32_t cmd, unsigned long data) argument
639 u_int32_t cmd = QCMD_CMD(qcmd); local
[all...]
/external/libppp/src/
H A Dnat_cmd.c218 prompt_Printf(arg->prompt, "usage: nat %s %s\n", arg->cmd->name,
219 arg->cmd->syntax);
226 prompt_Printf(arg->prompt, "usage: nat %s %s\n", arg->cmd->name,
227 arg->cmd->syntax);
273 prompt_Printf(arg->prompt, "usage: nat %s %s\n", arg->cmd->name,
274 arg->cmd->syntax);
284 prompt_Printf(arg->prompt, "usage: nat %s %s\n", arg->cmd->name,
285 arg->cmd->syntax);
295 prompt_Printf(arg->prompt, "usage: nat %s %s\n", arg->cmd->name,
296 arg->cmd
393 char cmd[LINE_LEN]; local
[all...]
/external/clang/tools/diagtool/
H A DDiagTool.h26 const std::string cmd; member in class:diagtool::DiagTool
32 llvm::StringRef getName() const { return cmd; }
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testConfigs/testingConfigTemplate/
H A Dtesting.properties33 testExecutable=cmd

Completed in 655 milliseconds

1234567891011>>