Searched defs:cmd (Results 176 - 200 of 417) sorted by relevance

1234567891011>>

/external/kernel-headers/original/linux/
H A Domap_csmi.h19 uint32_t cmd; member in struct:__anon7894
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dnetcap.c62 char *tmp, cmd[16], state, *text, *bounds; local
88 memset(cmd, 0, sizeof(cmd));
89 sscanf(buf, "%d (%15c", &ppid, cmd);
197 node.cmd = strdup(cmd);
240 printf(" %-16s %-4s", n->cmd, type);
/external/libnfc-nxp/src/
H A DphHciNfc_AdminMgmt.c702 uint8_t cmd,
727 switch( cmd )
737 HCP_MSG_TYPE_COMMAND, cmd);
771 HCP_MSG_TYPE_COMMAND, cmd);
786 HCP_MSG_TYPE_COMMAND, cmd);
801 p_admin_info->admin_pipe_info->prev_msg = cmd;
972 uint8_t cmd = (uint8_t) HCP_MSG_INSTRUCTION_INVALID; local
989 cmd = (uint8_t) GET_BITS8( hcp_message->msg_header,
992 switch( cmd )
699 phHciNfc_Send_Admin_Cmd( phHciNfc_sContext_t *psHciContext, void *pHwRef, uint8_t cmd, uint8_t length, void *params ) argument
H A DphHciNfc_Emulation.c1167 uint8_t cmd = (uint8_t) HCP_MSG_INSTRUCTION_INVALID; local
1191 cmd = (uint8_t) GET_BITS8( hcp_message->msg_header,
1196 switch( cmd )
/external/libpng/contrib/gregbook/
H A Drpng-win.c140 int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, PSTR cmd, int showmode) argument
224 p = cmd;
/external/linux-tools-perf/
H A Dbuiltin-help.c167 static void exec_man_cmd(const char *cmd, const char *page) argument
170 strbuf_addf(&shell_cmd, "%s %s", cmd, page);
172 warning("failed to exec '%s': %s", cmd, strerror(errno));
213 "Please consider using 'man.<tool>.cmd' instead.",
224 warning("'%s': cmd for supported man viewer.\n"
246 if (!strcmp(subkey, ".cmd")) {
300 static const char *prepend(const char *prefix, const char *cmd) argument
303 size_t cmd_len = strlen(cmd);
306 strcpy(p + pre_len, cmd);
/external/linux-tools-perf/util/
H A Dhelp.c276 const char *help_unknown_cmd(const char *cmd) argument
299 levenshtein(cmd, main_cmds.names[i]->name, 0, 2, 1, 4);
318 cmd, assumed);
327 fprintf(stderr, "perf: '%s' is not a perf-command. See 'perf --help'.\n", cmd);
/external/openssl/apps/
H A Ds_cb.c281 long MS_CALLBACK bio_dump_callback(BIO *bio, int cmd, const char *argp, argument
289 if (cmd == (BIO_CB_READ|BIO_CB_RETURN))
296 else if (cmd == (BIO_CB_WRITE|BIO_CB_RETURN))
/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/openssl/crypto/bio/
H A Dbio_lib.c333 long BIO_int_ctrl(BIO *b, int cmd, long larg, int iarg) argument
338 return(BIO_ctrl(b,cmd,larg,(char *)&i));
341 char *BIO_ptr_ctrl(BIO *b, int cmd, long larg) argument
345 if (BIO_ctrl(b,cmd,larg,(char *)&p) <= 0)
351 long BIO_ctrl(BIO *b, int cmd, long larg, void *parg) argument
367 ((ret=cb(b,BIO_CB_CTRL,parg,cmd,larg,1L)) <= 0))
370 ret=b->method->ctrl(b,cmd,larg,parg);
373 ret=cb(b,BIO_CB_CTRL|BIO_CB_RETURN,parg,cmd,
378 long BIO_callback_ctrl(BIO *b, int cmd, void (*fp)(struct bio_st *, int, const char *, int, long, long)) argument
394 ((ret=cb(b,BIO_CB_CTRL,(void *)&fp,cmd,
[all...]
/external/openssl/crypto/evp/
H A Dpmeth_lib.c385 int cmd, int p1, void *p2)
408 ret = ctx->pmeth->ctrl(ctx, cmd, p1, p2);
384 EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, int cmd, int p1, void *p2) argument
/external/openssl/crypto/x509/
H A Dx509_lu.c112 int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, long argl, argument
117 return ctx->method->ctrl(ctx,cmd,argc,argl,ret);
/external/openssl/ssl/
H A Ds3_lib.c3095 long ssl3_ctrl(SSL *s, int cmd, long larg, void *parg) argument
3102 cmd == SSL_CTRL_SET_TMP_RSA ||
3103 cmd == SSL_CTRL_SET_TMP_RSA_CB ||
3106 cmd == SSL_CTRL_SET_TMP_DH ||
3107 cmd == SSL_CTRL_SET_TMP_DH_CB ||
3119 switch (cmd)
3397 long ssl3_callback_ctrl(SSL *s, int cmd, void (*fp)(void)) argument
3404 cmd == SSL_CTRL_SET_TMP_RSA_CB ||
3407 cmd == SSL_CTRL_SET_TMP_DH_CB ||
3419 switch (cmd)
3454 ssl3_ctx_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg) argument
3702 ssl3_ctx_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp)(void)) argument
[all...]
/external/oprofile/daemon/
H A Dopd_perfmon.c74 static int perfmonctl(int fd, int cmd, void * arg, int narg) argument
76 return syscall(__NR_perfmonctl, fd, cmd, arg, narg);
/external/qemu/audio/
H A Desdaudio.c315 static int qesd_ctl_out (HWVoiceOut *hw, int cmd, ...) argument
318 (void) cmd;
523 static int qesd_ctl_in (HWVoiceIn *hw, int cmd, ...) argument
526 (void) cmd;
H A Dfmodaudio.c382 static int fmod_ctl_out (HWVoiceOut *hw, int cmd, ...) argument
387 switch (cmd) {
598 static int fmod_ctl_in (HWVoiceIn *hw, int cmd, ...) argument
603 switch (cmd) {
H A Dpaaudio.c473 static int qpa_ctl_out (HWVoiceOut *hw, int cmd, ...) argument
476 (void) cmd;
480 static int qpa_ctl_in (HWVoiceIn *hw, int cmd, ...) argument
483 (void) cmd;
H A Dwavaudio.c205 static int wav_out_ctl (HWVoiceOut *hw, int cmd, ...) argument
208 (void) cmd;
397 static int wav_in_ctl (HWVoiceIn *hw, int cmd, ...) argument
400 (void) cmd;
H A Dwinaudio.c321 winaudio_out_ctl (HWVoiceOut *hw, int cmd, ...) argument
325 switch (cmd) {
587 winaudio_in_ctl (HWVoiceIn *hw, int cmd, ...) argument
591 switch (cmd) {
/external/qemu/hw/
H A Dbt-hci-csr.c153 s->bd_addr.b[0] = data[offset + 7]; /* Beyond cmd packet end(!?) */
357 static int csrhci_ioctl(struct CharDriverState *chr, int cmd, void *arg) argument
363 switch (cmd) {
H A Dgoldfish_mmc.c122 int cmd; member in struct:mmc_opcode
168 while (opcode->cmd != command && opcode->cmd != -1) opcode++;
215 static void goldfish_mmc_do_command(struct goldfish_mmc_state *s, uint32_t cmd, uint32_t arg) argument
219 int opcode = cmd & 63;
221 // fprintf(stderr, "goldfish_mmc_do_command opcode: %s (0x%04X), arg: %d\n", get_command_name(opcode), cmd, arg);
H A Di8259.c289 int priority, cmd, irq; local
314 cmd = val >> 5;
315 switch(cmd) {
318 s->rotate_on_auto_eoi = cmd >> 2;
326 if (cmd == 5)
/external/qemu/telephony/
H A Dsim_card.c326 asimcard_io( ASimCard sim, const char* cmd )
332 static const struct { const char* cmd; const char* answer; } answers[] = member in struct:__anon12070
376 assert( memcmp( cmd, "+CRSM=", 6 ) == 0 );
379 if ( sscanf(cmd, "+CRSM=%d,%d,%d,%d,%d", &command, &id, &p1, &p2, &p3) == 5 ) {
435 if (!strcmp("+CRSM=178,28480,1,4,32", cmd)) {
440 for (nn = 0; answers[nn].cmd != NULL; nn++) {
441 if ( !strcmp( answers[nn].cmd, cmd ) ) {
/external/quake/quake/src/QW/client/
H A Dgl_vidandroid.c325 void IN_MouseMove (usercmd_t *cmd) argument
330 void IN_Move (usercmd_t *cmd) argument
332 IN_MouseMove(cmd);
H A Dsys_android.c268 char cmd[256]; local
282 sprintf(cmd, "xterm -e %s %s", editor, filename);
283 system(cmd);

Completed in 375 milliseconds

1234567891011>>