/freebsd/sys/contrib/libsodium/ |
H A D | libsodium.vcxproj.filters | 4 <Filter Include="Source Files"> 7 </Filter> 8 <Filter Include="Header Files"> 11 </Filter> 12 <Filter Include="Resource Files"> 15 </Filter> 19 <Filter>Source Files</Filter> 22 <Filter>Source Files</Filter> 25 <Filter>Source Files</Filter> 28 <Filter>Source Files</Filter> [all …]
|
/freebsd/sys/contrib/libsodium/builds/msvc/vs2010/libsodium/ |
H A D | libsodium.vcxproj.filters | 5 <Filter>packaging</Filter> 8 <Filter>packaging</Filter> 11 <Filter>packaging</Filter> 14 <Filter>packaging</Filter> 17 <Filter>packaging</Filter> 20 <Filter>packaging</Filter> 28 <Filter>crypto_generichash</Filter> 31 <Filter>crypto_generichash\blake2b</Filter> 34 <Filter>crypto_generichash\blake2b\ref</Filter> 37 <Filter>crypto_generichash\blake2b\ref</Filter> [all …]
|
/freebsd/sys/contrib/libsodium/builds/msvc/vs2012/libsodium/ |
H A D | libsodium.vcxproj.filters | 5 <Filter>packaging</Filter> 8 <Filter>packaging</Filter> 11 <Filter>packaging</Filter> 14 <Filter>packaging</Filter> 17 <Filter>packaging</Filter> 20 <Filter>packaging</Filter> 28 <Filter>crypto_generichash</Filter> 31 <Filter>crypto_generichash\blake2b</Filter> 34 <Filter>crypto_generichash\blake2b\ref</Filter> 37 <Filter>crypto_generichash\blake2b\ref</Filter> [all …]
|
/freebsd/sys/contrib/libsodium/builds/msvc/vs2013/libsodium/ |
H A D | libsodium.vcxproj.filters | 5 <Filter>packaging</Filter> 8 <Filter>packaging</Filter> 11 <Filter>packaging</Filter> 14 <Filter>packaging</Filter> 17 <Filter>packaging</Filter> 20 <Filter>packaging</Filter> 28 <Filter>crypto_generichash</Filter> 31 <Filter>crypto_generichash\blake2b</Filter> 34 <Filter>crypto_generichash\blake2b\ref</Filter> 37 <Filter>crypto_generichash\blake2b\ref</Filter> [all …]
|
/freebsd/sys/contrib/libsodium/builds/msvc/vs2015/libsodium/ |
H A D | libsodium.vcxproj.filters | 5 <Filter>packaging</Filter> 8 <Filter>packaging</Filter> 11 <Filter>packaging</Filter> 14 <Filter>packaging</Filter> 17 <Filter>packaging</Filter> 20 <Filter>packaging</Filter> 28 <Filter>crypto_generichash</Filter> 31 <Filter>crypto_generichash\blake2b</Filter> 34 <Filter>crypto_generichash\blake2b\ref</Filter> 37 <Filter>crypto_generichash\blake2b\ref</Filter> [all …]
|
/freebsd/sys/contrib/libsodium/builds/msvc/vs2017/libsodium/ |
H A D | libsodium.vcxproj.filters | 5 <Filter>packaging</Filter> 8 <Filter>packaging</Filter> 11 <Filter>packaging</Filter> 14 <Filter>packaging</Filter> 17 <Filter>packaging</Filter> 20 <Filter>packaging</Filter> 28 <Filter>crypto_generichash</Filter> 31 <Filter>crypto_generichash\blake2b</Filter> 34 <Filter>crypto_generichash\blake2b\ref</Filter> 37 <Filter>crypto_generichash\blake2b\ref</Filter> [all …]
|
/freebsd/contrib/bc/vs/ |
H A D | bc.vcxproj.filters | 4 <Filter Include="src"> 6 </Filter> 7 <Filter Include="include"> 9 </Filter> 10 <Filter Include="gen"> 12 </Filter> 13 <Filter Include="src2"> 15 </Filter> 19 <Filter>include</Filter> 22 <Filter>include</Filter> [all …]
|
H A D | bcl.vcxproj.filters | 4 <Filter Include="src"> 6 </Filter> 7 <Filter Include="include"> 9 </Filter> 13 <Filter>src</Filter> 16 <Filter>src</Filter> 19 <Filter>src</Filter> 22 <Filter>src</Filter> 25 <Filter>src</Filter> 28 <Filter>src</Filter> [all …]
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_read.c | 457 struct archive_read_filter *filter, *tmp; in archive_read_open1() local 481 filter = calloc(1, sizeof(*filter)); in archive_read_open1() 482 if (filter == NULL) in archive_read_open1() 484 filter->bidder = NULL; in archive_read_open1() 485 filter->upstream = NULL; in archive_read_open1() 486 filter->archive = a; in archive_read_open1() 487 filter->data = a->client.dataset[0].data; in archive_read_open1() 488 filter->vtable = &none_reader_vtable; in archive_read_open1() 489 filter->name = "none"; in archive_read_open1() 490 filter->code = ARCHIVE_FILTER_NONE; in archive_read_open1() [all …]
|
H A D | archive_read_append_filter.c | 42 struct archive_read_filter *filter; in archive_read_append_filter() local 49 /* No filter to add, so do nothing. in archive_read_append_filter() 50 * NOTE: An initial "NONE" type filter is always set at the end of the in archive_read_append_filter() 51 * filter chain. in archive_read_append_filter() 69 "Cannot append program filter using archive_read_append_filter"); in archive_read_append_filter() 109 "Invalid filter code specified"); in archive_read_append_filter() 126 "Internal error: Unable to append filter"); in archive_read_append_filter() 130 filter = calloc(1, sizeof(*filter)); in archive_read_append_filter() 131 if (filter == NULL) in archive_read_append_filter() 136 filter->bidder = bidder; in archive_read_append_filter() [all …]
|
/freebsd/sys/net/ |
H A D | bpf_jitter.c | 68 bpf_jit_filter *filter; in bpf_jitter() local 70 /* Allocate the filter structure. */ in bpf_jitter() 72 filter = (struct bpf_jit_filter *)malloc(sizeof(*filter), in bpf_jitter() 75 filter = (struct bpf_jit_filter *)malloc(sizeof(*filter)); in bpf_jitter() 77 if (filter == NULL) in bpf_jitter() 80 /* No filter means accept all. */ in bpf_jitter() 82 filter->func = bpf_jit_accept_all; in bpf_jitter() 83 return (filter); in bpf_jitter() 87 if ((filter->func = bpf_jit_compile(fp, nins, &filter->size)) == NULL) { in bpf_jitter() 89 free(filter, M_BPFJIT); in bpf_jitter() [all …]
|
/freebsd/share/examples/ppp/ |
H A D | ppp.conf.sample | 266 set filter alive 0 deny udp src eq 520 # routed 267 set filter alive 1 deny udp dst eq 520 # routed 268 set filter alive 2 deny udp src eq 513 # rwhod 269 set filter alive 3 deny udp src eq 525 # timed 270 set filter alive 4 deny udp src eq 137 # NetBIOS name service 271 set filter alive 5 deny udp src eq 138 # NetBIOS datagram service 272 set filter alive 6 deny tcp src eq 139 # NetBIOS session service 273 set filter alive 7 deny udp dst eq 137 # NetBIOS name service 274 set filter alive 8 deny udp dst eq 138 # NetBIOS datagram service 275 set filter alive 9 deny tcp dst eq 139 # NetBIOS session service [all …]
|
/freebsd/contrib/processor-trace/libipt/src/ |
H A D | pt_config.c | 137 /* The maximum number of filter addresses that fit into the configuration. */ 145 uint32_t pt_filter_addr_cfg(const struct pt_conf_addr_filter *filter, uint8_t n) in pt_filter_addr_cfg() argument 147 if (!filter) in pt_filter_addr_cfg() 153 return (filter->config.addr_cfg >> (4 * n)) & 0xf; in pt_filter_addr_cfg() 156 uint64_t pt_filter_addr_a(const struct pt_conf_addr_filter *filter, uint8_t n) in pt_filter_addr_a() argument 160 if (!filter) in pt_filter_addr_a() 166 addr = &filter->addr0_a; in pt_filter_addr_a() 170 uint64_t pt_filter_addr_b(const struct pt_conf_addr_filter *filter, uint8_t n) in pt_filter_addr_b() argument 174 if (!filter) in pt_filter_addr_b() 180 addr = &filter->addr0_a; in pt_filter_addr_b() [all …]
|
/freebsd/lib/libsys/ |
H A D | kqueue.2 | 51 .Fn EV_SET "kev" ident filter flags fflags data udata 59 A kevent is identified by the (ident, filter) pair; there may only 62 The filter is executed upon the initial registration of a kevent 64 executed whenever an event is passed to the filter for evaluation. 65 If the filter determines that the condition should be reported, 68 The filter is also run when the user attempts to retrieve the kevent 70 If the filter indicates that the condition that triggered 74 Multiple events which trigger the filter do not result in multiple 75 kevents being placed on the kqueue; instead, the filter will aggregate 194 short filter; /* filter for event */ [all …]
|
/freebsd/sys/xen/ |
H A D | xen_intr.h | 50 * \param filter An interrupt filter handler. Specify NULL 54 * are performed by filter. 55 * \param arg Argument to present to both filter and handler. 63 driver_filter_t filter, driver_intr_t handler, void *arg, 74 * \param filter An interrupt filter handler. Specify NULL 78 * are performed by filter. 79 * \param arg Argument to present to both filter and handler. 87 u_int remote_domain, driver_filter_t filter, driver_intr_t handler, 98 * \param filter An interrupt filter handler. Specify NULL 102 * are performed by filter. [all …]
|
/freebsd/contrib/sendmail/libmilter/ |
H A D | README | 3 The sendmail Mail Filter API (Milter) is designed to allow third-party 5 filter meta-information and content. 7 This README file describes the steps needed to compile and run a filter, 8 through reference to a sample filter which is attached at the end of this 43 | BUILDING A FILTER | 66 process limits in your filter. For example, you might look at using 67 setrlimit() to increase the number of open file descriptors if your filter 94 R Reject connection if filter unavailable 95 T Temporary fail connection if filter unavailable 96 4 Shut down connection if filter unavailable [all …]
|
/freebsd/sys/contrib/libsodium/regen-msvc/ |
H A D | libsodium.vcxproj.filters.tpl | 5 <Filter>packaging</Filter> 8 <Filter>packaging</Filter> 11 <Filter>packaging</Filter> 14 <Filter>packaging</Filter> 17 <Filter>packaging</Filter> 20 <Filter>packaging</Filter>
|
/freebsd/contrib/sendmail/libmilter/docs/ |
H A D | smfi_register.html | 18 Register a set of filter callbacks. 30 <TD>smfi_register creates a filter using the information given in the 34 i.e., only one filter can be successfully registered. 48 A filter descriptor of type smfiDesc describing the filter's functions. 53 char *xxfi_name; /* filter name */ 57 /* connection info filter */ 59 /* SMTP HELO command filter */ 61 /* envelope sender filter */ 63 /* envelope recipient filter */ 65 /* header filter */ [all …]
|
H A D | design.html | 17 <LI>MTA - Filter Communication 36 domain knowledge on the part of the filter provider is assumed. 50 Filter processes should not need to run as root 53 and limit the impact of security flaws in the filter program. 61 either behaving as if the filter were not present 68 The API should make implementation of a new filter 89 the MTA to filter messages first through a server based anti-virus 95 Thus the site administrator, not the filter writer, controls the 99 actions to be taken if a filter becomes unavailable, are selectable 103 <H2>MTA - Filter communication</H2> [all …]
|
/freebsd/lib/libc/xdr/ |
H A D | xdr.3 | 76 A filter primitive that translates between variable-length 96 filter that translates between 108 A filter primitive that translates between booleans (C 112 filter produces values of either one or zero. 122 A filter primitive that translates between counted byte 142 A filter primitive that translates between C characters 180 A filter primitive that translates between C 192 A filter primitive that translates between C 204 A filter primitive that translates between C 258 A filter primitive that translates between ANSI C [all …]
|
/freebsd/contrib/kyua/engine/ |
H A D | filters.cpp | 46 /// Constructs a filter. 59 /// Parses a user-provided test filter. 61 /// \param str The user-provided string representing a filter for tests. Must 64 /// \return The parsed filter. 66 /// \throw std::runtime_error If the provided filter is invalid. 71 throw std::runtime_error("Test filter cannot be empty"); in parse() 88 LD(F("Parsed user filter '%s': test program '%s', no test case") % in parse() 93 LD(F("Parsed user filter '%s': test program '%s', test case '%s'") % in parse() 98 throw std::runtime_error(F("Invalid path in filter '%s': %s") % str % in parse() 104 /// Formats a filter for user presentation. [all …]
|
/freebsd/usr.sbin/ppp/ |
H A D | filter.c | 62 #include "filter.h" 194 * Filter currently is a catch-all. Requests are either permitted or in ParseGeneric() 252 log_Printf(LogWARN, "Parse: invalid filter number.\n"); in filter_Parse() 260 log_Printf(LogWARN, "Parse: filter cleared.\n"); in filter_Parse() 411 struct filter *filter; in filter_Set() local 417 filter = &arg->bundle->filter.in; in filter_Set() 419 filter = &arg->bundle->filter.out; in filter_Set() 421 filter = &arg->bundle->filter.dial; in filter_Set() 423 filter = &arg->bundle->filter.alive; in filter_Set() 425 log_Printf(LogWARN, "filter_Set: %s: Invalid filter name.\n", in filter_Set() [all …]
|
/freebsd/contrib/xz/src/liblzma/api/lzma/ |
H A D | bcj.h | 18 /* Filter IDs for lzma_filter.id */ 21 * \brief Filter for x86 binaries 26 * \brief Filter for Big endian PowerPC binaries 31 * \brief Filter for IA-64 (Itanium) binaries 36 * \brief Filter for ARM binaries 41 * \brief Filter for ARM-Thumb binaries 46 * \brief Filter for SPARC binaries 51 * \brief Filter for ARM64 binaries 56 * \brief Filter for RISC-V binaries 78 * the filter, except x86 which cannot be made to support [all …]
|
/freebsd/sbin/ipf/ipf/ |
H A D | ipfilter.4 | 2 .TH IP\ FILTER 4 6 IP Filter is a TCP/IP packet filter, suitable for use in a firewall 12 The IP packet filter can: 18 filter by IP networks or hosts 20 selectively filter any IP protocol 22 selectively filter fragmented IP packets 24 selectively filter packets with IP options 42 UDP and ICMP. The IP Packet filter allows filtering of: 58 To keep track of the performance of the IP packet filter, a logging device 73 IP Filter keeps its own set of statistics on: [all …]
|
/freebsd/sys/contrib/device-tree/scripts/ |
H A D | git-filter-branch | 11 # The following functions will also be available in the commit filter: 31 # if you run 'skip_commit "$@"' in a commit filter, it will print 45 # if you run 'git_commit_non_empty_tree "$@"' in a commit filter, 89 WARNING: git-filter-branch has a glut of gotchas generating mangled history 91 alternative filtering tool such as 'git filter-repo' 92 (https://github.com/newren/git-filter-repo/) instead. See the 93 filter-branch manual page for more details; to squelch this warning, 97 printf "Proceeding with filter-branch...\n\n" 100 USAGE="[--setup <command>] [--subdirectory-filter <directory>] [--env-filter <command>] 101 [--tree-filter <command>] [--index-filter <command>] [all …]
|