Home
last modified time | relevance | path

Searched +full:a +full:- +full:9 (Results 1 – 25 of 1147) sorted by relevance

12345678910>>...46

/freebsd/share/man/man9/
H A Dintro.92 .\" SPDX-License-Identifier: BSD-2-Clause
23 In some cases, it is also a source of truth for the implementation details
24 and/or design decisions behind a particular subsystem or piece of code.
28 It is written assuming a certain familiarity with common programming or
29 OS-level concepts and practices.
31 information that readers approaching a particular subsystem or interface for
35 source code itself, is forever a work-in-progress.
38 This documentation is a supplement to the source code, and can not always be
41 At its best, section 9 documentation will provide a description of a particular
47 describe types, global variables, macros, or high-level concepts.
[all …]
H A Dvnode.918 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 .Nd internal representation of a file or directory
39 A vnode is described by
41 There is a
43 each mounted-on file, text file, and the root.
53 .Xr vref 9 ,
54 .Xr vrele 9
56 .Xr vput 9 .
61 .Xr vhold 9
63 .Xr vdrop 9 .
[all …]
H A Dlocking.91 .\" Copyright (c) 2007 Julian Elischer (julian - freebsd org )
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
40 A thread acquires (locks) a mutex before accessing data shared with other
44 if the owner of a contended mutex is currently running on another CPU,
45 then a thread attempting to acquire the mutex will spin rather than yielding
50 .Xr mutex 9
53 Spin mutexes are a variation of basic mutexes; the main difference between
56 To avoid deadlock, a thread that holds a spin mutex must never yield its CPU.
63 .Xr bus_setup_intr 9
69 For example, a mutex may be embedded inside the structure it protects.
[all …]
H A Dbus_attach_children.92 .\" SPDX-License-Identifier: BSD-2-Clause
14 .Nd manage child devices of a bus device
33 walks the kernel environment to identify any device hints that describe a
38 .Xr BUS_HINTED_CHILD 9
40 This function is typically called from a bus driver's
41 .Xr DEVICE_ATTACH 9
45 a mechanism for enumerating devices.
51 .Xr DEVICE_IDENTIFY 9
55 This function is typically called from a bus driver's
56 .Xr DEVICE_ATTACH 9
[all …]
H A DVOP_SETLABEL.91 .\"-
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 .Nd persistently store an updated MAC label on a vnode
40 .Xr mac 9
43 .Ss Single-Label vs. Multi-Label Filesystems
44 Filesystems that do not implement per-file labels -- known as single-label
45 filesystems -- can simply leave the
46 .Xr vnode 9
53 Filesystems that do implement per-vnode label storage -- known as multi-label
54 filesystems -- will set the
[all …]
H A Dvm_map.916 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 is a generic representation of an address space.
45 This address space may belong to a user process or the kernel.
48 .Xr vm_map_submap 9
50 .Bd -literal -offset indent
70 .Bl -tag -width ".Va needs_wakeup"
72 Head node of a circular, doubly linked list of
75 Each object defines a particular region within this map's address space.
79 A mutex which is used if the map is a system map.
81 A count of the members in use within the circular map entry list.
[all …]
H A Ddevice.91 .\" -*- nroff -*-
20 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 .Nd an abstract representation of a device
38 The device object represents a piece of hardware attached to the
45 Normally devices representing top-level buses in
50 The devices in a system form a tree.
53 have a parent (see
54 .Xr device_get_parent 9 ) .
56 .Xr device_add_child 9 ,
57 .Xr device_add_child_ordered 9 ,
[all …]
H A Dcounter.91 .\"-
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 .Nd "SMP-friendly kernel counter implementation"
69 is a generic facility to create counters
72 A
80 .Xr atomic 9
82 can be used in any non-interrupt context.
90 is considered suitable for accounting in the performance-critical
92 .Bl -tag -width indent
94 Allocate a new 64-bit unsigned counter.
[all …]
H A Dtime.91 .\" $NetBSD: time.9,v 1.1 1995/11/25 21:24:53 perry Exp $
23 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
50 This time is initially set when the system boots, either from the RTC, or from a
54 or a new time is read from the RTC as the system resumes,
56 is recomputed as new_time - uptime.
73 .Xr bintime 9 ,
74 .Xr getbintime 9 ,
75 .Xr microtime 9 ,
76 .Xr getmicrotime 9 ,
77 .Xr nanotime 9 ,
[all …]
/freebsd/lib/libsysdecode/
H A Dmktables16 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 # Originally this script was 'mksubr' for kdump which generated a complete
33 set -e
37 if [ -z "$1" ]
39 echo "usage: sh $0 include-dir [output-file]"
43 if [ -n "$2" ]; then
45 output_tmp=$(mktemp -u)
51 # Generate a table C #definitions. The including file can define the
63 if [ -z "$excl" ]; then
66 filter="egrep -v"
[all …]
/freebsd/bin/sh/tests/builtins/
H A Dcase2.01 # Generated by ./test-fnmatch -s 1, do not edit.
7 testmatch 'a' 'a'
8 testnomatch 'a' 'b'
9 testnomatch 'a' 'A'
10 testmatch '*' 'a'
12 testmatch '*a' 'a'
13 testnomatch '*a' 'b'
14 testnomatch '*a*' 'b'
15 testmatch '*a*b*' 'ab'
16 testmatch '*a*b*' 'qaqbq'
[all …]
H A Dcase3.01 # Generated by ./test-fnmatch -s 2, do not edit.
4 # We do not treat a backslash specially in this case,
9 netestmatch 'a' 'a'
10 netestnomatch 'a' 'b'
11 netestnomatch 'a' 'A'
12 netestmatch '*' 'a'
14 netestmatch '*a' 'a'
15 netestnomatch '*a' 'b'
16 netestnomatch '*a*' 'b'
17 netestmatch '*a*b*' 'ab'
[all …]
/freebsd/tools/regression/zfs/zpool/attach/
H A Dmirror.t17 echo " scrub: resilver completed after [0-9]+h[0-9]+m with 0 errors on .*"
22 echo " ${disk0} ONLINE 0 0 0 [0-9.]+[A-Z] resilvered"
23 echo " ${disk1} ONLINE 0 0 0 [0-9.]+[A-Z] resilvered"
32 echo " scrub: resilver completed after [0-9]+h[0-9]+m with 0 errors on .*"
37 echo " ${disk0} ONLINE 0 0 0 [0-9.]+[A-Z] resilvered"
38 echo " ${disk1} ONLINE 0 0 0 [0-9.]+[A-Z] resilvered"
39 echo " ${disk2} ONLINE 0 0 0 [0-9.]+[A-Z] resilvered"
48 echo " scrub: resilver completed after [0-9]+h[0-9]+m with 0 errors on .*"
53 echo " ${disk0} ONLINE 0 0 0 [0-9.]+[A-Z] resilvered"
54 echo " ${disk1} ONLINE 0 0 0 [0-9.]+[A-Z] resilvered"
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__charconv/
H A Dtables.h1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
40 …'1', '0', '2', '0', '3', '0', '4', '0', '5', '0', '6', '0', '7', '0', '8', '0', '9', '0', 'a', '0',
42 …'1', '7', '1', '8', '1', '9', '1', 'a', '1', 'b', '1', 'c', '1', 'd', '1', 'e', '1', 'f', '2', '0'…
43 …'2', '2', '3', '2', '4', '2', '5', '2', '6', '2', '7', '2', '8', '2', '9', '2', 'a', '2', 'b', '2'…
45 …'9', '3', 'a', '3', 'b', '3', 'c', '3', 'd', '3', 'e', '3', 'f', '4', '0', '4', '1', '4', '2', '4'…
46 …'4', '5', '4', '6', '4', '7', '4', '8', '4', '9', '4', 'a', '4', 'b', '4', 'c', '4', 'd', '4', 'e'…
47 …'5', '2', '5', '3', '5', '4', '5', '5', '5', '6', '5', '7', '5', '8', '5', '9', '5', 'a', '5', 'b',
[all …]
/freebsd/lib/libc/tests/gen/
H A Dfnmatch_testcases.h1 /*-
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
36 { "a", "a", 0, 0 },
37 { "a", "b", 0, FNM_NOMATCH },
38 { "a", "A", 0, FNM_NOMATCH },
39 { "*", "a", 0, 0 },
41 { "*a", "a", 0, 0 },
42 { "*a", "b", 0, FNM_NOMATCH },
43 { "*a*", "b", 0, FNM_NOMATCH },
44 { "*a*b*", "ab", 0, 0 },
[all …]
/freebsd/share/man/man4/
H A Ddtrace_lockstat.41 .\" Copyright (c) 2017 George V. Neville-Neil <gnn@FreeBSD.org>
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 .Nd a DTrace provider for tracing kernel locking events
32 .Fn lockstat:::adaptive-acquire "struct mtx *"
33 .Fn lockstat:::adaptive-release "struct mtx *"
34 .Fn lockstat:::adaptive-spin "struct mtx *" "uint64_t"
35 .Fn lockstat:::adaptive-block "struct mtx *" "uint64_t"
36 .Fn lockstat:::spin-acquire "struct mtx *"
37 .Fn lockstat:::spin-release "struct mtx *"
38 .Fn lockstat:::spin-spin "struct mtx *" "uint64_t"
[all …]
/freebsd/tools/regression/zfs/zpool/replace/
H A Draidz2.t24 echo " functioning in a degraded state."
26 echo " see: http://www.sun.com/msg/ZFS-8000-4J"
44 echo " scrub: (scrub|resilver) completed after [0-9]+h[0-9]+m with 0 errors on .*"
49 echo " ${disk4} ONLINE 0 0 0( [0-9.]+[A-Z] resilvered)?"
50 echo " ${disk1} ONLINE 0 0 0( [0-9.]+[A-Z] resilvered)?"
51 echo " ${disk2} ONLINE 0 0 0( [0-9.]+[A-Z] resilvered)?"
52 echo " ${disk3} ONLINE 0 0 0( [0-9.]+[A-Z] resilvered)?"
57 expect_fl ${ZPOOL} status -x ${name0}
65 echo " scrub: (scrub|resilver) completed after [0-9]+h[0-9]+m with 0 errors on .*"
70 echo " ${disk0} ONLINE 0 0 0( [0-9.]+[A-Z] resilvered)?"
[all …]
/freebsd/contrib/file/tests/
H A Dmatilde.arm.testfile2 <[d��y�����'��P�[<k��0^���<j~yJ/�!ݘG&�� ���e�4ta��+a�<�p�������(����n����{i�/�8A�<� ٫7…
3A{1e�d!�Tkr(��n���u�RP<Rby��z��z�;+~��*�s�'�7q#�ڰ<p�l���-*�Bm� h2U�v��ښ�m�< pq��r�y�+�…
4 R��0-as�Aꏾ�<�H���Ҵ�_d)Q����A����Kp���@< <J?�9a�V�9u8�9��Fp�ך�"��P<
5 �Hpc��A��Z�%�;�.s
6 �%Vйa����@<x@m1�A�"J�)��C�.t4�c��d0<zg���Y*˴fRMg�J5o��;�κ�h�<< Pg����*�0�*=�K|�K~��%…
7 (Q�)�y�E4�@<<�f�a��7_�����xR���?hl <{�Hf��+G!�x̳X���Am���<x �fT�ۃ��VtBU9������c�en…
9 !�:���=K����[��<Ɖ�lH��!L��-��I��w�9:y��<�U'�ԫ�Lc�\vyY>�Ԫ�ϧ�4p<&@i�~#�������)J$��
10 …�[��ơ���<&@�����(�\�W�!"-@��C]�4�<&F����*�2;[��v�w�>�=�����<!x @;����e�R!���F�iW�…
/freebsd/secure/caroot/trusted/
H A DSecureSign_Root_CA14.pem4 ## This is a single X.509 certificate for a public Certificate
8 ## It contains a certificate trusted for server authentication.
18 64:db:5a:0c:20:4e:e8:d7:29:77:c8:50:27:a2:5a:27:dd:2d:f2:cb
27 Public-Key: (4096 bit)
29 00:c5:d2:7a:a1:d6:8a:bf:16:31:d0:98:d1:3a:94:
30 fc:5a:b8:6e:22:c1:62:f7:a7:0a:27:ef:50:f6:2e:
31 b1:9e:68:12:f0:6c:24:63:39:f1:f0:df:10:c6:de:
32 b7:52:20:d5:52:5b:42:99:9e:f3:a0:be:52:1f:5f:
34 ba:dc:9d:e0:be:cb:df:f7:38:f2:47:f5:a6:9a:92:
35 95:2a:62:59:50:0b:a2:b1:35:e7:65:b2:61:b2:ea:
[all …]
H A DGTS_Root_R2.pem4 ## This is a single X.509 certificate for a public Certificate
8 ## It contains a certificate trusted for server authentication.
18 02:03:e5:ae:c5:8d:04:25:1a:ab:11:25:aa
27 Public-Key: (4096 bit)
29 00:ce:de:fd:a6:fb:ec:ec:14:34:3c:07:06:5a:6c:
30 59:f7:19:35:dd:f7:c1:9d:55:aa:d3:cd:3b:a4:93:
31 72:ef:0a:fa:6d:9d:f6:f0:85:80:5b:a1:48:52:9f:
33 6c:99:1f:c4:22:1d:9f:fe:72:77:e0:2c:5b:af:e4:
34 04:bf:4f:72:a0:1a:34:98:e8:39:68:ec:95:25:7b:
36 73:bc:ff:83:e2:cb:7d:c1:d2:ce:4a:b3:8d:05:9e:
[all …]
H A DAmazon_Root_CA_2.pem4 ## This is a single X.509 certificate for a public Certificate
8 ## It contains a certificate trusted for server authentication.
18 06:6c:9f:d2:96:35:86:9f:0a:0f:e5:86:78:f8:5b:26:bb:8a:37
27 Public-Key: (4096 bit)
29 00:ad:96:9f:2d:9c:4a:4c:4a:81:79:51:99:ec:8a:
31 10:6a:c7:26:0c:35:d8:c0:6f:20:84:e9:94:b1:9b:
32 85:03:c3:5b:db:4a:e8:c8:f8:90:76:d9:5b:4f:e3:
33 4c:e8:06:36:4d:cc:9a:ac:3d:0c:90:2b:92:d4:06:
34 19:60:ac:37:44:79:85:81:82:ad:5a:37:e0:0d:cc:
35 9d:a6:4c:52:76:ea:43:9d:b7:04:d1:50:f6:55:e0:
[all …]
/freebsd/crypto/krb5/src/lib/crypto/builtin/aes/
H A Dkresults.expected3 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
7 69 C4 E0 D8 6A 7B 04 30 D8 CD B7 80 70 B4 C5 5A
12 46 64 31 29 64 86 ED 9C D7 1F C2 07 25 48 20 A2
13 test 0 - 32 bytes
15 C4 A8 5A EB 0B 20 41 49 4F 8B F1 F8 CD 30 F1 13
18 1B 39 DA 37 40 D3 DF FE AC 89 D6 BB 4C 29 F1 0A
19 E1 43 64 CB 16 D3 FF CF E8 FA 6A 2C EC A2 69 34
21 test 1 - 32 bytes
23 22 3C F8 A8 29 95 80 49 57 87 6E 9F A7 11 63 50
24 6B 4E 5B 8C 8F A4 DB 1B 95 D3 E8 C5 C5 FB 5A 00
[all …]
/freebsd/secure/caroot/untrusted/
H A DHellenic_Academic_and_Research_Institutions_RootCA_2011.pem4 ## This is a single X.509 certificate for a public Certificate
8 ## It contains a certificate trusted for server authentication.
26 Public-Key: (2048 bit)
29 f8:2c:2a:54:4e:cd:b9:84:61:94:58:4f:8f:3d:8b:
30 e4:43:f3:75:89:8d:51:e4:c3:37:d2:8a:88:4d:79:
31 1e:b7:12:dd:43:78:4a:8a:92:e6:d7:48:d5:0f:a4:
32 3a:29:44:35:b8:07:f6:68:1d:55:cd:38:51:f0:8c:
33 24:31:85:af:83:c9:7d:e9:77:af:ed:1a:7b:9d:17:
34 f9:b3:9d:38:50:0f:a6:5a:79:91:80:af:37:ae:a6:
35 d3:31:fb:b5:26:09:9d:3c:5a:ef:51:c5:2b:df:96:
[all …]
H A DTrustCor_RootCert_CA-2.pem2 ## TrustCor RootCert CA-2
4 ## This is a single X.509 certificate for a public Certificate
8 ## It contains a certificate trusted for server authentication.
19 …, O = TrustCor Systems S. de R.L., OU = TrustCor Certificate Authority, CN = TrustCor RootCert CA-2
23 …, O = TrustCor Systems S. de R.L., OU = TrustCor Certificate Authority, CN = TrustCor RootCert CA-2
26 Public-Key: (4096 bit)
28 00:a7:20:6e:c2:2a:a2:62:24:95:90:76:c8:38:7e:
29 80:d2:ab:c1:9b:65:05:94:f4:c1:0a:10:d5:02:ac:
30 ed:9f:93:c7:87:c8:b0:27:2b:42:0c:3d:0a:3e:41:
31 5a:9e:75:dd:8d:ca:e0:9b:ec:68:32:a4:69:92:68:
[all …]
/freebsd/contrib/kyua/integration/
H A Dutils.sh20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 # Subcommand to strip out the durations and timestamps in a report.
35 # YYYY-MM-DDTHH:MM:SS.ssssssZ depending on their original format.
39 # atf_check ... -x kyua report "| ${utils_strip_times}"
41 # Use the utils_install_times_wrapper function to create a 'kyua' wrapper
44 utils_strip_times='sed -E \
45 -e "s,( |\[|\")[0-9][0-9]*\.[0-9][0-9][0-9](s]|s|\"),\1S.UUU\2,g" \
46 -e "s,[0-9]{8}-[0-9]{6}-[0-9]{6},YYYYMMDD-HHMMSS-ssssss,g" \
47-e "s,[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{6}Z,YYYY-MM-DDTHH:MM:SS.ssssssZ…
51 # Same as utils_strip_times but avoids stripping timestamp-based report IDs.
[all …]

12345678910>>...46