/freebsd/usr.bin/gzip/ |
H A D | zdiff | 112 check_suffix "$1" files filt 113 if [ -z "$filt" ]; then 117 $filt -- "$1" | $prog $flags -- - "$files" 121 check_suffix "$1" files filt 123 if [ -z "$filt" -a -z "$filt2" ]; then 125 elif [ -z "$filt" -a -n "$filt2" -a "$1" != "-" ]; then 127 elif [ -n "$filt" -a -z "$filt2" -a "$2" != "-" ]; then 128 $filt -- "$1" | $prog $flags -- - "$2" 133 ${filt:-cat} -- "$1" | $prog $flags -- - "$tmp"
|
/freebsd/sys/net/altq/ |
H A D | altq_subr.c | 1585 apply_filter4(fbmask, filt, pkt) in apply_filter4() argument 1587 struct flow_filter *filt; 1590 if (filt->ff_flow.fi_family != AF_INET) 1592 if ((fbmask & FIMB4_SPORT) && filt->ff_flow.fi_sport != pkt->fi_sport) 1594 if ((fbmask & FIMB4_DPORT) && filt->ff_flow.fi_dport != pkt->fi_dport) 1597 filt->ff_flow.fi_dst.s_addr != 1598 (pkt->fi_dst.s_addr & filt->ff_mask.mask_dst.s_addr)) 1601 filt->ff_flow.fi_src.s_addr != 1602 (pkt->fi_src.s_addr & filt->ff_mask.mask_src.s_addr)) 1604 if ((fbmask & FIMB4_PROTO) && filt->ff_flow.fi_proto != pkt->fi_proto) [all …]
|
/freebsd/sys/arm/mv/ |
H A D | ic.c | 151 u_int filt, irq; in arm_get_next_irq() local 154 filt = ~((last >= 0) ? (2 << last) - 1 : 0); in arm_get_next_irq() 156 if (irq & filt) { in arm_get_next_irq() 157 next = ffs(irq & filt) - 1; in arm_get_next_irq() 161 filt = ~((last >= 32) ? (2 << (last - 32)) - 1 : 0); in arm_get_next_irq() 163 if (irq & filt) { in arm_get_next_irq() 164 next = ffs(irq & filt) + 31; in arm_get_next_irq() 169 filt = ~((last >= 64) ? (2 << (last - 64)) - 1 : 0); in arm_get_next_irq() 171 if (irq & filt) { in arm_get_next_irq() 172 next = ffs(irq & filt) + 63; in arm_get_next_irq()
|
/freebsd/usr.sbin/lpr/common_source/ |
H A D | printcap.c | 207 enum lpd_filters filt; in getprintcap_int() local 277 for (filt = 0; filt < LPF_COUNT; filt++) { in getprintcap_int() 278 CHK(capdb_getaltstr(bp, filters[filt], longfilters[filt], 0, in getprintcap_int() 279 &pp->filters[filt])); in getprintcap_int() 328 enum lpd_filters filt; in free_printer() local 332 for (filt = 0; filt < LPF_COUNT; filt++) in free_printer() 333 cfree(pp->filters[filt]); in free_printer()
|
/freebsd/usr.sbin/mld6query/ |
H A D | mld6.c | 94 struct icmp6_filter filt; in main() local 162 ICMP6_FILTER_SETBLOCKALL(&filt); in main() 163 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_QUERY, &filt); in main() 164 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_REPORT, &filt); in main() 165 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_REDUCTION, &filt); in main() 166 if (setsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &filt, in main() 167 sizeof(filt)) < 0) in main()
|
/freebsd/sys/kern/ |
H A D | uipc_accf.c | 74 accept_filt_add(struct accept_filter *filt) in accept_filt_add() argument 80 if (strcmp(p->accf_name, filt->accf_name) == 0) { in accept_filt_add() 85 p->accf_callback = filt->accf_callback; in accept_filt_add() 87 free(filt, M_ACCF); in accept_filt_add() 93 SLIST_INSERT_HEAD(&accept_filtlsthd, filt, accf_next); in accept_filt_add()
|
H A D | kern_event.c | 117 static const struct filterops *kqueue_fo_find(int filt); 118 static void kqueue_fo_release(int filt); 1402 kqueue_add_filteropts(int filt, const struct filterops *filtops) in kqueue_add_filteropts() argument 1407 if (filt > 0 || filt + EVFILT_SYSCOUNT < 0) { in kqueue_add_filteropts() 1410 ~filt, EVFILT_SYSCOUNT); in kqueue_add_filteropts() 1414 if (sysfilt_ops[~filt].for_fop != &null_filtops && in kqueue_add_filteropts() 1415 sysfilt_ops[~filt].for_fop != NULL) in kqueue_add_filteropts() 1418 sysfilt_ops[~filt].for_fop = filtops; in kqueue_add_filteropts() 1419 sysfilt_ops[~filt].for_refcnt = 0; in kqueue_add_filteropts() 1427 kqueue_del_filteropts(int filt) in kqueue_del_filteropts() argument [all …]
|
/freebsd/cddl/contrib/opensolaris/cmd/lockstat/ |
H A D | lockstat.c | 635 filter_add(char **filt, char *what, uintptr_t base, size_t size) in filter_add() argument 640 if (*filt == NULL) { in filter_add() 641 *filt = malloc(1); in filter_add() 642 *filt[0] = '\0'; in filter_add() 646 (void) sprintf(c, "%s(%s >= 0x%p && %s < 0x%p)", *filt[0] != '\0' ? in filter_add() 649 (void) sprintf(c, "%s(%s >= %p && %s < %p)", *filt[0] != '\0' ? in filter_add() 653 newlen = (len = strlen(*filt) + 1) + strlen(c); in filter_add() 655 bcopy(*filt, new, len); in filter_add() 657 free(*filt); in filter_add() 658 *filt = new; in filter_add() [all …]
|
/freebsd/contrib/elftoolchain/cxxfilt/ |
H A D | Makefile | 5 PROG= c++filt 13 MAN1= c++filt.1
|
/freebsd/usr.bin/clang/llvm-cxxfilt/ |
H A D | Makefile | 26 LINKS= ${BINDIR}/llvm-cxxfilt ${BINDIR}/c++filt 27 MLINKS= llvm-cxxfilt.1 c++filt.1
|
/freebsd/sys/dev/quicc/ |
H A D | quicc_core.c | 352 int flags, driver_filter_t *filt, void (*ihand)(void *), void *arg, in quicc_bus_setup_intr() argument 362 if (filt == NULL && !(flags & INTR_MPSAFE)) in quicc_bus_setup_intr() 369 if (sc->sc_fastintr && filt == NULL) { in quicc_bus_setup_intr() 377 qd->qd_ih = (filt != NULL) ? filt : (driver_filter_t *)ihand; in quicc_bus_setup_intr()
|
/freebsd/sys/dev/bwi/ |
H A D | bwiphy.h | 74 #define PHY_FILT_SETBITS(mac, ctrl, filt, bits) \ argument 75 PHY_WRITE((mac), (ctrl), (PHY_READ((mac), (ctrl)) & (filt)) | (bits))
|
H A D | bwimac.h | 89 #define MOBJ_FILT_SETBITS_2(mac, objid, ofs, filt, bits) \ argument 91 (MOBJ_READ_2((mac), (objid), (ofs)) & (filt)) | (bits))
|
H A D | bwirf.h | 119 #define RF_FILT_SETBITS(mac, ofs, filt, bits) \ argument 120 RF_WRITE((mac), (ofs), (RF_READ((mac), (ofs)) & (filt)) | (bits))
|
H A D | if_bwivar.h | 91 #define CSR_FILT_SETBITS_4(sc, reg, filt, bits) \ argument 92 CSR_WRITE_4((sc), (reg), (CSR_READ_4((sc), (reg)) & (filt)) | (bits)) 93 #define CSR_FILT_SETBITS_2(sc, reg, filt, bits) \ argument 94 CSR_WRITE_2((sc), (reg), (CSR_READ_2((sc), (reg)) & (filt)) | (bits))
|
/freebsd/usr.sbin/rrenumd/ |
H A D | rrenumd.c | 271 struct icmp6_filter filt; in sock6_open() local 297 ICMP6_FILTER_SETBLOCKALL(&filt); in sock6_open() 298 ICMP6_FILTER_SETPASS(ICMP6_ROUTER_RENUMBERING, &filt); in sock6_open() 299 if (setsockopt(s6, IPPROTO_ICMPV6, ICMP6_FILTER, &filt, in sock6_open() 300 sizeof(filt)) < 0) { in sock6_open()
|
/freebsd/sys/dev/scc/ |
H A D | scc_core.c | 516 driver_filter_t *filt, void (*ihand)(void *), void *arg, void **cookiep) in scc_bus_setup_intr() argument 527 if (filt == NULL && !(flags & INTR_MPSAFE)) in scc_bus_setup_intr() 534 if (sc->sc_fastintr && filt == NULL) { in scc_bus_setup_intr() 549 m->m_fastintr = (filt != NULL) ? 1 : 0; in scc_bus_setup_intr() 550 m->ih = (filt != NULL) ? filt : (driver_filter_t *)ihand; in scc_bus_setup_intr()
|
/freebsd/sys/dev/pccbb/ |
H A D | pccbbvar.h | 34 driver_filter_t *filt; member 135 int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg,
|
/freebsd/tools/build/options/ |
H A D | WITH_LLVM_CXXFILT | 1 Install LLVM's llvm-cxxfilt as c++filt, instead of ELF Tool Chain's cxxfilt.
|
H A D | WITHOUT_LLVM_CXXFILT | 1 Install ELF Tool Chain's cxxfilt as c++filt, instead of LLVM's llvm-cxxfilt.
|
H A D | WITHOUT_LLVM_BINUTILS | 13 .Xr c++filt 1
|
/freebsd/usr.sbin/rtsold/ |
H A D | rtsol.c | 104 struct icmp6_filter filt; in recvsockopen() local 132 ICMP6_FILTER_SETBLOCKALL(&filt); in recvsockopen() 133 ICMP6_FILTER_SETPASS(ND_ROUTER_ADVERT, &filt); in recvsockopen() 134 if (setsockopt(sock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt, in recvsockopen() 135 sizeof(filt)) == -1) { in recvsockopen()
|
/freebsd/contrib/bsnmp/snmp_ntp/ |
H A D | snmp_ntp.c | 161 struct filt { struct 164 TAILQ_ENTRY(filt) link; argument 170 TAILQ_HEAD(filt_list, filt); argument 879 struct filt *f; in parse_filt() 929 struct filt *f; in fetch_peers() 1410 uint32_t filt; in op_ntpFilterRegisterTable() local 1411 struct filt *t; in op_ntpFilterRegisterTable() 1435 if (index_decode(&value->var, sub, iidx, &peer, &filt)) in op_ntpFilterRegisterTable()
|
/freebsd/usr.bin/cxxfilt/ |
H A D | Makefile | 10 PROG= c++filt
|
/freebsd/sys/powerpc/powerpc/ |
H A D | nexus.c | 152 int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg, in nexus_setup_intr() argument 176 rman_get_start(r), filt, intr, arg, flags, cookiep, domain); in nexus_setup_intr()
|