/freebsd/lib/libc/gen/ |
H A D | scandir.3 | 24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 46 .Fa "int \*(lp*select\*(rp\*(lpconst struct dirent *\*(rp" 54 .Fa "int \*(lp*select\*(rp\*(lpconst struct dirent *\*(rp" 61 .Fa "int \*(lp^select\*(rp\*(lpconst struct dirent *\*(rp" 83 .Fa select 86 to select which entries are to be included in the array. 87 The select routine is passed a 88 pointer to a directory entry and should return a non-zero 91 .Fa select 155 function behaves in the same way as [all …]
|
H A D | scandir.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * Scan the directory dirname calling select to make a list of selected 36 * struct dirent (through namelist). Returns -1 if there were any errors. 45 #include "un-namespace.h" 49 #define SELECT(x) CALL_BLOCK(select, x) macro 54 #define SELECT(x) select(x) macro 67 scandir_b_dirp(DIR *dirp, struct dirent ***namelist, select_block select, in scandir_b_dirp() argument 71 int (*select)(const struct dirent *), int (*dcomp)(const struct dirent **, in scandir_b_dirp() [all …]
|
/freebsd/contrib/openbsm/bin/auditreduce/ |
H A D | auditreduce.1 | 25 .\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 33 .Nd "select records from audit trail files" 65 utility to print the selected audit records in human-readable form. 68 .Bl -tag -width indent 70 Select all records. 72 Select records that occurred after or on the given datetime. 74 Select records that occurred before the given datetime. 76 Select records matching the given audit classes specified as a comma 82 Select records that occurred on a given date. 88 Select records with the given effective user ID or name. [all …]
|
/freebsd/lib/libsys/ |
H A D | select.2 | 24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 32 .Nm select 39 .Fn select "int nfds" "fd_set *readfds" "fd_set *writefds" "fd_set *exceptfds" "struct timeval *tim… 46 .Fn select 56 The only exceptional condition detectable is out-of-band 62 .Fa nfds Ns No -1 65 .Fn select 70 .Fn select 91 is non-zero if 111 is a null pointer, the select blocks indefinitely. [all …]
|
H A D | pselect.2 | 25 .\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 52 .St -p1003.1g-2000 54 .Xr select 2 . 60 .Fn select . 70 .Fn select ; 72 .Fn select , 87 .Fn select 91 .Xr select 2 100 .Fn select . 105 .Xr select 2 [all …]
|
/freebsd/share/doc/psd/05.sysman/ |
H A D | 1.5.t | 24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 96 standard way to do 99 Synchronous multiplexing is performed by using the \fIselect\fP call 107 nds = select(nd, in, out, except, tvp); 117 The \fIselect\fP call examines the descriptors 120 the specified bit masks by the subsets that select true for input, 140 or other device-specific events have occurred. 145 If \fItvp\fP is given as 0, the \fIselect\fP waits indefinitely. 161 non-blocking I/O mode and/or enable signaling when I/O is 166 Operations on non-blocking descriptors will [all …]
|
/freebsd/contrib/kyua/store/ |
H A D | migrate_v2_v3.sql | 1 -- Copyright 2014 The Kyua Authors. 2 -- All rights reserved. 3 -- 4 -- Redistribution and use in source and binary forms, with or without 5 -- modification, are permitted provided that the following conditions are 6 -- met: 7 -- 8 -- * Redistributions of source code must retain the above copyright 9 -- notice, this list of conditions and the following disclaimer. 10 -- * Redistributions in binary form must reproduce the above copyright [all …]
|
H A D | migrate_v1_v2.sql | 1 -- Copyright 2013 The Kyua Authors. 2 -- All rights reserved. 3 -- 4 -- Redistribution and use in source and binary forms, with or without 5 -- modification, are permitted provided that the following conditions are 6 -- met: 7 -- 8 -- * Redistributions of source code must retain the above copyright 9 -- notice, this list of conditions and the following disclaimer. 10 -- * Redistributions in binary form must reproduce the above copyright [all …]
|
/freebsd/usr.bin/logins/ |
H A D | logins.1 | 1 .\"- 2 .\" Copyright (c) 2004 Dag-Erling Smørgrav 24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 45 .Bl -tag -width ".Fl g Ar groups" 50 Select accounts with duplicate UIDs. 52 Select accounts that are members of the specified groups. 56 Select accounts matching the specified login names. 62 colon-separated fields. 64 Select accounts with no password. 66 Select system accounts. [all …]
|
/freebsd/sys/powerpc/powermac/ |
H A D | dbdmavar.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 46 uint32_t address; /* 32-bit system physical address */ 74 0x010 Interrupt Select 4 75 0x014 Branch Select 4 76 0x018 Wait Select 4 92 /* Status bits 0-7 are device dependent status bits */ 95 The Interrupt/Branch/Wait Select triggers the corresponding condition bits 96 in the event that (select.mask & device dependent status) == select.value
|
/freebsd/tools/test/stress2/misc/ |
H A D | select.sh | 24 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 # The combination of ualarm() firing before and after the select(2) timeout 30 # triggers select() to return EINTR a number of times. 43 sed '1,/^EOF/d' < $odir/$0 > $dir/select.c 44 mycc -o select -Wall -Wextra -O0 -g select.c -lpthread || exit 1 45 rm -f select.c 48 /tmp/select 51 rm -f /tmp/select 76 #define PARALLEL 16 /* Fails seen with 1 - 16 */ 106 r = select(1, NULL, NULL, NULL, &tv); [all …]
|
/freebsd/tests/sys/kern/pipe/ |
H A D | pipe_reverse2_test.c | 1 /*- 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 #include <sys/select.h> 43 if (pipe(pip) == -1) in main() 48 n = select(pip[1] + 1, NULL, &set, NULL, &(struct timeval){ 0, 0 }); in main() 50 errx(1, "FAIL: select initial reverse direction"); in main() 58 n = select(pip[1] + 1, NULL, &set, NULL, &(struct timeval){ 0, 0 }); in main() 60 errx(1, "FAIL: select reverse direction after write"); in main()
|
/freebsd/contrib/kyua/integration/ |
H A D | cmd_db_exec_test.sh | 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 32 # Subsequent invocations of db-exec should just pick this new file up. 37 atf_check -s exit:0 -o ignore -e empty kyua test 45 atf_check -s exit:0 -o save:metadata.csv -e empty \ 46 kyua db-exec "SELECT * FROM metadata" 47 atf_check -s exit:0 -o ignore -e empty \ 56 atf_check -s exit:0 -o save:metadata.csv -e empty \ 57 kyua db-exec SELECT "*" FROM metadata 58 atf_check -s exit:0 -o ignore -e empty \ 65 atf_check -s exit:3 -o empty -e match:"Not enough arguments" kyua db-exec [all …]
|
/freebsd/usr.bin/limits/ |
H A D | limits.1 | 51 .Bl -tag -width indent 115 .Dl "eval `limits -e -C daemon`" 125 .Bl -tag -width ".Fl C Ar class" 142 Select or set limits for the process identified by the 145 Select display or setting of 155 Select display or setting of 165 Select display or setting of both 178 Select 188 Select or set the 192 Select or set (if [all …]
|
/freebsd/usr.sbin/bsdconfig/startup/include/ |
H A D | messages.subr | 1 # Copyright (c) 2012-2013 Devin Teske 21 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 hline_alnum_punc_tab_enter="Use alpha-numeric, punctuation, TAB or ENTER" 37 msg_all_desc="Select all directives" 38 msg_all_help="Select all displayed rc.conf(5) configuration directives" 40 msg_apm_desc="Auto-power management services (typically laptops)" 51 msg_delete_help="Select one or more directives from a list to delete" 69 …artup configuration. Use [SPACE] or [ENTER] to select items, and\n[TAB] to move to the buttons. … 82 msg_none_desc="Un-Select all directives" 83 msg_none_help="Un-Select all rc.conf(5) configuration directives" [all …]
|
/freebsd/tools/regression/poll/ |
H A D | pipeselect.c | 3 #include <sys/select.h> 38 printf("ok %-2d ", num); in report() 40 printf("not ok %-2d", num); in report() 72 errx(1, "fd = %d too large for select()", fd); in child() 76 if (select(fd + 1, &rfds, NULL, NULL, &tv) < 0) in child() 77 err(1, "select"); in child() 80 * writer) is reported quite differently for select() than in child() 81 * for poll(). select() must see a ready-to-read descriptor in child() 107 if (select(fd + 1, &rfds, NULL, NULL, &tv) < 0) in child() 108 err(1, "select"); in child() [all …]
|
/freebsd/contrib/netbsd-tests/lib/librumphijack/ |
H A D | h_client.c | 26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 32 #include <sys/select.h> 59 if (pipe(pipefd) == -1) in main() 64 rv = select(pipefd[0]+1, &rfds, NULL, NULL, &tv); in main() 65 if (rv == -1) in main() 66 err(EXIT_FAILURE, "select"); in main() 68 errx(EXIT_FAILURE, "select succesful"); in main() 83 rv = select(100, &fds, &fds, &fds, &tv); in main() 84 if (rv == -1) in main() 85 err(EXIT_FAILURE, "select"); in main() [all …]
|
/freebsd/usr.sbin/bsdconfig/timezone/include/ |
H A D | messages.subr | 21 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 continent_america_title="America -- North and South" 67 msg_select_country="Select a country" 68 msg_select_island_or_group="Select an island or group" 69 msg_select_local_or_utc="Select local or UTC (Greenwhich Mean Time) clock" 70 msg_select_region="Select a region" 71 msg_select_zone="Select a zone which observes the same time as your locality."
|
/freebsd/lib/libdevstat/ |
H A D | devstat.3 | 24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 152 and returns \-1. 164 .Bd -literal -offset indent 191 .Bd -literal -offset indent 250 .Bl -tag -width indent 273 tracking code will select every device in the system, and sort them by 286 will automatically select up to 295 .Bl -tag -width ".Dv DS_SELECT_ADDONLY" 301 will select any unselected devices specified by name or matching pattern. 302 It will also select more devices, in devstat list order, until the number [all …]
|
/freebsd/sys/dev/qcom_tcsr/ |
H A D | qcom_tcsr.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 60 * The linux-msm branches that support IPQ4018 use "ipq,tcsr". 82 if (!ofw_bus_search_compatible(dev, compat_data)->ocd_data) in qcom_tcsr_probe() 96 sc->sc_dev = dev; in qcom_tcsr_attach() 101 sc->hw_version = in qcom_tcsr_attach() 102 ofw_bus_search_compatible(dev, compat_data)->ocd_data; in qcom_tcsr_attach() 104 mtx_init(&sc->sc_mtx, device_get_nameunit(dev), NULL, MTX_DEF); in qcom_tcsr_attach() 107 sc->sc_mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, in qcom_tcsr_attach() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | allwinner,sun4i-a10-mdio.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 4 $id: http://devicetree.org/schemas/net/allwinner,sun4i-a10-mdio.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Chen-Yu Tsai <wens@csie.org> 11 - Maxime Ripard <mripard@kernel.org> 14 - $ref: mdio.yaml# 16 # Select every compatible, including the deprecated ones. This way, we 18 # we will validate the node thanks to the select, but won't report it 20 select: [all …]
|
/freebsd/share/doc/psd/21.ipc/ |
H A D | 2.t | 24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 61 the UNIX domain, for on-system communication; 130 Sequenced-packet sockets allow the user to manipulate the 158 of 0), the system will select an appropriate protocol from those 180 create a datagram socket for on-machine use the call might 201 to a socket, processes have no way to reference it and, consequently, 315 binds a socket to a well-known address associated with the service 348 the system will automatically select and bind a name to 350 This is the usual way that local addresses are bound 427 it may supply a buffer for the client socket's name. The value-result [all …]
|
/freebsd/usr.sbin/bsdconfig/mouse/include/ |
H A D | messages.subr | 21 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 52 …our mouse and enable\nthe mouse daemon. If you don't want this feature, select 6 to disable\nthe … 69 msg_please_select_protocol_and_port_first="Please select a mouse protocol and a port first." 70 …="Please specify the mouse daemon flags. If you would like to\nemulate 3 buttons, use -3 here.\n " 72 msg_port_menu_text="The built-in pointing device of laptop/notebook computers is usually\na PS/2 st… 73 … standard. But, it won't hurt. Many 2-button serial mice\nare compatible with \"Microsoft\" or \… 76 msg_select_a_protocol_type_for_your_mouse="Select a protocol type for your mouse" 77 msg_select_mouse_port="Select mouse port" 78 msg_select_mouse_protocol_type="Select mouse protocol type" 79 msg_select_your_mouse_port_from_the_following_menu="Select your mouse port from the following menu"
|
/freebsd/contrib/googletest/ |
H A D | BUILD.bazel | 28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 68 "@bazel_tools//tools/cpp:compiler": "msvc-cl", 97 "googletest/src/gtest-all.cc", 99 "googlemock/src/gmock-all.cc", 107 copts = select({ 110 "//conditions:default": ["-pthread"], 112 defines = select({ 116 features = select({ 126 linkopts = select({ 127 ":qnx": ["-lregex"], [all …]
|
/freebsd/share/man/man9/ |
H A D | selrecord.9 | 23 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 34 .Nd "record and wakeup select requests" 50 .Xr select 2 , 86 .Xr select 2 118 .Xr select 2 120 .An -nosplit
|