Searched refs:str (Results 201 - 225 of 1024) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/router/pppd.mppe/pppd/plugins/rp-pppoe/
H A Dplugin.c376 * str -- error message
383 fatalSys(char const *str) argument
387 sprintf(buf, "%.256s: %.256s", str, strerror(i));
389 sprintf(buf, "RP-PPPoE: %.256s: %.256s", str, strerror(i));
397 * str -- error message
404 rp_fatal(char const *str) argument
407 printErr(str);
408 sprintf(buf, "RP-PPPoE: %.256s", str);
415 * str -- error message
422 sysErr(char const *str) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/auth/
H A Dauth_unix.c94 pass = Get_Pwnam(user_info->internal_username.str);
100 pass ? pass->pw_name : user_info->internal_username.str,
/asus-wl-520gu-7.0.1.45/src/router/samba/source/popt/
H A Dpoptint.h68 #define D_(dom, str) (str)
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/kernel/
H A Dpci-pc.c419 char * __devinit pcibios_setup(char *str) argument
421 if (!strcmp(str, "off")) {
425 else if (!strncmp(str, "bios", 4)) {
428 } else if (!strcmp(str, "nobios")) {
431 } else if (!strcmp(str, "nosort")) { /* Default */
436 else if (!strcmp(str, "conf1")) {
440 else if (!strcmp(str, "conf2")) {
445 else if (!strcmp(str, "rom")) {
448 } else if (!strcmp(str, "assign-busses")) {
451 } else if (!strncmp(str, "irqmas
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/ui/
H A Dui_loadcmds.c90 static long getaddr(char *str) argument
101 longaddr = strlen(str);
102 if (memcmp(str,"0x",2) == 0) longaddr -= 2;
105 if (longaddr) newaddr = (long) xtoq(str);
106 else newaddr = (long) xtoi(str);
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/e2p/
H A Dfeature.c167 int e2p_edit_feature2(const char *str, __u32 *compat_array, __u32 *ok_array, argument
185 buf = malloc(strlen(str)+1);
188 strcpy(buf, str);
247 int e2p_edit_feature(const char *str, __u32 *compat_array, __u32 *ok_array) argument
249 return e2p_edit_feature2(str, compat_array, ok_array, 0, 0, 0);
/asus-wl-520gu-7.0.1.45/src/router/samba/source/aparser/
H A Dparser.h20 #define DEBUG(lvl, str) printf str;
21 #define DEBUGADD(lvl, str) printf str;
91 BOOL io_SMBSTR(char *name, io_struct *ps, int depth, char **str, unsigned flags);
/asus-wl-520gu-7.0.1.45/src/router/samba/source/nsswitch/
H A Dwinbindd_acct.c95 char *p, *str; local
108 for ( i=0, str=string; i<NUM_PW_FIELDS-1; i++ ) {
109 if ( !(p = strchr( str, ':' )) ) {
114 if ( str )
115 fields[i] = str;
116 str = p + 1;
118 if ( str )
119 fields[i] = str;
184 char *p, *str; local
199 for ( i=0, str
443 char *str; local
573 char *str; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/shared.asus/openssl/
H A Dpem.h207 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
208 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
209 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
213 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
216 return((type *)PEM_ASN1_read((char *(*)())d2i_##asn1, str,fp,(char **)x,\
220 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
223 return(PEM_ASN1_write((int (*)())i2d_##asn1,str,fp, (char *)x, \
227 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
232 return(PEM_ASN1_write((int (*)())i2d_##asn1,str,fp, \
238 #define IMPLEMENT_PEM_read_bio(name, type, str, asn
[all...]
/asus-wl-520gu-7.0.1.45/src/router/config/
H A Dzconf.l46 void append_string(const char *str, int size)
54 memcpy(text_ptr, str, size);
60 void alloc_string(const char *str, int size)
63 memcpy(text, str, size);
72 int str = 0;
133 str = yytext[0];
168 if (str == yytext[0]) {
/asus-wl-520gu-7.0.1.45/src/router/iproute2/tc/
H A Dtc.c117 struct qdisc_util *get_qdisc_kind(char *str) argument
122 //printf("get_qdisc_kind: %s\n", str);//JY0716
127 if (strcmp(q->id, str) == 0)
130 snprintf(buf, sizeof(buf), "q_%s.so", str);
143 snprintf(buf, sizeof(buf), "%s_util", str);
165 strncpy(q->id, str, 15);
175 struct filter_util *get_filter_kind(char *str) argument
182 if (strcmp(q->id, str) == 0)
185 snprintf(buf, sizeof(buf), "f_%s.so", str);
198 snprintf(buf, sizeof(buf), "%s_util", str);
[all...]
/asus-wl-520gu-7.0.1.45/src/router/ppp/pppd/
H A Dutils.c153 char *str, *f, *buf0; local
207 str = 0;
240 str = va_arg(args, char *);
245 str = num;
248 str = strerror(errno);
255 str = num;
270 str = ctime(&t);
271 str += 4; /* chop off the day name */
272 str[15] = 0; /* chop off year and newline */
347 str
[all...]
/asus-wl-520gu-7.0.1.45/src/router/ppp/pppoecd/
H A Dutils.c151 char *str, *f, *buf0; local
205 str = 0;
238 str = va_arg(args, char *);
243 str = num;
246 str = strerror(errno);
253 str = num;
278 str = ctime(&t);
279 str += 4; /* chop off the day name */
280 str[15] = 0; /* chop off year and newline */
355 str
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/apollo/
H A Dconfig.c134 void dn_serial_console_write (struct console *co, const char *str,unsigned int count) argument
137 if (*str == '\n') {
142 sio01.rhrb_thrb = (unsigned char)*str++;
148 void dn_serial_print (const char *str) argument
150 while (*str) {
151 if (*str == '\n') {
156 sio01.rhrb_thrb = (unsigned char)*str++;
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/usb/
H A Dusbhid.c352 char *str; local
379 if (uhid->uhid_shiftflags & (FLG_SHIFT|FLG_CAPS)) str = code->kc_shifted;
380 else if (uhid->uhid_shiftflags & FLG_CTRL) str = code->kc_ctrl;
381 else str = code->kc_normal;
384 while (*str) {
385 pcconsole_enqueue(*str++);
388 printf("%s",str);
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/e2fsck/
H A Dmessage.c49 * %s <str> miscellaneous string
219 const char **cpp, *str; local
227 str = _(*cpp) + 1;
228 if (*first && islower(*str)) {
230 fputc(toupper(*str++), stdout);
232 print_e2fsck_message(ctx, str, pctx, *first, recurse+1);
442 printf("%s", ctx->str ? ctx->str : "NULL");
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dmodule.h355 #define __EXPORT_SYMBOL(sym,str) error config_must_be_included_before_module
362 #define __EXPORT_SYMBOL(sym,str)
369 #define __EXPORT_SYMBOL(sym,str) error this_object_must_be_defined_as_export_objs_in_the_Makefile
376 #define __EXPORT_SYMBOL(sym, str) \
378 __attribute__((section(".kstrtab"))) = str; \
383 #define __EXPORT_SYMBOL_GPL(sym, str) \
385 __attribute__((section(".kstrtab"))) = "GPLONLY_" str; \
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dmodule.h355 #define __EXPORT_SYMBOL(sym,str) error config_must_be_included_before_module
362 #define __EXPORT_SYMBOL(sym,str)
369 #define __EXPORT_SYMBOL(sym,str) error this_object_must_be_defined_as_export_objs_in_the_Makefile
376 #define __EXPORT_SYMBOL(sym, str) \
378 __attribute__((section(".kstrtab"))) = str; \
383 #define __EXPORT_SYMBOL_GPL(sym, str) \
385 __attribute__((section(".kstrtab"))) = "GPLONLY_" str; \
/asus-wl-520gu-7.0.1.45/src/router/www/www.WL-520GU/
H A Dclient_function.js197 var str = "";
201 str += clients.length+"\n";
208 str += "\n";
215 str += ", ";
217 str += clients[i][j];
220 str += "\n";
223 alert(str);
/asus-wl-520gu-7.0.1.45/src/router/mipsel/www/
H A Dclient_function.js197 var str = "";
201 str += clients.length+"\n";
208 str += "\n";
215 str += ", ";
217 str += clients[i][j];
220 str += "\n";
223 alert(str);
/asus-wl-520gu-7.0.1.45/src/router/acl/setfacl/
H A Dparse.c190 char *str; local
225 str = get_token(text_p);
226 if (str) {
228 error = get_uid(unquote(str), &cmd->c_id);
229 free(str);
244 str = get_token(text_p);
245 if (str) {
247 error = get_gid(unquote(str), &cmd->c_id);
248 free(str);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sh/kernel/
H A Dsetup_ec3104.c216 char str[8]; local
226 str[i] = ctrl_readb(EC3104_BASE + i);
232 str, EC3104_BASE, EC3104_IRQ, EC3104_IRQBASE);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/
H A Dlogibusmouse.c68 static int __init bmouse_setup(char *str) argument
72 str = get_options(str, ARRAY_SIZE(ints), ints);
H A Dmsbusmouse.c63 static int __init msmouse_setup(char *str) argument
67 str = get_options(str, ARRAY_SIZE(ints), ints);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/rio/
H A Drio_linux.h165 #define rio_dprintk(f, str...) do { if (rio_debug & f) printk (str);} while (0)
171 #define rio_dprintk(f, str...) /* nothing */

Completed in 249 milliseconds

1234567891011>>