Searched refs:string (Results 276 - 300 of 18695) sorted by relevance

<<11121314151617181920>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/readline/
H A Dhistexpand.c114 /* The last string searched for by a !?string? search. */
117 /* The last string matched by a !?string? search. */
125 DELIMITING_QUOTE is a character that is allowed to end the string
131 get_history_event (string, caller_index, delimiting_quote)
132 const char *string;
156 if (string[i] != history_expansion_char)
169 if (string[i] == history_expansion_char)
178 if (string[
929 char *string; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lighttpd-1.4.39/external_file/js_src/
H A Dbase64.js85 _utf8_encode : function (string) {
86 string = string.replace(/\r\n/g,"\n");
89 for (var n = 0; n < string.length; n++) {
91 var c = string.charCodeAt(n);
113 var string = "";
122 string += String.fromCharCode(c);
127 string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
133 string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
139 return string;
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iptables-1.4.x/extensions/
H A Dlibip6t_webstr.c1 /* Shared library add-on to iptables to add string matching support.
7 * Changed --tos to --string in save(). Also
19 * It was derived from 'string' matching support, declared as above.
31 #include <string.h>
48 char string[BM_MAX_NLEN]; member in struct:ipt_webstr_info
69 "--webstr [!] host Match a http string in a packet\n"
70 "--webstr [!] url Match a http string in a packet\n"
71 "--webstr [!] content Match a http string in a packet\n",
94 if (strlen(s) <= BM_MAX_NLEN) strcpy(info->string, s);
115 stringinfo->len=strlen((char *)&stringinfo->string);
144 print_string(char string[], int invert, int numeric) argument
[all...]
H A Dlibipt_webstr.c1 /* Shared library add-on to iptables to add string matching support.
7 * Changed --tos to --string in save(). Also
19 * It was derived from 'string' matching support, declared as above.
31 #include <string.h>
49 char string[BM_MAX_NLEN]; member in struct:ipt_webstr_info
70 "--webstr [!] host Match a http string in a packet\n"
71 "--webstr [!] url Match a http string in a packet\n"
72 "--webstr [!] content Match a http string in a packet\n",
95 if (strlen(s) <= BM_MAX_NLEN) strcpy(info->string, s);
116 stringinfo->len=strlen((char *)&stringinfo->string);
145 print_string(char string[], int invert, int numeric) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dutids.c72 * return_id - Where the string HID is returned
78 * Integer or a String. A string is always returned. An EISAID
79 * is converted to a string.
108 length = obj_desc->string.length + 1;
121 /* Area for the string starts after DEVICE_ID struct */
123 hid->string = ACPI_ADD_PTR(char, hid, sizeof(struct acpica_device_id));
125 /* Convert EISAID to a string or simply copy existing string */
128 acpi_ex_eisa_id_to_string(hid->string, obj_desc->integer.value);
130 acpi_ut_copy_id_string(hid->string, obj_des
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/acpi/acpica/
H A Dutids.c72 * return_id - Where the string HID is returned
78 * Integer or a String. A string is always returned. An EISAID
79 * is converted to a string.
108 length = obj_desc->string.length + 1;
121 /* Area for the string starts after DEVICE_ID struct */
123 hid->string = ACPI_ADD_PTR(char, hid, sizeof(struct acpica_device_id));
125 /* Convert EISAID to a string or simply copy existing string */
128 acpi_ex_eisa_id_to_string(hid->string, obj_desc->integer.value);
130 acpi_ut_copy_id_string(hid->string, obj_des
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/heimdal/lib/hx509/
H A Dsel-gram.y46 char *string;
61 %type <expr> string
65 %token <string> NUMBER
66 %token <string> STRING
67 %token <string> IDENTIFIER
96 | string { $$ = $1; }
102 string : STRING { $$ = _hx509_make_expr(expr_STRING, $1, NULL); }; label
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/heimdal/lib/hx509/
H A Dsel-gram.y46 char *string;
61 %type <expr> string
65 %token <string> NUMBER
66 %token <string> STRING
67 %token <string> IDENTIFIER
96 | string { $$ = $1; }
102 string : STRING { $$ = _hx509_make_expr(expr_STRING, $1, NULL); }; label
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/heimdal/lib/hx509/
H A Dsel-gram.y46 char *string;
61 %type <expr> string
65 %token <string> NUMBER
66 %token <string> STRING
67 %token <string> IDENTIFIER
96 | string { $$ = $1; }
102 string : STRING { $$ = _hx509_make_expr(expr_STRING, $1, NULL); }; label
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iptables/extensions/
H A Dlibip6t_webstr.c1 /* Shared library add-on to iptables to add string matching support.
7 * Changed --tos to --string in save(). Also
19 * It was derived from 'string' matching support, declared as above.
26 #include <string.h>
39 "--webstr [!] host Match a http string in a packet\n"
40 "--webstr [!] url Match a http string in a packet\n"
41 "--webstr [!] content Match a http string in a packet\n",
64 if (strlen(s) <= BM_MAX_NLEN) strcpy(info->string, s);
84 stringinfo->len=strlen((char *)&stringinfo->string);
93 stringinfo->len=strlen((char *)&stringinfo->string);
115 print_string(char string[], int invert, int numeric) argument
[all...]
H A Dlibipt_webstr.c1 /* Shared library add-on to iptables to add string matching support.
7 * Changed --tos to --string in save(). Also
19 * It was derived from 'string' matching support, declared as above.
26 #include <string.h>
39 "--webstr [!] host Match a http string in a packet\n"
40 "--webstr [!] url Match a http string in a packet\n"
41 "--webstr [!] content Match a http string in a packet\n",
64 if (strlen(s) <= BM_MAX_NLEN) strcpy(info->string, s);
84 stringinfo->len=strlen((char *)&stringinfo->string);
93 stringinfo->len=strlen((char *)&stringinfo->string);
115 print_string(char string[], int invert, int numeric) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/accel-pptp/src/pppd/plugins/pptp/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s", buf); \
49 syslog(LOG_NOTICE, "%s", string);
57 fprintf(stderr, "%s\n", string);
58 syslog(LOG_WARNING, "%s", string);
65 fprintf(stderr, "%s\n", string);
66 syslog(LOG_CRIT, "%s", string);
86 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/accel-pptp/src/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s", buf); \
49 syslog(LOG_NOTICE, "%s", string);
57 fprintf(stderr, "%s\n", string);
58 syslog(LOG_WARNING, "%s", string);
65 fprintf(stderr, "%s\n", string);
66 syslog(LOG_CRIT, "%s", string);
86 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/accel-pptpd/pppd_plugin/src/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s %s[%s:%s:%d]: %s", \
49 syslog(LOG_NOTICE, "%s", string);
58 fprintf(stderr, "%s\n", string);
59 syslog(LOG_WARNING, "%s", string);
67 fprintf(stderr, "%s\n", string);
68 syslog(LOG_CRIT, "%s", string);
88 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/pppd/pppd/plugins/pptp/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s", buf); \
49 syslog(LOG_NOTICE, "%s", string);
57 fprintf(stderr, "%s\n", string);
58 syslog(LOG_WARNING, "%s", string);
65 fprintf(stderr, "%s\n", string);
66 syslog(LOG_CRIT, "%s", string);
86 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/accel-pptp/src/pppd/plugins/pptp/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s", buf); \
49 syslog(LOG_NOTICE, "%s", string);
57 fprintf(stderr, "%s\n", string);
58 syslog(LOG_WARNING, "%s", string);
65 fprintf(stderr, "%s\n", string);
66 syslog(LOG_CRIT, "%s", string);
86 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/accel-pptp/src/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s", buf); \
49 syslog(LOG_NOTICE, "%s", string);
57 fprintf(stderr, "%s\n", string);
58 syslog(LOG_WARNING, "%s", string);
65 fprintf(stderr, "%s\n", string);
66 syslog(LOG_CRIT, "%s", string);
86 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/accel-pptpd/pppd_plugin/src/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s %s[%s:%s:%d]: %s", \
49 syslog(LOG_NOTICE, "%s", string);
58 fprintf(stderr, "%s\n", string);
59 syslog(LOG_WARNING, "%s", string);
67 fprintf(stderr, "%s\n", string);
68 syslog(LOG_CRIT, "%s", string);
88 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/accel-pptp/src/pppd/plugins/pptp/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s", buf); \
49 syslog(LOG_NOTICE, "%s", string);
57 fprintf(stderr, "%s\n", string);
58 syslog(LOG_WARNING, "%s", string);
65 fprintf(stderr, "%s\n", string);
66 syslog(LOG_CRIT, "%s", string);
86 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/accel-pptp/src/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s", buf); \
49 syslog(LOG_NOTICE, "%s", string);
57 fprintf(stderr, "%s\n", string);
58 syslog(LOG_WARNING, "%s", string);
65 fprintf(stderr, "%s\n", string);
66 syslog(LOG_CRIT, "%s", string);
86 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/accel-pptpd/pppd_plugin/src/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s %s[%s:%s:%d]: %s", \
49 syslog(LOG_NOTICE, "%s", string);
58 fprintf(stderr, "%s\n", string);
59 syslog(LOG_WARNING, "%s", string);
67 fprintf(stderr, "%s\n", string);
68 syslog(LOG_CRIT, "%s", string);
88 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/pppd/pppd/plugins/pptp/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s", buf); \
49 syslog(LOG_NOTICE, "%s", string);
57 fprintf(stderr, "%s\n", string);
58 syslog(LOG_WARNING, "%s", string);
65 fprintf(stderr, "%s\n", string);
66 syslog(LOG_CRIT, "%s", string);
86 #include <string.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iptables/extensions/
H A Dlibip6t_webstr.c1 /* Shared library add-on to iptables to add string matching support.
7 * Changed --tos to --string in save(). Also
19 * It was derived from 'string' matching support, declared as above.
26 #include <string.h>
39 "--webstr [!] host Match a http string in a packet\n"
40 "--webstr [!] url Match a http string in a packet\n"
41 "--webstr [!] content Match a http string in a packet\n",
64 if (strlen(s) <= BM_MAX_NLEN) strcpy(info->string, s);
84 stringinfo->len=strlen((char *)&stringinfo->string);
93 stringinfo->len=strlen((char *)&stringinfo->string);
115 print_string(char string[], int invert, int numeric) argument
[all...]
H A Dlibipt_webstr.c1 /* Shared library add-on to iptables to add string matching support.
7 * Changed --tos to --string in save(). Also
19 * It was derived from 'string' matching support, declared as above.
26 #include <string.h>
39 "--webstr [!] host Match a http string in a packet\n"
40 "--webstr [!] url Match a http string in a packet\n"
41 "--webstr [!] content Match a http string in a packet\n",
64 if (strlen(s) <= BM_MAX_NLEN) strcpy(info->string, s);
84 stringinfo->len=strlen((char *)&stringinfo->string);
93 stringinfo->len=strlen((char *)&stringinfo->string);
115 print_string(char string[], int invert, int numeric) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/pppd/pppd/plugins/pptp/
H A Dutil.c26 char buf[256], string[256]; \
29 snprintf(string, sizeof(string), "%s", buf); \
49 syslog(LOG_NOTICE, "%s", string);
57 fprintf(stderr, "%s\n", string);
58 syslog(LOG_WARNING, "%s", string);
65 fprintf(stderr, "%s\n", string);
66 syslog(LOG_CRIT, "%s", string);
86 #include <string.h>

Completed in 217 milliseconds

<<11121314151617181920>>