Searched refs:filter (Results 276 - 300 of 363) sorted by relevance

<<1112131415

/openbsd-current/sys/dev/usb/
H A Dif_uaq.c650 uint8_t filter[UAQ_MCAST_FILTER_SIZE]; local
669 bzero(filter, sizeof(filter));
674 filter[hash >> 3] |= (1 << (hash & 7));
679 UAQ_MCAST_FILTER_SIZE, filter, UAQ_MCAST_FILTER_SIZE);
/openbsd-current/sys/dev/ic/
H A Dar5212.c1592 /* Set the multicast filter */
1633 u_int32_t data, filter = 0; local
1635 filter = AR5K_REG_READ(AR5K_AR5212_RX_FILTER);
1639 filter |= HAL_RX_FILTER_PHYRADAR;
1642 filter |= HAL_RX_FILTER_PHYERR;
1644 return (filter);
1648 ar5k_ar5212_set_rx_filter(struct ath_hal *hal, u_int32_t filter) argument
1652 if (filter & HAL_RX_FILTER_PHYRADAR)
1654 if (filter & HAL_RX_FILTER_PHYERR)
1666 AR5K_REG_WRITE(AR5K_AR5212_RX_FILTER, filter
[all...]
H A Dar5210.c1226 /* Set the multicast filter */
1270 ar5k_ar5210_set_rx_filter(struct ath_hal *hal, u_int32_t filter) argument
1275 if (filter & HAL_RX_FILTER_PHYRADAR) {
1276 filter &= ~HAL_RX_FILTER_PHYRADAR;
1277 filter |= AR5K_AR5210_RX_FILTER_PROMISC;
1280 AR5K_REG_WRITE(AR5K_AR5210_RX_FILTER, filter);
/openbsd-current/sbin/pfctl/
H A Dpfctl_parser.c77 int ifa_skip_if(const char *filter, struct node_host *p);
158 { "filter-prohib", ICMP_UNREACH, ICMP_UNREACH_FILTER_PROHIB },
1613 ifa_skip_if(const char *filter, struct node_host *p) argument
1619 if (filter == NULL || !*filter)
1621 if (!strcmp(p->ifname, filter))
1623 n = strlen(filter);
1626 if (filter[n-1] >= '0' && filter[n-1] <= '9')
1628 if (strncmp(p->ifname, filter,
[all...]
H A Dpfctl_table.c592 pfctl_show_ifaces(const char *filter, int opts) argument
602 if (pfi_get_ifaces(filter, b.pfrb_caddr, &b.pfrb_size))
/openbsd-current/gnu/usr.bin/cvs/src/
H A Dcommit.c49 static int precommit_proc PROTO((char *repository, char *filter));
1114 precommit_proc (repository, filter)
1116 char *filter;
1118 /* see if the filter is there, only if it's a full path */
1119 if (isabsolute (filter))
1123 s = xstrdup (filter);
1132 error (0, errno, "cannot find pre-commit filter `%s'", s);
1139 run_setup (filter);
/openbsd-current/sys/dev/pci/
H A Dif_iwnreg.h514 uint32_t filter; member in struct:iwn_rxon
536 uint32_t filter; member in struct:iwn_rxon_assoc
551 uint32_t filter; member in struct:iwn4965_rxon_assoc
566 uint32_t filter; member in struct:iwn_assoc
847 uint32_t filter; member in struct:iwn_scan_hdr
1162 uint32_t filter; member in struct:iwn_spectrum_cmd
H A Dif_nfe.c1496 uint32_t filter; local
1499 filter = NFE_RXFILTER_MAGIC;
1505 filter |= NFE_PROMISC;
1507 filter |= NFE_U2M;
1511 filter |= NFE_U2M;
1540 NFE_WRITE(sc, NFE_RXFILTER, filter);
/openbsd-current/gnu/gcc/libstdc++-v3/include/ext/
H A Dtypelist.h85 struct filter;
378 struct filter struct in namespace:typelist
/openbsd-current/gnu/usr.bin/perl/dist/Module-CoreList/
H A Dcorelist110 In module filtering context, it can be used as Perl version filter.
/openbsd-current/usr.sbin/rarpd/
H A Drarpd.c234 static struct bpf_program filter = { variable in typeref:struct:bpf_program
241 * Set immediate mode, and set a filter that accepts only RARP requests.
281 /* Set filter program. */
282 if (ioctl(fd, BIOCSETF, (caddr_t)&filter) == -1)
/openbsd-current/usr.bin/kdump/
H A Dktrstruct.c452 printf(" { ident=%lu, filter=", kev.ident);
453 evfiltername(kev.filter);
457 evfflagsname(kev.filter, kev.fflags);
/openbsd-current/gnu/llvm/llvm/utils/vim/syntax/
H A Dllvm.vim90 \ filter
/openbsd-current/sbin/iked/
H A Dparse.y1200 filters_l : filters_l filter
1201 | filter
1204 filter : TAG STRING label
2475 struct iked_auth *authtype, struct ipsec_filters *filter,
2554 if (filter != NULL) {
2555 if (filter->tag)
2556 strlcpy(pol.pol_tag, filter->tag, sizeof(pol.pol_tag));
2557 pol.pol_tap = filter->tap;
/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/
H A DAPItest.pm208 =item B<filter>
210 Installs a source filter that substitutes "e" for "o" (witheut regard fer
/openbsd-current/usr.sbin/ypldap/
H A Dldapclient.c492 char **attrs, char *filter, int min_attr, int max_attr,
507 filter, attrs, 0, 0, 0, pg) == -1) {
491 client_search_idm(struct env *env, struct idm *idm, struct aldap *al, char **attrs, char *filter, int min_attr, int max_attr, enum imsg_type type) argument
/openbsd-current/sys/arch/amd64/stand/libsa/
H A Dpxe.h229 uint8_t filter; /* see UNDI_OPEN (0x0006) */ member in struct:__anon8295
/openbsd-current/sys/arch/i386/stand/libsa/
H A Dpxe.h229 uint8_t filter; /* see UNDI_OPEN (0x0006) */ member in struct:__anon8421
/openbsd-current/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dloader.py152 testFnNames = list(filter(isTestMethod, dir(testCaseClass)))
289 # matches the filter
/openbsd-current/gnu/llvm/llvm/tools/opt-viewer/
H A Dopt-viewer.py345 '--filter',
347 help='Only display remarks from passes matching filter expression')
364 optrecord.gather_results(files, args.jobs, print_progress, args.filter)
/openbsd-current/gnu/llvm/llvm/utils/lit/lit/
H A DTest.py414 matchExpressions = set(filter(BooleanExpression.isMatchExpression, tokens))
/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp1025 const ModRMFilter &filter,
1029 if (filter.accepts(index)) {
1066 const ModRMFilter &filter,
1085 filter,
/openbsd-current/sys/netinet/
H A Dip_ipsp.c447 /* Check for filter matches. */
452 * whether the TDB-associated filter is a subset
474 struct sockaddr_encap *filter, struct sockaddr_encap *filtermask)
488 if (!ipsp_aux_match(tdbp, ids, filter, filtermask))
505 struct sockaddr_encap *filter, struct sockaddr_encap *filtermask)
519 if (!ipsp_aux_match(tdbp, ids, filter, filtermask))
472 gettdbbydst(u_int rdomain, union sockaddr_union *dst, u_int8_t sproto, struct ipsec_ids *ids, struct sockaddr_encap *filter, struct sockaddr_encap *filtermask) argument
503 gettdbbysrc(u_int rdomain, union sockaddr_union *src, u_int8_t sproto, struct ipsec_ids *ids, struct sockaddr_encap *filter, struct sockaddr_encap *filtermask) argument
/openbsd-current/gnu/llvm/libcxx/include/__ranges/
H A Dfilter_view.h254 inline constexpr auto filter = __filter::__fn{}; member in namespace:ranges::views::__cpo
/openbsd-current/sbin/route/
H A Droute.c153 unsigned int filter = 0; local
229 filter = ROUTE_FILTER(RTM_IFINFO) |
249 if (filter != 0) {
250 if (setsockopt(s, AF_ROUTE, ROUTE_MSGFILTER, &filter,
251 sizeof(filter)) == -1)

Completed in 471 milliseconds

<<1112131415