Searched refs:filt (Results 1 - 25 of 51) sorted by relevance

123

/netbsd-6-1-5-RELEASE/external/gpl3/binutils/usr.bin/c++filt/
H A DMakefile3 PROG= c++filt
5 CLEANFILES+= c++filt.1
13 c++filt.1: ${DIST}/binutils/doc/cxxfilt.man
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/ppc/
H A Dfilter.c44 new_filter(const char *filt, argument
47 while (strlen(filt) > 0) {
49 /* break up the filt list */
50 char *end = strchr(filt, ',');
54 end = strchr(filt, '\0');
60 len = end - filt;
64 strncpy(new_filter->flag, filt, len);
67 filt = next;
79 filter *filt = filters; local
94 filt
[all...]
H A Dfilter.h28 (const char *filt,
/netbsd-6-1-5-RELEASE/usr.bin/gzip/
H A Dzdiff111 check_suffix "$1" files filt
112 if [ -z "$filt" ]; then
116 $filt -- "$1" | $prog $flags -- - "$files"
120 check_suffix "$1" files filt
122 if [ -z "$filt" -a -z "$filt2" ]; then
124 elif [ -z "$filt" -a -n "$filt2" -a "$1" != "-" ]; then
126 elif [ -n "$filt" -a -z "$filt2" -a "$2" != "-" ]; then
127 $filt -- "$1" | $prog $flags -- - "$2"
132 ${filt:-cat} -- "$1" | $prog $flags -- - "$tmp"
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/igen/
H A Dfilter.h29 extern void filter_parse (filter **filters, const char *filt);
69 extern void dump_filter (lf *file, char *prefix, filter *filt, char *suffix);
H A Dfilter.c47 filter_parse (filter **filters, const char *filt) argument
49 while (strlen (filt) > 0)
54 const char *flag = filt;
56 filt = strchr (filt, ',');
57 if (filt == NULL)
59 filt = strchr (flag, '\0');
64 len = filt - flag;
65 filt = filt
163 filter_is_member(filter *filt, const char *flag) argument
183 filter *filt = filters; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/lib/
H A Dscandump.exp150 # Find c++filt like we find g++ in g++.exp.
154 [findfile $base_dir/../../c++filt $base_dir/../../c++filt \
155 [findfile $base_dir/c++filt $base_dir/c++filt \
156 [transform c++filt]]]]
157 verbose -log "c++filt is $cxxfilt"
194 # Find c++filt like we find g++ in g++.exp.
198 [findfile $base_dir/../../c++filt $base_dir/../../c++filt \
[all...]
H A Dscanasm.exp204 # Find c++filt like we find g++ in g++.exp.
208 [findfile $base_dir/../../c++filt $base_dir/../../c++filt \
209 [findfile $base_dir/c++filt $base_dir/c++filt \
210 [transform c++filt]]]]
211 verbose -log "c++filt is $cxxfilt"
250 # Find c++filt like we find g++ in g++.exp.
254 [findfile $base_dir/../../c++filt $base_dir/../../c++filt \
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/lib/
H A Dscandump.exp177 # Find c++filt like we find g++ in g++.exp.
181 [findfile $base_dir/../../c++filt $base_dir/../../c++filt \
182 [findfile $base_dir/c++filt $base_dir/c++filt \
183 [transform c++filt]]]]
184 verbose -log "c++filt is $cxxfilt"
227 # Find c++filt like we find g++ in g++.exp.
231 [findfile $base_dir/../../c++filt $base_dir/../../c++filt \
[all...]
H A Dscanasm.exp221 # Find c++filt like we find g++ in g++.exp.
225 [findfile $base_dir/../../c++filt $base_dir/../../c++filt \
226 [findfile $base_dir/c++filt $base_dir/c++filt \
227 [transform c++filt]]]]
228 verbose -log "c++filt is $cxxfilt"
269 # Find c++filt like we find g++ in g++.exp.
273 [findfile $base_dir/../../c++filt $base_dir/../../c++filt \
[all...]
/netbsd-6-1-5-RELEASE/share/examples/rump/btplay/
H A Dbtplay.c73 struct hci_filter filt; local
109 memset(&filt, 0, sizeof(filt));
110 hci_filter_set(HCI_EVENT_COMMAND_COMPL, &filt);
111 hci_filter_set(HCI_EVENT_INQUIRY_RESULT, &filt);
112 hci_filter_set(HCI_EVENT_INQUIRY_COMPL, &filt);
113 hci_filter_set(HCI_EVENT_REMOTE_NAME_REQ_COMPL, &filt);
115 &filt, sizeof(filt)) == -1)
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/usr.bin/
H A DMakefile8 SSUBDIR+= gas gprof ld ${G_PROGRAMS:C/-new$//:C/sysdump//:C/srconv//:cxxfilt=c++filt}
/netbsd-6-1-5-RELEASE/usr.sbin/altq/libaltq/
H A Dquip_server.c266 struct flow_filter *filt; local
286 filt = &fltrinfo->fltr;
288 if (filt->ff_flow.fi_family == AF_INET) {
291 if (filt->ff_flow.fi_dst.s_addr == 0) {
296 inet_ntoa(filt->ff_flow.fi_dst));
297 if (filt->ff_mask.mask_dst.s_addr == 0xffffffff)
301 ntoh32(filt->ff_mask.mask_dst.s_addr));
303 if (filt->ff_flow.fi_src.s_addr == 0) {
308 inet_ntoa(filt->ff_flow.fi_src));
309 if (filt
[all...]
H A Dqop.c959 print_filter(const struct flow_filter *filt) argument
961 if (filt->ff_flow.fi_family == AF_INET) {
964 in_addr.s_addr = filt->ff_flow.fi_dst.s_addr;
967 inet_ntoa(in_addr), ntoh32(filt->ff_mask.mask_dst.s_addr),
968 ntoh16(filt->ff_flow.fi_dport));
969 in_addr.s_addr = filt->ff_flow.fi_src.s_addr;
972 inet_ntoa(in_addr), ntoh32(filt->ff_mask.mask_src.s_addr),
973 ntoh16(filt->ff_flow.fi_sport));
975 filt->ff_flow.fi_proto, filt
[all...]
/netbsd-6-1-5-RELEASE/sys/altq/
H A Daltq_subr.c1337 apply_filter4(u_int32_t fbmask, struct flow_filter *filt, argument
1340 if (filt->ff_flow.fi_family != AF_INET)
1342 if ((fbmask & FIMB4_SPORT) && filt->ff_flow.fi_sport != pkt->fi_sport)
1344 if ((fbmask & FIMB4_DPORT) && filt->ff_flow.fi_dport != pkt->fi_dport)
1347 filt->ff_flow.fi_dst.s_addr !=
1348 (pkt->fi_dst.s_addr & filt->ff_mask.mask_dst.s_addr))
1351 filt->ff_flow.fi_src.s_addr !=
1352 (pkt->fi_src.s_addr & filt->ff_mask.mask_src.s_addr))
1354 if ((fbmask & FIMB4_PROTO) && filt->ff_flow.fi_proto != pkt->fi_proto)
1356 if ((fbmask & FIMB4_TOS) && filt
1370 apply_ppfilter4(u_int32_t fbmask, struct flow_filter *filt, struct flowinfo_in *pkt) argument
1389 apply_tosfilter4(u_int32_t fbmask, struct flow_filter *filt, struct flowinfo_in *pkt) argument
1403 apply_filter6(u_int32_t fbmask, struct flow_filter6 *filt, struct flowinfo_in6 *pkt) argument
1495 filt2fibmask(struct flow_filter *filt) argument
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/mld6query/
H A Dmld6.c76 struct icmp6_filter filt; local
123 ICMP6_FILTER_SETBLOCKALL(&filt);
124 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_QUERY, &filt);
125 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_REPORT, &filt);
126 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_REDUCTION, &filt);
127 if (setsockopt(sock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
128 sizeof(filt)) < 0)
/netbsd-6-1-5-RELEASE/sys/dev/ic/
H A Dbwivar.h95 #define CSR_FILT_SETBITS_4(sc, reg, filt, bits) \
96 CSR_WRITE_4((sc), (reg), (CSR_READ_4((sc), (reg)) & (filt)) | (bits))
97 #define CSR_FILT_SETBITS_2(sc, reg, filt, bits) \
98 CSR_WRITE_2((sc), (reg), (CSR_READ_2((sc), (reg)) & (filt)) | (bits))
694 #define MOBJ_FILT_SETBITS_2(mac, objid, ofs, filt, bits) \
696 (MOBJ_READ_2((mac), (objid), (ofs)) & (filt)) | (bits))
728 #define PHY_FILT_SETBITS(mac, ctrl, filt, bits) \
729 PHY_WRITE((mac), (ctrl), (PHY_READ((mac), (ctrl)) & (filt)) | (bits))
783 #define RF_FILT_SETBITS(mac, ofs, filt, bits) \
784 RF_WRITE((mac), (ofs), (RF_READ((mac), (ofs)) & (filt)) | (bit
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/dhcpcd/dist/
H A Dipv6ns.c88 struct icmp6_filter filt; local
103 ICMP6_FILTER_SETBLOCKALL(&filt);
104 ICMP6_FILTER_SETPASS(ND_NEIGHBOR_ADVERT, &filt);
106 &filt, sizeof(filt)) == -1)
/netbsd-6-1-5-RELEASE/usr.sbin/rtsold/
H A Drtsol.c81 struct icmp6_filter filt; local
147 ICMP6_FILTER_SETBLOCKALL(&filt);
148 ICMP6_FILTER_SETPASS(ND_ROUTER_ADVERT, &filt);
149 if (setsockopt(rssock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
150 sizeof(filt)) == -1) {
/netbsd-6-1-5-RELEASE/sys/kern/
H A Duipc_accf.c114 accept_filt_add(struct accept_filter *filt) argument
122 if (strcmp(p->accf_name, filt->accf_name) == 0) {
127 LIST_INSERT_HEAD(&accept_filtlsthd, filt, accf_next);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/usr.bin/common/arch/alpha/
H A Ddefs.mk9 G_man_MANS=addr2line.1 ar.1 dlltool.1 nlmconv.1 nm.1 objcopy.1 objdump.1 ranlib.1 readelf.1 size.1 strings.1 strip.1 elfedit.1 windres.1 windmc.1 c++filt.1
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/usr.bin/common/arch/arm/
H A Ddefs.mk9 G_man_MANS=addr2line.1 ar.1 dlltool.1 nlmconv.1 nm.1 objcopy.1 objdump.1 ranlib.1 readelf.1 size.1 strings.1 strip.1 elfedit.1 windres.1 windmc.1 c++filt.1
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/usr.bin/common/arch/armeb/
H A Ddefs.mk9 G_man_MANS=addr2line.1 ar.1 dlltool.1 nlmconv.1 nm.1 objcopy.1 objdump.1 ranlib.1 readelf.1 size.1 strings.1 strip.1 elfedit.1 windres.1 windmc.1 c++filt.1
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/usr.bin/common/arch/hppa/
H A Ddefs.mk9 G_man_MANS=addr2line.1 ar.1 dlltool.1 nlmconv.1 nm.1 objcopy.1 objdump.1 ranlib.1 readelf.1 size.1 strings.1 strip.1 elfedit.1 windres.1 windmc.1 c++filt.1
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/usr.bin/common/arch/i386/
H A Ddefs.mk9 G_man_MANS=addr2line.1 ar.1 dlltool.1 nlmconv.1 nm.1 objcopy.1 objdump.1 ranlib.1 readelf.1 size.1 strings.1 strip.1 elfedit.1 windres.1 windmc.1 c++filt.1

Completed in 370 milliseconds

123