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

123

/freebsd-13-stable/contrib/elftoolchain/cxxfilt/
H A DMakefile5 PROG= c++filt
13 MAN1= c++filt.1
/freebsd-13-stable/usr.bin/clang/llvm-cxxfilt/
H A DMakefile11 LINKS= ${BINDIR}/llvm-cxxfilt ${BINDIR}/c++filt
12 MLINKS= llvm-cxxfilt.1 c++filt.1
/freebsd-13-stable/usr.bin/gzip/
H A Dzdiff113 check_suffix "$1" files filt
114 if [ -z "$filt" ]; then
118 $filt -- "$1" | $prog $flags -- - "$files"
122 check_suffix "$1" files filt
124 if [ -z "$filt" -a -z "$filt2" ]; then
126 elif [ -z "$filt" -a -n "$filt2" -a "$1" != "-" ]; then
128 elif [ -n "$filt" -a -z "$filt2" -a "$2" != "-" ]; then
129 $filt -- "$1" | $prog $flags -- - "$2"
134 ${filt:-cat} -- "$1" | $prog $flags -- - "$tmp"
/freebsd-13-stable/usr.bin/cxxfilt/
H A DMakefile10 PROG= c++filt
/freebsd-13-stable/sys/arm/mv/
H A Dic.c156 u_int filt, irq; local
159 filt = ~((last >= 0) ? (2 << last) - 1 : 0);
161 if (irq & filt) {
162 next = ffs(irq & filt) - 1;
166 filt = ~((last >= 32) ? (2 << (last - 32)) - 1 : 0);
168 if (irq & filt) {
169 next = ffs(irq & filt) + 31;
174 filt = ~((last >= 64) ? (2 << (last - 64)) - 1 : 0);
176 if (irq & filt) {
177 next = ffs(irq & filt)
[all...]
/freebsd-13-stable/usr.sbin/lpr/common_source/
H A Dprintcap.c202 "filt.cifplot", "filt.dvi", "filt.plot", "filt.input", "filt.ditroff",
203 "filt.output", "filt.fortran", "filt.troff", "filt.raster"
215 enum lpd_filters filt; local
336 enum lpd_filters filt; local
[all...]
/freebsd-13-stable/sys/net/altq/
H A Daltq_subr.c1592 apply_filter4(fbmask, filt, pkt)
1594 struct flow_filter *filt;
1597 if (filt->ff_flow.fi_family != AF_INET)
1599 if ((fbmask & FIMB4_SPORT) && filt->ff_flow.fi_sport != pkt->fi_sport)
1601 if ((fbmask & FIMB4_DPORT) && filt->ff_flow.fi_dport != pkt->fi_dport)
1604 filt->ff_flow.fi_dst.s_addr !=
1605 (pkt->fi_dst.s_addr & filt->ff_mask.mask_dst.s_addr))
1608 filt->ff_flow.fi_src.s_addr !=
1609 (pkt->fi_src.s_addr & filt->ff_mask.mask_src.s_addr))
1611 if ((fbmask & FIMB4_PROTO) && filt
[all...]
/freebsd-13-stable/usr.sbin/mld6query/
H A Dmld6.c97 struct icmp6_filter filt; local
165 ICMP6_FILTER_SETBLOCKALL(&filt);
166 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_QUERY, &filt);
167 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_REPORT, &filt);
168 ICMP6_FILTER_SETPASS(ICMP6_MEMBERSHIP_REDUCTION, &filt);
169 if (setsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
170 sizeof(filt)) < 0)
/freebsd-13-stable/sys/mips/mips/
H A Dintr_machdep.c176 cpu_establish_hardintr(const char *name, driver_filter_t *filt, argument
205 intr_event_add_handler(event, name, filt, handler, arg,
213 cpu_establish_softintr(const char *name, driver_filter_t *filt, argument
221 printf("Establish SOFT IRQ %d: filt %p handler %p arg %p\n",
222 irq, filt, handler, arg);
238 intr_event_add_handler(event, name, filt, handler, arg,
H A Dmips_pic.c80 const char *name, driver_filter_t *filt,
628 driver_filter_t *filt, void (*handler)(void*), void *arg, int irq,
681 error = bus_setup_intr(sc->pic_dev, res, flags, filt, handler, arg,
688 cpu_establish_hardintr(const char *name, driver_filter_t *filt, argument
696 cpu_establish_intr(pic_sc, name, filt, handler, arg, irq+NSOFT_IRQS,
701 cpu_establish_softintr(const char *name, driver_filter_t *filt, argument
710 cpu_establish_intr(pic_sc, name, filt, handler, arg, irq, flags,
627 cpu_establish_intr(struct mips_pic_softc *sc, const char *name, driver_filter_t *filt, void (*handler)(void*), void *arg, int irq, int flags, void **cookiep) argument
/freebsd-13-stable/sys/kern/
H A Duipc_accf.c76 accept_filt_add(struct accept_filter *filt) argument
82 if (strcmp(p->accf_name, filt->accf_name) == 0) {
87 p->accf_callback = filt->accf_callback;
89 free(filt, M_ACCF);
95 SLIST_INSERT_HEAD(&accept_filtlsthd, filt, accf_next);
H A Dkern_event.c119 static struct filterops *kqueue_fo_find(int filt);
120 static void kqueue_fo_release(int filt);
1372 kqueue_add_filteropts(int filt, struct filterops *filtops) argument
1377 if (filt > 0 || filt + EVFILT_SYSCOUNT < 0) {
1380 ~filt, EVFILT_SYSCOUNT);
1384 if (sysfilt_ops[~filt].for_fop != &null_filtops &&
1385 sysfilt_ops[~filt].for_fop != NULL)
1388 sysfilt_ops[~filt].for_fop = filtops;
1389 sysfilt_ops[~filt]
1397 kqueue_del_filteropts(int filt) argument
1421 kqueue_fo_find(int filt) argument
1440 kqueue_fo_release(int filt) argument
1467 int error, filt, event; local
[all...]
/freebsd-13-stable/sys/mips/malta/
H A Dgt.c89 struct resource *ires, int flags, driver_filter_t *filt,
93 filt, intr, arg, cookiep);
88 gt_setup_intr(device_t dev, device_t child, struct resource *ires, int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep) argument
/freebsd-13-stable/sys/dev/bwi/
H A Dbwimac.h90 #define MOBJ_FILT_SETBITS_2(mac, objid, ofs, filt, bits) \
92 (MOBJ_READ_2((mac), (objid), (ofs)) & (filt)) | (bits))
H A Dbwirf.h120 #define RF_FILT_SETBITS(mac, ofs, filt, bits) \
121 RF_WRITE((mac), (ofs), (RF_READ((mac), (ofs)) & (filt)) | (bits))
/freebsd-13-stable/sys/mips/nlm/
H A Dintr_machdep.c128 cpu_establish_softintr(const char *name, driver_filter_t * filt, argument
180 cpu_establish_hardintr(const char *name, driver_filter_t * filt, argument
207 if (filt == NULL)
226 intr_event_add_handler(ie, name, filt, handler, arg,
/freebsd-13-stable/sys/riscv/riscv/
H A Dintr_machdep.c118 riscv_setup_intr(const char *name, driver_filter_t *filt, argument
137 filt, handler, arg, intr_priority(flags), flags, cookiep);
184 riscv_setup_ipihandler(driver_filter_t *filt) argument
187 riscv_setup_intr("ipi", filt, NULL, NULL, IRQ_SOFTWARE_SUPERVISOR,
H A Dnexus.c95 int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep);
268 driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep)
280 error = intr_setup_irq(child, res, filt, intr, arg, flags, cookiep);
267 nexus_setup_intr(device_t dev, device_t child, struct resource *res, int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep) argument
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/lockstat/
H A Dlockstat.c635 filter_add(char **filt, char *what, uintptr_t base, uintptr_t size) argument
640 if (*filt == NULL) {
641 *filt = malloc(1);
642 *filt[0] = '\0';
646 (void) sprintf(c, "%s(%s >= 0x%p && %s < 0x%p)", *filt[0] != '\0' ?
649 (void) sprintf(c, "%s(%s >= %p && %s < %p)", *filt[0] != '\0' ?
653 newlen = (len = strlen(*filt) + 1) + strlen(c);
655 bcopy(*filt, new, len);
657 free(*filt);
658 *filt
662 filter_destroy(char **filt) argument
1130 char *filt = NULL, *ifilt = NULL; local
[all...]
/freebsd-13-stable/sys/dev/pccbb/
H A Dpccbbvar.h36 driver_filter_t *filt; member in struct:cbb_intrhand
138 int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg,
/freebsd-13-stable/sys/dev/quicc/
H A Dquicc_core.c356 int flags, driver_filter_t *filt, void (*ihand)(void *), void *arg,
366 if (filt == NULL && !(flags & INTR_MPSAFE))
373 if (sc->sc_fastintr && filt == NULL) {
381 qd->qd_ih = (filt != NULL) ? filt : (driver_filter_t *)ihand;
355 quicc_bus_setup_intr(device_t dev, device_t child, struct resource *r, int flags, driver_filter_t *filt, void (*ihand)(void *), void *arg, void **cookiep) argument
/freebsd-13-stable/usr.sbin/rrenumd/
H A Drrenumd.c273 struct icmp6_filter filt; local
299 ICMP6_FILTER_SETBLOCKALL(&filt);
300 ICMP6_FILTER_SETPASS(ICMP6_ROUTER_RENUMBERING, &filt);
301 if (setsockopt(s6, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
302 sizeof(filt)) < 0) {
/freebsd-13-stable/sys/dev/scc/
H A Dscc_core.c520 driver_filter_t *filt, void (*ihand)(void *), void *arg, void **cookiep)
531 if (filt == NULL && !(flags & INTR_MPSAFE))
538 if (sc->sc_fastintr && filt == NULL) {
553 m->m_fastintr = (filt != NULL) ? 1 : 0;
554 m->ih = (filt != NULL) ? filt : (driver_filter_t *)ihand;
519 scc_bus_setup_intr(device_t dev, device_t child, struct resource *r, int flags, driver_filter_t *filt, void (*ihand)(void *), void *arg, void **cookiep) argument
/freebsd-13-stable/sys/arm/arm/
H A Dnexus.c106 int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep);
309 driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep)
315 return(intr_setup_irq(child, res, filt, intr, arg, flags, cookiep));
308 nexus_setup_intr(device_t dev, device_t child, struct resource *res, int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep) argument
/freebsd-13-stable/sys/sys/
H A Devent.h349 int kqueue_add_filteropts(int filt, struct filterops *filtops);
350 int kqueue_del_filteropts(int filt);

Completed in 304 milliseconds

123