Home
last modified time | relevance | path

Searched refs:filt (Results 1 – 25 of 104) sorted by relevance

12345

/netbsd/src/external/gpl3/gdb/dist/sim/igen/
Dfilter.c38 filter_parse (filter **filters, const char *filt) in filter_parse() argument
40 while (strlen (filt) > 0) in filter_parse()
45 const char *flag = filt; in filter_parse()
47 filt = strchr (filt, ','); in filter_parse()
48 if (filt == NULL) in filter_parse()
50 filt = strchr (flag, '\0'); in filter_parse()
55 len = filt - flag; in filter_parse()
56 filt = filt + 1; in filter_parse()
154 filter_is_member (const filter *filt, const char *flag) in filter_is_member() argument
157 while (filt != NULL) in filter_is_member()
[all …]
Dfilter.h33 extern void filter_parse (filter **filters, const char *filt);
74 (lf *file, const char *prefix, const filter *filt, const char *suffix);
/netbsd/src/external/gpl3/binutils/dist/config/
Dgc++filt.m41 # gc++filt.m4 serial 1 -*- Autoconf -*-
2 # Find an instance of GNU c++filt on PATH.
15 # Check for GNU c++filt.
16 # FIXME: Maybe need TARGET variant, though c++filt should be target
19 [AC_ARG_VAR([CXXFILT], [Location of GNU c++filt. Defaults to the first
20 GNU version of `c++filt', `gc++filt' on PATH.])
21 AC_CACHE_CHECK([for GNU c++filt], [ac_cv_path_CXXFILT],
22 [AC_PATH_PROGS_FEATURE_CHECK([CXXFILT], [c++filt gc++filt],
/netbsd/src/external/gpl3/gdb/dist/config/
Dgc++filt.m41 # gc++filt.m4 serial 1 -*- Autoconf -*-
2 # Find an instance of GNU c++filt on PATH.
15 # Check for GNU c++filt.
16 # FIXME: Maybe need TARGET variant, though c++filt should be target
19 [AC_ARG_VAR([CXXFILT], [Location of GNU c++filt. Defaults to the first
20 GNU version of `c++filt', `gc++filt' on PATH.])
21 AC_CACHE_CHECK([for GNU c++filt], [ac_cv_path_CXXFILT],
22 [AC_PATH_PROGS_FEATURE_CHECK([CXXFILT], [c++filt gc++filt],
/netbsd/src/external/gpl3/gcc/dist/config/
Dgc++filt.m41 # gc++filt.m4 serial 1 -*- Autoconf -*-
2 # Find an instance of GNU c++filt on PATH.
15 # Check for GNU c++filt.
16 # FIXME: Maybe need TARGET variant, though c++filt should be target
19 [AC_ARG_VAR([CXXFILT], [Location of GNU c++filt. Defaults to the first
20 GNU version of `c++filt', `gc++filt' on PATH.])
21 AC_CACHE_CHECK([for GNU c++filt], [ac_cv_path_CXXFILT],
22 [AC_PATH_PROGS_FEATURE_CHECK([CXXFILT], [c++filt gc++filt],
/netbsd/src/usr.bin/gzip/
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/src/sys/altq/
Daltq_subr.c1348 apply_filter4(u_int32_t fbmask, struct flow_filter *filt, in apply_filter4() argument
1351 if (filt->ff_flow.fi_family != AF_INET) in apply_filter4()
1353 if ((fbmask & FIMB4_SPORT) && filt->ff_flow.fi_sport != pkt->fi_sport) in apply_filter4()
1355 if ((fbmask & FIMB4_DPORT) && filt->ff_flow.fi_dport != pkt->fi_dport) in apply_filter4()
1358 filt->ff_flow.fi_dst.s_addr != in apply_filter4()
1359 (pkt->fi_dst.s_addr & filt->ff_mask.mask_dst.s_addr)) in apply_filter4()
1362 filt->ff_flow.fi_src.s_addr != in apply_filter4()
1363 (pkt->fi_src.s_addr & filt->ff_mask.mask_src.s_addr)) in apply_filter4()
1365 if ((fbmask & FIMB4_PROTO) && filt->ff_flow.fi_proto != pkt->fi_proto) in apply_filter4()
1367 if ((fbmask & FIMB4_TOS) && filt->ff_flow.fi_tos != in apply_filter4()
[all …]
/netbsd/src/usr.sbin/altq/libaltq/
Dquip_server.c265 struct flow_filter *filt; in query_filterspec() local
285 filt = &fltrinfo->fltr; in query_filterspec()
287 if (filt->ff_flow.fi_family == AF_INET) { in query_filterspec()
290 if (filt->ff_flow.fi_dst.s_addr == 0) { in query_filterspec()
295 inet_ntoa(filt->ff_flow.fi_dst)); in query_filterspec()
296 if (filt->ff_mask.mask_dst.s_addr == 0xffffffff) in query_filterspec()
300 ntoh32(filt->ff_mask.mask_dst.s_addr)); in query_filterspec()
302 if (filt->ff_flow.fi_src.s_addr == 0) { in query_filterspec()
307 inet_ntoa(filt->ff_flow.fi_src)); in query_filterspec()
308 if (filt->ff_mask.mask_src.s_addr == 0xffffffff) in query_filterspec()
[all …]
Dqop.c959 print_filter(const struct flow_filter *filt) in print_filter() argument
961 if (filt->ff_flow.fi_family == AF_INET) { in print_filter()
964 in_addr.s_addr = filt->ff_flow.fi_dst.s_addr; in print_filter()
967 inet_ntoa(in_addr), ntoh32(filt->ff_mask.mask_dst.s_addr), in print_filter()
968 ntoh16(filt->ff_flow.fi_dport)); in print_filter()
969 in_addr.s_addr = filt->ff_flow.fi_src.s_addr; in print_filter()
972 inet_ntoa(in_addr), ntoh32(filt->ff_mask.mask_src.s_addr), in print_filter()
973 ntoh16(filt->ff_flow.fi_sport)); in print_filter()
975 filt->ff_flow.fi_proto, filt->ff_flow.fi_tos, in print_filter()
976 filt->ff_mask.mask_tos); in print_filter()
[all …]
/netbsd/src/share/examples/rump/btplay/
Dbtplay.c73 struct hci_filter filt; in main() local
109 memset(&filt, 0, sizeof(filt)); in main()
110 hci_filter_set(HCI_EVENT_COMMAND_COMPL, &filt); in main()
111 hci_filter_set(HCI_EVENT_INQUIRY_RESULT, &filt); in main()
112 hci_filter_set(HCI_EVENT_INQUIRY_COMPL, &filt); in main()
113 hci_filter_set(HCI_EVENT_REMOTE_NAME_REQ_COMPL, &filt); in main()
115 &filt, sizeof(filt)) == -1) in main()
/netbsd/src/usr.sbin/mld6query/
Dmld6.c76 struct icmp6_filter filt; in main() local
123 ICMP6_FILTER_SETBLOCKALL(&filt); in main()
124 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_QUERY, &filt); in main()
125 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_REPORT, &filt); in main()
126 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_REDUCTION, &filt); in main()
127 if (setsockopt(sock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt, in main()
128 sizeof(filt)) < 0) in main()
/netbsd/src/sys/dev/ic/
Dbwivar.h99 #define CSR_FILT_SETBITS_4(sc, reg, filt, bits) \ argument
100 CSR_WRITE_4((sc), (reg), (CSR_READ_4((sc), (reg)) & (filt)) | (bits))
101 #define CSR_FILT_SETBITS_2(sc, reg, filt, bits) \ argument
102 CSR_WRITE_2((sc), (reg), (CSR_READ_2((sc), (reg)) & (filt)) | (bits))
817 #define MOBJ_FILT_SETBITS_2(mac, objid, ofs, filt, bits) \ argument
819 (MOBJ_READ_2((mac), (objid), (ofs)) & (filt)) | (bits))
851 #define PHY_FILT_SETBITS(mac, ctrl, filt, bits) \ argument
852 PHY_WRITE((mac), (ctrl), (PHY_READ((mac), (ctrl)) & (filt)) | (bits))
906 #define RF_FILT_SETBITS(mac, ofs, filt, bits) \ argument
907 RF_WRITE((mac), (ofs), (RF_READ((mac), (ofs)) & (filt)) | (bits))
/netbsd/src/sys/kern/
Duipc_accf.c112 accept_filt_add(struct accept_filter *filt) in accept_filt_add() argument
120 if (strcmp(p->accf_name, filt->accf_name) == 0) { in accept_filt_add()
125 LIST_INSERT_HEAD(&accept_filtlsthd, filt, accf_next); in accept_filt_add()
/netbsd/src/sys/dev/acpi/
Dqcomgpio.c319 u_int n, filt; in qcomgpio_acpi_fill_pdcmap() local
348 for (filt = 0; in qcomgpio_acpi_fill_pdcmap()
349 filt < sc->sc_config->num_pdc_filter; in qcomgpio_acpi_fill_pdcmap()
350 filt++) { in qcomgpio_acpi_fill_pdcmap()
351 if (sc->sc_config->pdc_filter[filt] == in qcomgpio_acpi_fill_pdcmap()
/netbsd/src/external/bsd/openldap/dist/servers/slapd/
Dcomponent.c64 ComponentFilter** filt, const char** text );
345 ComponentFilter** filt, const char **text ) in get_comp_filter() argument
354 rc = parse_comp_filter( op, &cav, filt, text ); in get_comp_filter()
1068 ComponentFilter** filt, const char** text ) in parse_comp_filter() argument
1180 *filt = op->o_tmpalloc( sizeof(f), op->o_tmpmemctx ); in parse_comp_filter()
1182 *filt = SLAP_MALLOC( sizeof(f) ); in parse_comp_filter()
1184 if ( *filt == NULL ) { in parse_comp_filter()
1187 **filt = f; in parse_comp_filter()
Dfilter.c93 Filter **filt, in get_filter0() argument
317 *filt = op->o_tmpalloc( sizeof(f), op->o_tmpmemctx ); in get_filter0()
318 **filt = f; in get_filter0()
330 Filter **filt, in get_filter() argument
333 return get_filter0( op, ber, filt, text, 0 ); in get_filter()
980 ValuesReturnFilter **filt, in get_simple_vrFilter() argument
1103 *filt = op->o_tmpalloc( sizeof vrf, op->o_tmpmemctx ); in get_simple_vrFilter()
1104 **filt = vrf; in get_simple_vrFilter()
/netbsd/src/external/gpl3/binutils/usr.bin/c++filt/
DMakefile3 PROG= c++filt
/netbsd/src/distrib/syspkg/sets/comp/comp-cxx-bin/
DDESCR4 c++filt - tool for demangling C++ single function names
/netbsd/src/distrib/syspkg/sets/comp/comp-cxx-man/
DDESCR5 c++filt - tool for demangling C++ single function names
/netbsd/src/distrib/syspkg/sets/comp/comp-cxx-catman/
DDESCR5 c++filt - tool for demangling C++ single function names
/netbsd/src/external/gpl3/binutils/usr.bin/
DMakefile10 … gprof ld ${G_PROGRAMS:C/-new$//:C/sysdump//:C/bfdtest1//:C/bfdtest2//:C/srconv//:cxxfilt=c++filt/}
/netbsd/src/external/bsd/wpa/dist/src/drivers/
Ddriver_atheros.c958 struct ieee80211req_set_filter filt; in atheros_receive_pkt() local
961 filt.app_filterype = 0; in atheros_receive_pkt()
963 filt.app_filterype |= IEEE80211_FILTER_TYPE_PROBE_REQ; in atheros_receive_pkt()
965 filt.app_filterype |= (IEEE80211_FILTER_TYPE_ASSOC_REQ | in atheros_receive_pkt()
969 filt.app_filterype |= IEEE80211_FILTER_TYPE_ACTION; in atheros_receive_pkt()
972 filt.app_filterype |= IEEE80211_FILTER_TYPE_ACTION; in atheros_receive_pkt()
974 if (filt.app_filterype) { in atheros_receive_pkt()
975 ret = set80211priv(drv, IEEE80211_IOCTL_FILTERFRAME, &filt, in atheros_receive_pkt()
992 struct ieee80211req_set_filter filt; in atheros_reset_appfilter() local
993 filt.app_filterype = 0; in atheros_reset_appfilter()
[all …]
/netbsd/src/external/gpl3/binutils/usr.bin/common/
DMakefile.prog15 XPROG= ${PROG:c++filt=cxxfilt}
/netbsd/src/usr.sbin/rtadvd/
Drtadvd.c1494 struct icmp6_filter filt; in sock_open() local
1551 ICMP6_FILTER_SETBLOCKALL(&filt); in sock_open()
1552 ICMP6_FILTER_SETPASS(ND_ROUTER_SOLICIT, &filt); in sock_open()
1553 ICMP6_FILTER_SETPASS(ND_ROUTER_ADVERT, &filt); in sock_open()
1554 if (prog_setsockopt(sock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt, in sock_open()
1555 sizeof(filt)) == -1) { in sock_open()
/netbsd/src/sbin/ping6/
Dping6.c727 struct icmp6_filter filt; in main() local
729 ICMP6_FILTER_SETBLOCKALL(&filt); in main()
732 ICMP6_FILTER_SETPASS(ICMP6_NI_REPLY, &filt); in main()
734 ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt); in main()
736 ICMP6_FILTER_SETPASSALL(&filt); in main()
738 if (prog_setsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &filt, in main()
739 sizeof(filt)) < 0) in main()

12345