Searched refs:sep (Results 1 - 25 of 217) sorted by relevance

123456789

/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/networking/
H A Dinetd.c222 #define isrpcservice(sep) ((sep)->se_rpcversl != 0)
224 #define isrpcservice(sep) 0
368 static void register_rpc(servtab_t *sep) argument
375 if ((pp = getprotobyname(sep->se_proto + 4)) == NULL) {
376 bb_perror_msg("%s: getproto", sep->se_proto);
380 if (getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, &size) < 0) {
382 sep->se_service, sep->se_proto);
386 for (n = sep
395 unregister_rpc(servtab_t *sep) argument
447 setup(servtab_t *sep) argument
572 dupconfig(servtab_t *sep) argument
605 servtab_t *sep; local
871 servtab_t *sep; local
923 servtab_t *sep, *cp, **sepp; local
1142 servtab_t *sep; local
1166 servtab_t *sep; local
1190 servtab_t *sep; local
1251 servtab_t *sep; local
1531 echo_stream(int s, servtab_t *sep) argument
1570 discard_stream(int s, servtab_t *sep) argument
1614 chargen_stream(int s, servtab_t *sep) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dstrtok.c31 Curl_strtok_r(char *ptr, const char *sep, char **end) argument
38 while(*ptr && strchr(sep, *ptr))
50 while(**end && !strchr(sep, **end))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/pptpd/pptpd-1.3.4/plugins/
H A Dpptpd-logwtmp.c33 char *sep; local
36 sep = strstr(user, "//"); /* two slash */
37 if (sep != NULL) user = sep + 2;
38 sep = strstr(user, "\\"); /* or one backslash */
39 if (sep != NULL) user = sep + 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Durl.c83 char *sep, *path_query; local
88 sep = strstr(buf, "://");
89 if (sep) {
92 sep[1] = '\0';
95 sep += 3;
96 sep = strchr(sep, '/');
97 if (sep)
98 *sep = '\0';
124 sep
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dtiff_common.h85 char *ff_trationals2str(int *rp, int count, const char *sep);
90 char *ff_tlongs2str(int32_t *lp, int count, const char *sep);
95 char *ff_tdoubles2str(double *dp, int count, const char *sep);
100 char *ff_tshorts2str(int16_t *sp, int count, const char *sep);
105 int ff_tadd_rational_metadata(int count, const char *name, const char *sep,
111 int ff_tadd_long_metadata(int count, const char *name, const char *sep,
117 int ff_tadd_doubles_metadata(int count, const char *name, const char *sep,
123 int ff_tadd_shorts_metadata(int count, const char *name, const char *sep,
129 int ff_tadd_bytes_metadata(int count, const char *name, const char *sep,
H A Dexif.c45 const char *name, const char *sep,
50 case TIFF_DOUBLE : return ff_tadd_doubles_metadata(count, name, sep, gb, le, metadata);
51 case TIFF_SSHORT : return ff_tadd_shorts_metadata(count, name, sep, gb, le, 1, metadata);
52 case TIFF_SHORT : return ff_tadd_shorts_metadata(count, name, sep, gb, le, 0, metadata);
53 case TIFF_SBYTE : return ff_tadd_bytes_metadata(count, name, sep, gb, le, 1, metadata);
55 case TIFF_UNDEFINED: return ff_tadd_bytes_metadata(count, name, sep, gb, le, 0, metadata);
58 case TIFF_RATIONAL : return ff_tadd_rational_metadata(count, name, sep, gb, le, metadata);
60 case TIFF_LONG : return ff_tadd_long_metadata(count, name, sep, gb, le, metadata);
44 exif_add_metadata(AVCodecContext *avctx, int count, int type, const char *name, const char *sep, GetByteContext *gb, int le, AVDictionary **metadata) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/tiff/
H A Dmkspans.c39 register char *sep; local
41 sep = " ";
43 printf("%s%d", sep, runs[i]);
46 sep = " ";
48 sep = ", ";
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/libfuse-lite/
H A Dfuse_opt.c144 const char *sep = strchr(t, '='); local
145 sep = sep ? sep : strchr(t, ' ');
146 if (sep && (!sep[1] || sep[1] == '%')) {
147 int tlen = sep - t;
148 if (sep[0] == '=')
151 *sepp = sep
196 process_opt(struct fuse_opt_context *ctx, const struct fuse_opt *opt, unsigned sep, const char *arg, int iso) argument
218 process_opt_sep_arg(struct fuse_opt_context *ctx, const struct fuse_opt *opt, unsigned sep, const char *arg, int iso) argument
244 unsigned sep; local
263 char *sep; local
283 const char *sep = strchr(opts, ','); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/
H A Dminixml.c50 char sep; local
70 sep = *p->xml;
71 if(sep=='\'' || sep=='\"')
78 while(*p->xml != sep)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/
H A Dminixml.c50 char sep; local
70 sep = *p->xml;
71 if(sep=='\'' || sep=='\"')
78 while(*p->xml != sep)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_state.c78 const char *sep = ""; local
81 printf("%sINVALID", sep);
82 sep = ",";
85 printf("%sNEW", sep);
86 sep = ",";
89 printf("%sRELATED", sep);
90 sep = ",";
93 printf("%sESTABLISHED", sep);
94 sep = ",";
97 printf("%sUNTRACKED", sep);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.4.12/src/extensions/
H A Dlibxt_state.c78 const char *sep = ""; local
81 printf("%sINVALID", sep);
82 sep = ",";
85 printf("%sNEW", sep);
86 sep = ",";
89 printf("%sRELATED", sep);
90 sep = ",";
93 printf("%sESTABLISHED", sep);
94 sep = ",";
97 printf("%sUNTRACKED", sep);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.x/extensions/
H A Dlibip6t_state.c100 const char *sep = ""; local
103 printf("%sINVALID", sep);
104 sep = ",";
107 printf("%sNEW", sep);
108 sep = ",";
111 printf("%sRELATED", sep);
112 sep = ",";
115 printf("%sESTABLISHED", sep);
116 sep = ",";
119 printf("%sUNTRACKED", sep);
[all...]
H A Dlibipt_state.c100 const char *sep = ""; local
103 printf("%sINVALID", sep);
104 sep = ",";
107 printf("%sNEW", sep);
108 sep = ",";
111 printf("%sRELATED", sep);
112 sep = ",";
115 printf("%sESTABLISHED", sep);
116 sep = ",";
119 printf("%sUNTRACKED", sep);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/lib/
H A Dipx_pton.c67 char *sep = (char *)src; local
72 while(*sep && (*sep != '.'))
73 sep++;
75 if (*sep != '.')
86 if (ipx_getnode(addr->ipx_node, sep + 1))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/kernel/
H A Dnmi_debug.c49 char *p, *sep; local
56 for (p = str + 1; *p; p = sep + 1) {
57 sep = strchr(p, ',');
58 if (sep)
59 *sep = 0;
71 if (!sep)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/avr32/kernel/
H A Dnmi_debug.c50 char *p, *sep; local
61 for (p = str + 1; *p; p = sep + 1) {
62 sep = strchr(p, ',');
63 if (sep)
64 *sep = 0;
76 if (!sep)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/util/
H A Dselftest.pl21 my $sep="-----------------------------------------------------------------------------\n";
121 print OUT $sep;
126 print OUT $sep;
167 print OUT $sep;
172 print OUT $sep;
181 print OUT $sep;
194 if (/$sep/) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/util/
H A Dselftest.pl21 my $sep="-----------------------------------------------------------------------------\n";
121 print OUT $sep;
126 print OUT $sep;
167 print OUT $sep;
172 print OUT $sep;
181 print OUT $sep;
194 if (/$sep/) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/util/
H A Dselftest.pl21 my $sep="-----------------------------------------------------------------------------\n";
121 print OUT $sep;
126 print OUT $sep;
167 print OUT $sep;
172 print OUT $sep;
181 print OUT $sep;
194 if (/$sep/) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/third-party/miniupnp/
H A Dminixml.c51 char sep; local
71 sep = *p->xml;
72 if(sep=='\'' || sep=='\"')
79 while(*p->xml != sep)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/parport/
H A Dprobe.c65 char *sep; local
68 sep = strchr(p, ':');
69 if (sep) {
71 *(sep++) = 0;
73 u = sep + strlen (sep) - 1;
83 info->mfr = kstrdup(sep, GFP_KERNEL);
86 info->model = kstrdup(sep, GFP_KERNEL);
91 info->class_name = kstrdup(sep, GFP_KERNEL);
92 for (u = sep; *
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/cifs/
H A Ddns_resolve.c49 const char *hostname, *sep; local
67 sep = memchr(hostname, '\\', len);
68 if (sep)
69 len = sep - hostname;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/
H A Dconfigure.h28 char sep[16]; member in struct:__anon3850::__anon3851
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/bstring/
H A Dbstradd.c164 bstring bjoinInv(const struct bstrList * bl, const_bstring sep) { argument
170 if (sep != NULL && (sep->slen < 0 || sep->data == NULL))
182 if (sep != NULL)
183 c += (bl->qty - 1) * sep->slen;
198 if (j > 0 && sep != NULL) {
199 bstr__memcpy (b->data + c, sep->data, sep->slen);
200 c += sep
[all...]

Completed in 291 milliseconds

123456789