Searched refs:str (Results 451 - 475 of 1024) sorted by relevance

<<11121314151617181920>>

/asus-wl-520gu-7.0.1.45/src/router/busybox/
H A Dinsmod.c1309 static int get_kernel_version(char str[STRVERSIONLEN]) argument
1316 strncpy(str, uts_info.release, STRVERSIONLEN);
1340 static unsigned long ncv_symbol_hash(const char *str) argument
1342 size_t len = strlen(str);
1343 if (len > 10 && str[len - 10] == '_' && str[len - 9] == 'R')
1345 return obj_elf_hash_n(str, len);
1771 char *r, *str; local
1773 str = alloca(strlen(q));
1774 for (r = str,
1864 old_get_module_version(struct obj_file *f, char str[STRVERSIONLEN]) argument
2034 char *str; local
2159 char *str; local
2355 new_get_module_version(struct obj_file *f, char str[STRVERSIONLEN]) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/i386/kernel/
H A Dpci-pc.c1430 char * __devinit pcibios_setup(char *str) argument
1432 if (!strcmp(str, "off")) {
1437 else if (!strcmp(str, "bios")) {
1440 } else if (!strcmp(str, "nobios")) {
1443 } else if (!strcmp(str, "nosort")) {
1446 } else if (!strcmp(str, "biosirq")) {
1452 else if (!strcmp(str, "conf1")) {
1456 else if (!strcmp(str, "conf2")) {
1461 else if (!strcmp(str, "rom")) {
1464 } else if (!strcmp(str, "assig
[all...]
/asus-wl-520gu-7.0.1.45/src/router/library/libupnp-1.2.1/upnp/src/genlib/net/http/
H A Dhttpparser.c698 * OUT memptr* str ; Buffer to get the scanner buffer contents.
712 OUT memptr * str )
722 str->length = 0;
723 str->buf = scanner_get_str( scanner ); // point to next char in input
730 str->length += token_1.length;
744 if( str->length == 0 ) {
915 * OUT memptr* str ; Buffer to copy scanner buffer contents to
919 * success, 'str' points to a string that runs until eol
928 OUT memptr * str )
936 str
1294 matchstr( IN char *str, IN size_t slen, IN const char *fmt, ... ) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/parisc/kernel/
H A Dled.c644 int lcd_print( char *str )
655 strncpy(lcd_text, str, sizeof(lcd_text)-1);
663 if (str && *str)
664 gsc_writeb(*str++, LCD_DATA_REG);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/kernel/
H A Dsmpboot.c90 static int __init nosmp(char *str) argument
98 static int __init maxcpus(char *str) argument
100 get_option(&str, &max_cpus);
107 static int __init cpumask(char *str) argument
109 get_option(&str, &cpu_mask);
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/misc/
H A Ddumpe2fs.c100 const char *str, int *first)
108 fputs(str, stdout);
289 char str[80]; local
319 uuid_unparse(&jsb->s_users[i*16], str);
322 str);
99 print_bg_opt(int bg_flags, int mask, const char *str, int *first) argument
/asus-wl-520gu-7.0.1.45/src/router/ppp/pppd/
H A Dsys-sunos4.c1294 struct strioctl str; local
1296 str.ic_cmd = cmd;
1297 str.ic_timout = 0;
1298 str.ic_len = ilen;
1299 str.ic_dp = ptr;
1300 if (ioctl(fd, I_STR, &str) == -1)
1302 if (str.ic_len != olen)
1304 olen, str.ic_len, cmd);
1372 strtoul(str, ptr, base)
1373 char *str, **pt
[all...]
/asus-wl-520gu-7.0.1.45/src/router/pppd/pppd/
H A Dsys-sunos4.c1411 struct strioctl str; local
1413 str.ic_cmd = cmd;
1414 str.ic_timout = 0;
1415 str.ic_len = ilen;
1416 str.ic_dp = ptr;
1417 if (ioctl(fd, I_STR, &str) == -1)
1419 if (str.ic_len != olen)
1421 olen, str.ic_len, cmd);
1594 strtoul(str, ptr, base)
1595 char *str, **pt
[all...]
/asus-wl-520gu-7.0.1.45/src/router/pppd.mppe/pppd/
H A Dsys-sunos4.c1411 struct strioctl str; local
1413 str.ic_cmd = cmd;
1414 str.ic_timout = 0;
1415 str.ic_len = ilen;
1416 str.ic_dp = ptr;
1417 if (ioctl(fd, I_STR, &str) == -1)
1419 if (str.ic_len != olen)
1421 olen, str.ic_len, cmd);
1594 strtoul(str, ptr, base)
1595 char *str, **pt
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/scripts/
H A Dtkparse.c302 char * str = malloc( pnt - word + 1 ); local
303 memcpy( str, word, pnt - word );
304 str [pnt - word] = '\0';
307 cond->nameindex = get_varnum( str );
308 free( str );
312 cond->str = str;
H A Dtkgen.c364 if ( strcmp( cond->str, "y" ) == 0 ) printf( "1" );
365 else if ( strcmp( cond->str, "n" ) == 0 ) printf( "0" );
366 else if ( strcmp( cond->str, "m" ) == 0 ) printf( "2" );
367 else if ( strcmp( cond->str, "" ) == 0 ) printf( "4" );
369 printf( "\"%s\"", cond->str );
731 if ( strcmp( cond->str, "n" ) == 0 ) printf( "0" );
732 else if ( strcmp( cond->str, "y" ) == 0 ) printf( "1" );
733 else if ( strcmp( cond->str, "m" ) == 0 ) printf( "2" );
734 else if ( strcmp( cond->str, "" ) == 0 ) printf( "4" );
736 printf( "\"%s\"", cond->str );
[all...]
/asus-wl-520gu-7.0.1.45/src/router/cdma/
H A Dcommon_ex.c32 char *trim_r(char *str) argument
36 i=strlen(str);
40 if (*(str+i-1) == ' ' || *(str+i-1) == 0x0a || *(str+i-1) == 0x0d) *(str+i-1)=0x0;
44 return(str);
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/e2fsck/
H A Dpass3.c191 pctx.str = "ext2fs_new_block";
206 pctx.str = "ext2fs_new_dir_block";
214 pctx.str = "ext2fs_write_dir_block";
237 pctx.str = "ext2fs_write_inode";
403 pctx.str = "ext2fs_unlink";
482 pctx.str = "ext2fs_write_inode";
491 pctx.str = "ext2fs_link";
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/proc/
H A Darray.c549 char str[5]; local
557 str[0] = flags & VM_READ ? 'r' : '-';
558 str[1] = flags & VM_WRITE ? 'w' : '-';
559 str[2] = flags & VM_EXEC ? 'x' : '-';
560 str[3] = flags & VM_MAYSHARE ? 's' : 'p';
561 str[4] = 0;
580 map->vm_start, map->vm_end, str, map->vm_pgoff << PAGE_SHIFT,
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/
H A Dscsi_debug.c1057 static int __init num_devs_setup(char *str) argument
1061 if (get_option(&str, &tmp) == 1) {
1073 static int __init dev_size_mb_setup(char *str) argument
1077 if (get_option(&str, &tmp) == 1) {
1090 static int __init opts_setup(char *str) argument
1094 if (get_option(&str, &tmp) == 1) {
1107 static int __init every_nth_setup(char *str) argument
1111 if (get_option(&str, &tmp) == 1) {
1124 static int __init delay_setup(char *str) argument
1128 if (get_option(&str,
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/sn/kernel/
H A Dllsc4.c161 static int __init autotest_enable(char *str) argument
166 static int __init set_llscblkadr(char *str) argument
171 static int __init set_llscselt(char *str) argument
176 static int __init set_llsctest(char *str) argument
178 llsctest_number = simple_strtol(str, &str, 10);
183 static int __init set_llscerrstop(char *str) argument
188 static int __init set_llscfail(char *str) argument
193 static int __init set_llscl4(char *str) argument
993 static int __init set_inttest(char *str) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/mtd/devices/
H A Dblkmtd.c983 static int __init param_blkmtd_device(char *str) argument
985 device = str;
990 static int __init param_blkmtd_erasesz(char *str) argument
992 erasesz = simple_strtol(str, NULL, 0);
997 static int __init param_blkmtd_ro(char *str) argument
999 ro = simple_strtol(str, NULL, 0);
1004 static int __init param_blkmtd_bs(char *str) argument
1006 bs = simple_strtol(str, NULL, 0);
1011 static int __init param_blkmtd_count(char *str) argument
1013 count = simple_strtol(str, NUL
[all...]
/asus-wl-520gu-7.0.1.45/src/router/www/asus/web_asus_en/
H A Dgeneral_501b.js802 str = o.value;
803 portidx = str.indexOf(":");
807 port = str.substring(portidx+1);
1371 function getDateCheck(str, pos)
1373 if (str.charAt(pos) == '1')
1379 function getTimeRange(str, pos)
1382 return str.substring(0,2);
1384 return str.substring(2,4);
1386 return str.substring(4,6);
1388 return str
[all...]
/asus-wl-520gu-7.0.1.45/src/router/www/www.WL-520GU/
H A Dgeneral.js1214 str = o.value;
1215 portidx = str.indexOf(":");
1217 {port = str.substring(portidx+1);
1640 function getDateCheck(str, pos)
1641 {if (str.charAt(pos) == '1')
1646 function getTimeRange(str, pos)
1648 return str.substring(0,2);
1650 return str.substring(2,4);
1652 return str.substring(4,6);
1654 return str
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/web/
H A Dswat.c64 static char *fix_backslash(const char *str) argument
69 while (*str) {
70 if (*str == '\\') {*p++ = '\\';*p++ = '\\';}
71 else *p++ = *str;
72 ++str;
78 static char *stripspaceupper(const char *str) argument
83 while (*str) {
84 if (*str != ' ') *p++ = toupper(*str);
85 ++str;
[all...]
/asus-wl-520gu-7.0.1.45/src/router/mipsel/www/
H A Dgeneral.js1214 str = o.value;
1215 portidx = str.indexOf(":");
1217 {port = str.substring(portidx+1);
1640 function getDateCheck(str, pos)
1641 {if (str.charAt(pos) == '1')
1646 function getTimeRange(str, pos)
1648 return str.substring(0,2);
1650 return str.substring(2,4);
1652 return str.substring(4,6);
1654 return str
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc64/kernel/
H A Dsetup.c687 int set_spread_lpevents( char * str )
691 unsigned long val = simple_strtoul( str, NULL, 0 );
714 int set_decr_overclock_proc0( char * str )
716 unsigned long val = simple_strtoul( str, NULL, 0 );
727 int set_decr_overclock( char * str )
729 unsigned long val = simple_strtoul( str, NULL, 0 );
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/joystick/
H A Ddb9.c373 int __init db9_setup(char *str) argument
376 get_options(str, ARRAY_SIZE(ints), ints);
380 int __init db9_setup_2(char *str) argument
383 get_options(str, ARRAY_SIZE(ints), ints);
387 int __init db9_setup_3(char *str) argument
390 get_options(str, ARRAY_SIZE(ints), ints);
H A Dgamecon.c618 int __init gc_setup(char *str) argument
621 get_options(str, ARRAY_SIZE(ints), ints);
625 int __init gc_setup_2(char *str) argument
628 get_options(str, ARRAY_SIZE(ints), ints);
632 int __init gc_setup_3(char *str) argument
635 get_options(str, ARRAY_SIZE(ints), ints);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/
H A Dpcxx.c912 void __init pcxx_setup(char *str, int *ints) argument
962 while (str && *str)
965 temp = str;
979 len = strlen(str);
980 if (strncmp("Disable", str, len) == 0)
983 if (strncmp("Enable", str, len) == 0)
987 printk("PC/Xx: Invalid status %s\n", str);
995 if (strcmp(board_desc[j], str) == 0)
1002 printk("PC/Xx: Invalid board name: %s\n", str);
[all...]

Completed in 159 milliseconds

<<11121314151617181920>>