Searched refs:cmd (Results 1 - 25 of 1711) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dfcntl.h29 #define IS_GETLK32(cmd) ((cmd) == F_GETLK)
30 #define IS_SETLK32(cmd) ((cmd) == F_SETLK)
31 #define IS_SETLKW32(cmd) ((cmd) == F_SETLKW)
32 #define IS_GETLK64(cmd) ((cmd) == F_GETLK64)
33 #define IS_SETLK64(cmd) ((cmd)
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dfcntl.h29 #define IS_GETLK32(cmd) ((cmd) == F_GETLK)
30 #define IS_SETLK32(cmd) ((cmd) == F_SETLK)
31 #define IS_SETLKW32(cmd) ((cmd) == F_SETLKW)
32 #define IS_GETLK64(cmd) ((cmd) == F_GETLK64)
33 #define IS_SETLK64(cmd) ((cmd)
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-x86_64/
H A Dioctl32.h9 * Register an 32bit ioctl translation handler for ioctl cmd.
13 * cmd: ioctl command.
18 extern int register_ioctl32_conversion(unsigned int cmd, int (*handler)(unsigned int, unsigned int, unsigned long, struct file *));
20 extern int unregister_ioctl32_conversion(unsigned int cmd);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-x86_64/
H A Dioctl32.h9 * Register an 32bit ioctl translation handler for ioctl cmd.
13 * cmd: ioctl command.
18 extern int register_ioctl32_conversion(unsigned int cmd, int (*handler)(unsigned int, unsigned int, unsigned long, struct file *));
20 extern int unregister_ioctl32_conversion(unsigned int cmd);
/asus-wl-520gu-7.0.1.45/src/router/acl/setfacl/
H A Dsequence.c38 cmd_t cmd)
40 free(cmd);
60 cmd_t cmd = seq->s_first; local
61 while (cmd) {
63 cmd_free(cmd);
64 cmd = seq->s_first;
82 cmd_t cmd)
84 cmd->c_next = NULL;
86 seq->s_first = seq->s_last = cmd;
88 seq->s_last->c_next = cmd;
37 cmd_free( cmd_t cmd) argument
80 seq_append( seq_t seq, cmd_t cmd) argument
96 seq_append_cmd( seq_t seq, cmd_tag_t cmd, acl_type_t type) argument
115 seq_get_cmd( seq_t seq, int which, cmd_t *cmd) argument
141 seq_delete_cmd( seq_t seq, cmd_t cmd) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/ui/
H A Dui_cmddisp.c140 ui_cmdline_t cmd; local
142 res = cmd_lookup(head, &cmd);
146 res = cmd_sw_validate(&cmd,cmd.switches);
149 cmd_sw_name(&cmd,res));
154 res = (*cmd.func)(&cmd,cmd.argc-cmd.argidx,
155 &(cmd
215 ui_showusage(ui_cmdline_t *cmd) argument
237 ui_command_t *cmd; local
[all...]
H A Durl.h50 int ui_process_url(char *URL, ui_cmdline_t *cmd,cfe_loadargs_t *la);
H A Dui_envcmds.c63 static int ui_cmd_setenv(ui_cmdline_t *cmd,int argc,char *argv[]);
64 static int ui_cmd_printenv(ui_cmdline_t *cmd,int argc,char *argv[]);
65 static int ui_cmd_unsetenv(ui_cmdline_t *cmd,int argc,char *argv[]);
69 static int ui_cmd_printenv(ui_cmdline_t *cmd,int argc,char *argv[]) argument
92 static int ui_cmd_setenv(ui_cmdline_t *cmd,int argc,char *argv[]) argument
99 varname = cmd_getarg(cmd,0);
102 return ui_showusage(cmd);
105 value = cmd_getarg(cmd,1);
107 return ui_showusage(cmd);
110 if (!cmd_sw_isset(cmd,"
130 ui_cmd_unsetenv(ui_cmdline_t *cmd,int argc,char *argv[]) argument
[all...]
H A Dui_misccmds.c64 static int ui_cmd_loop(ui_cmdline_t *cmd,int argc,char *argv[]);
66 static int ui_cmd_exit(ui_cmdline_t *cmd,int argc,char *argv[]);
68 static int ui_cmd_console(ui_cmdline_t *cmd,int argc,char *argv[]);
111 static int ui_cmd_loop(ui_cmdline_t *cmd,int argc,char *argv[]) argument
118 if (cmd_sw_value(cmd,"-count",&x)) count = atoi(x);
120 forever = cmd_sw_isset(cmd,"-forever");
122 x = cmd_getarg(cmd,0);
123 if (!x) return ui_showusage(cmd);
138 static int ui_cmd_exit(ui_cmdline_t *cmd,int argc,char *argv[]) argument
143 x = cmd_getarg(cmd,
153 ui_cmd_console(ui_cmdline_t *cmd,int argc,char *argv[]) argument
[all...]
H A Dui_command.c102 int cmd_sw_value(ui_cmdline_t *cmd,char *swname,char **swvalue) argument
106 for (idx = 0; idx < cmd->swc; idx++) {
107 if (strcmp(swname,cmd->swv[idx].swname) == 0) {
108 *swvalue = cmd->swv[idx].swvalue;
116 int cmd_sw_posn(ui_cmdline_t *cmd,char *swname) argument
120 for (idx = 0; idx < cmd->swc; idx++) {
121 if (strcmp(swname,cmd->swv[idx].swname) == 0) {
122 return cmd->swv[idx].swidx;
129 char *cmd_sw_name(ui_cmdline_t *cmd,int swidx) argument
131 if ((swidx < 0) || (swidx >= cmd
137 cmd_sw_isset(ui_cmdline_t *cmd,char *swname) argument
150 cmd_getarg(ui_cmdline_t *cmd,int argnum) argument
157 cmd_free(ui_cmdline_t *cmd) argument
173 cmd_sw_validate(ui_cmdline_t *cmd,char *validstr) argument
273 cmd_build_cmdline(queue_t *head, ui_cmdline_t *cmd) argument
336 cmdtab_t *cmd = NULL; local
436 _dumpcmds(cmdtab_t *cmd,int level,char **words,int verbose) argument
474 _showpossible(ui_cmdline_t *cline,cmdtab_t *cmd) argument
498 cmd_help(ui_cmdline_t *cmd,int argc,char *argv[]) argument
570 cmd_lookup(queue_t *head,ui_cmdline_t *cmd) argument
635 cmd_showusage(ui_cmdline_t *cmd) argument
666 ui_command_t *cmd; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390/
H A Dcpcmd.h12 extern void cpcmd(char *cmd, char *response, int rlen);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390x/
H A Dcpcmd.h12 extern void cpcmd(char *cmd, char *response, int rlen);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390/
H A Dcpcmd.h12 extern void cpcmd(char *cmd, char *response, int rlen);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390x/
H A Dcpcmd.h12 extern void cpcmd(char *cmd, char *response, int rlen);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/isdn/sc/
H A Devent.c47 isdn_ctrl cmd; local
56 memcpy(&cmd.parm.length, Data, sizeof(cmd.parm.length));
59 memcpy(&cmd.parm.setup, Data, sizeof(cmd.parm.setup));
62 strcpy(cmd.parm.num, Data);
66 cmd.command = event;
67 cmd.driver = adapter[card]->driverId;
68 cmd.arg = Channel;
69 return adapter[card]->card->statcallb(&cmd);
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/arch/mips/cpu/sb1250/src/
H A Dui_reset.c77 static int ui_cmd_reset(ui_cmdline_t *cmd,int argc,char *argv[]);
122 * ui_cmd_reset(cmd,argc,argv)
127 * cmd - command structure
134 static int ui_cmd_reset(ui_cmdline_t *cmd,int argc,char *argv[]) argument
144 if (cmd_sw_isset(cmd,"-yes")) confirm = 0;
146 if (cmd_sw_isset(cmd,"-softreset")) data |= M_SYS_SB_SOFTRES;
148 if (cmd_sw_isset(cmd,"-unicpu0")) data |= M_SYS_UNICPU0;
149 else if (cmd_sw_isset(cmd,"-unicpu1")) data |= M_SYS_UNICPU1;
151 if (cmd_sw_isset(cmd,"-sysreset")) data |= M_SYS_SYSTEM_RESET;
153 if (cmd_sw_isset(cmd,"
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/
H A Dscsi_queue.c65 * Arguments: cmd - command that we are adding to queue.
79 int scsi_mlqueue_insert(Scsi_Cmnd * cmd, int reason) argument
84 SCSI_LOG_MLQUEUE(1, printk("Inserting command %p into mlqueue\n", cmd));
90 scsi_delete_timer(cmd);
92 host = cmd->host;
107 if (scsi_retry_command(cmd) == 0) {
121 if (cmd->device->device_busy == 0) {
122 if (scsi_retry_command(cmd) == 0) {
126 cmd->device->device_blocked = TRUE;
132 cmd
[all...]
H A Dsun3_NCR5380.c168 #define NEXT(cmd) ((Scsi_Cmnd *)((cmd)->host_scribble))
169 #define NEXTADDR(cmd) ((Scsi_Cmnd **)&((cmd)->host_scribble))
172 #define H_NO(cmd) (cmd)->host->host_no
211 /* -1 for TAG_NONE is not possible with unsigned char cmd->tag */
259 static int is_lun_busy( Scsi_Cmnd *cmd, int should_be_tagged ) argument
261 SETUP_HOSTDATA(cmd->host);
263 if (hostdata->busy[cmd
283 cmd_get_tag( Scsi_Cmnd *cmd, int should_be_tagged ) argument
408 initialize_SCp(Scsi_Cmnd *cmd) argument
716 lprint_Scsi_Cmnd(Scsi_Cmnd *cmd, char *pos, char *buffer, int length) argument
812 NCR5380_queue_command(Scsi_Cmnd *cmd, void (*done)(Scsi_Cmnd *)) argument
1232 collect_stats(struct NCR5380_hostdata* hostdata, Scsi_Cmnd* cmd) argument
1288 NCR5380_select(struct Scsi_Host *instance, Scsi_Cmnd *cmd, int tag) argument
1799 Scsi_Cmnd *cmd = (Scsi_Cmnd *) hostdata->connected; local
2469 NCR5380_abort(Scsi_Cmnd *cmd) argument
2661 NCR5380_reset( Scsi_Cmnd *cmd, unsigned int reset_flags) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/netfilter_ipv4/
H A Dipt_helper.h6 u_int8_t cmd; //2008.05 Angela member in struct:ipt_helper_info
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/drm/
H A Dsis_drv.h37 int sis_flip(struct inode *inode, struct file *filp, unsigned int cmd,
39 int sis_flip_init(struct inode *inode, struct file *filp, unsigned int cmd,
41 int sis_flip_final(struct inode *inode, struct file *filp, unsigned int cmd,
H A Dsis_drm.h22 int sis_fb_alloc(struct inode *inode, struct file *filp, unsigned int cmd,
24 int sis_fb_free(struct inode *inode, struct file *filp, unsigned int cmd,
27 int sisp_agp_init(struct inode *inode, struct file *filp, unsigned int cmd,
29 int sisp_agp_alloc(struct inode *inode, struct file *filp, unsigned int cmd,
31 int sisp_agp_free(struct inode *inode, struct file *filp, unsigned int cmd,
/asus-wl-520gu-7.0.1.45/src/router/ez-ipupdate/
H A Dconf_file.c60 struct conf_cmd *cmd; local
116 cmd = commands;
117 while(cmd->name != NULL)
119 if(strcmp(cmd->name, cmd_start) == 0)
121 dprintf((stderr, "using cmd %s\n", cmd->name));
124 cmd++;
126 if(cmd->name == NULL)
131 cmd = commands;
132 while(cmd
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/drm-4.0/
H A Dtdfx_drv.h38 unsigned int cmd, unsigned long arg);
42 unsigned int cmd, unsigned long arg);
44 unsigned int cmd, unsigned long arg);
46 unsigned int cmd, unsigned long arg);
51 unsigned int cmd, unsigned long arg);
53 unsigned int cmd, unsigned long arg);
55 unsigned int cmd, unsigned long arg);
57 unsigned int cmd, unsigned long arg);
59 unsigned int cmd, unsigned long arg);
61 unsigned int cmd, unsigne
[all...]
/asus-wl-520gu-7.0.1.45/src/router/busybox/
H A Dmodprobe.c15 static char cmd[128]; variable
81 sprintf(cmd, "rmmod %s %s %s",
86 syslog(LOG_INFO, "%s", cmd);
88 printf("%s\n", cmd);
90 rc = system(cmd);
100 sprintf(cmd, "insmod %s %s %s",
105 strcat(cmd, argv[optind]);
106 strcat(cmd, " ");
110 syslog(LOG_INFO, "%s", cmd);
112 printf("%s\n", cmd);
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/utils/
H A Dsmbauth.c121 char *cmd = (char *)malloc(len); local
122 if (cmd == NULL)
125 free(cmd);
137 smb_snprintf(cmd, len, format, inet_ntoa(pdc_addr), user_name, password);
138 //printf("smbauth: cmd='%s'\n", cmd);
139 result = smbrun(cmd, NULL);
143 free(cmd);
160 free(cmd);
173 smb_snprintf(cmd, le
[all...]

Completed in 227 milliseconds

1234567891011>>