Searched refs:delim (Results 1 - 25 of 64) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/clib/
H A Dstrsep.c40 * strings separated by characters from delim.
43 * delim need not remain constant from call to call.
54 strsep(stringp, delim)
56 const char *delim;
67 spanp = delim;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dstrtok.h28 char *Curl_strtok_r(char *s, const char *delim, char **last);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dinet.h49 extern int in4_pton(const char *src, int srclen, u8 *dst, int delim, const char **end);
50 extern int in6_pton(const char *src, int srclen, u8 *dst, int delim, const char **end);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_limit.c43 const char *delim; local
47 delim = strchr(rate, '/');
48 if (delim) {
49 if (strlen(delim+1) == 0)
52 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
54 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
56 else if (strncasecmp(delim+1, "hour", strlen(delim
[all...]
H A Dlibxt_hashlimit.c150 const char *delim; local
154 delim = strchr(rate, '/');
155 if (delim) {
156 if (strlen(delim+1) == 0)
159 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
161 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
163 else if (strncasecmp(delim+1, "hour", strlen(delim
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/iptables-1.x/extensions/
H A Dlibip6t_limit.c42 const char *delim; local
46 delim = strchr(rate, '/');
47 if (delim) {
48 if (strlen(delim+1) == 0)
51 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
53 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
55 else if (strncasecmp(delim+1, "hour", strlen(delim
[all...]
H A Dlibipt_limit.c42 const char *delim; local
46 delim = strchr(rate, '/');
47 if (delim) {
48 if (strlen(delim+1) == 0)
51 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
53 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
55 else if (strncasecmp(delim+1, "hour", strlen(delim
[all...]
H A Dlibip6t_hashlimit.c64 const char *delim; local
68 delim = strchr(rate, '/');
69 if (delim) {
70 if (strlen(delim+1) == 0)
73 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
75 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
77 else if (strncasecmp(delim+1, "hour", strlen(delim
[all...]
H A Dlibipt_hashlimit.c64 const char *delim; local
68 delim = strchr(rate, '/');
69 if (delim) {
70 if (strlen(delim+1) == 0)
73 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
75 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
77 else if (strncasecmp(delim+1, "hour", strlen(delim
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/include/ntfs-3g/
H A Dcompat.h47 extern char *strsep(char **stringp, const char *delim);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/coreutils/
H A Dcut.c25 static char delim = '\t'; /* delimiter, default is tab */ variable
79 } else if (delim == '\n') { /* cut by lines */
114 const char delimiter[2] = { delim, 0 };
117 if (strchr(line, delim) == NULL) {
140 putchar(delim);
183 delim = ltok[0];
193 if (delim != '\t') {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/core/
H A Dutils.c93 static inline int digit2bin(char c, int delim) argument
95 if (c == delim || c == '\0')
104 static inline int xdigit2bin(char c, int delim) argument
106 if (c == delim || c == '\0')
118 if (delim == -1)
125 int delim, const char **end)
141 c = xdigit2bin(srclen > 0 ? *s : '\0', delim);
180 int delim, const char **end)
200 c = xdigit2bin(srclen > 0 ? *s : '\0', delim);
243 ret = in4_pton(tok ? tok : s, srclen + (int)(s - tok), d, delim,
123 in4_pton(const char *src, int srclen, u8 *dst, int delim, const char **end) argument
178 in6_pton(const char *src, int srclen, u8 *dst, int delim, const char **end) argument
[all...]
H A Dnetpoll.c522 char *cur=opt, *delim; local
525 if ((delim = strchr(cur, '@')) == NULL)
527 *delim = 0;
529 cur = delim;
535 if ((delim = strchr(cur, '/')) == NULL)
537 *delim = 0;
539 cur = delim;
548 if ((delim = strchr(cur, ',')) == NULL)
550 *delim = 0;
552 cur = delim;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dx-perl.c633 extract_quotelike_pass1 (int delim) argument
644 buffer[bufpos++] = delim;
647 switch (delim)
663 counter_delim = delim;
688 if (nested && c == delim)
690 char *inner = extract_quotelike_pass1 (delim);
713 else if (c == delim || c == counter_delim)
734 extract_quotelike_pass1_utf8 (int delim) argument
736 char *string = extract_quotelike_pass1 (delim);
766 token_type_ty delim, boo
835 extract_quotelike(token_ty *tp, int delim) argument
855 extract_triple_quotelike(message_list_ty *mlp, token_ty *tp, int delim, bool interpolate) argument
2158 int delim = phase1_getc (); local
2192 int delim = phase1_getc (); local
2240 int delim = phase1_getc (); local
2874 extract_balanced(message_list_ty *mlp, token_type_ty delim, bool eat_delim, bool comma_delim, flag_context_ty outer_context, flag_context_list_iterator_ty context_iter, int arg, struct arglist_parser *argparser) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dnf_conntrack_ftp.c165 static int get_port(const char *data, int start, size_t dlen, char delim, argument
173 if (data[i] == delim) {
194 char delim; local
203 delim = data[0];
204 if (isdigit(delim) || delim < 33 || delim > 126 || data[2] != delim) {
215 DEBUGP("EPRT: Got %c%c%c\n", delim, data[1], delim);
242 char delim; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dcompat.c212 * strings separated by characters from delim.
215 * delim need not remain constant from call to call.
221 char *strsep(char **stringp, const char *delim) { argument
231 spanp = delim;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/char/
H A Dsclp_tty.h27 unsigned char delim; member in struct:sclp_ioctls
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/papd/
H A Dcomment.c103 char *comtoken( char *start, char *stop, char *pos, char *delim) argument
110 if ( index( delim, *pos )) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/papd/
H A Dcomment.c103 char *comtoken( char *start, char *stop, char *pos, char *delim) argument
110 if ( index( delim, *pos )) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mtd/
H A Dcmdlinepart.c79 char delim; local
100 delim = 0;
110 delim = ')';
113 if (delim)
118 if ((p = strchr(name, delim)) == 0)
120 printk(KERN_ERR ERRP "no closing %c found in partition name\n", delim);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/ss/
H A Dmls.c247 char delim; local
282 delim = *p;
283 if (delim != 0)
295 if (delim == ':') {
301 delim = *p;
302 if (delim != 0)
345 if (delim != ',')
349 if (delim == '-') {
355 delim = *p;
356 if (delim !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/net/
H A Dcu3088.c76 static const char delim[] = {',', '\n'}; local
79 if (!(end = strchr(start, delim[i])))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drsrc002.tcl37 set db [eval {berkdb_open -create -mode 0644 -delim 58 \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/test/
H A Devp_test.c95 static char *sstrsep(char **string, const char *delim) argument
106 while (*delim)
108 isdelim[(unsigned char)(*delim)] = 1;
109 delim++;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/evp/
H A Devp_test.c95 static char *sstrsep(char **string, const char *delim) argument
106 while (*delim)
108 isdelim[(unsigned char)(*delim)] = 1;
109 delim++;

Completed in 136 milliseconds

123