/freebsd/share/man/man9/ |
H A D | intro.9 | 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 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 53 .Xr style 9 54 for a detailed set of rules and guidelines. 63 .It Xr counter 9 [all …]
|
H A D | vnode.9 | 18 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 27 .Dd October 9, 2024 32 .Nd internal representation of a file or directory 39 A vnode is described by 41 There is a 53 .Xr vref 9 , 54 .Xr vrele 9 56 .Xr vput 9 . 61 .Xr vhold 9 63 .Xr vdrop 9 . [all …]
|
H A D | locking.9 | 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. 70 Mutex pools provide a preallocated set of mutexes to avoid this [all …]
|
H A D | device.9 | 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 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 , 58 .Xr device_find_child 9 , 59 .Xr device_get_children 9 , [all …]
|
H A D | vm_map.9 | 16 .\" 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 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. 87 Indicates if a thread is waiting for an allocation within the map. 90 Set to TRUE to indicate that map is a system map; otherwise, it belongs [all …]
|
H A D | VOP_SETLABEL.9 | 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 46 .Xr vnode 9 58 The UFS filesystem uses a superblock flag to persisently configure whether a 59 specific filesystem implements a label for each 60 .Xr vnode 9 , 65 function can be used, and maps operations into a series of 66 .Xr VOP_OPENEXTATTR 9 , 67 .Xr VOP_WRITEEXTATTR 9 , [all …]
|
H A D | time.9 | 1 .\" $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, 73 .Xr bintime 9 , 74 .Xr getbintime 9 , 75 .Xr microtime 9 , 76 .Xr getmicrotime 9 , 77 .Xr nanotime 9 , 79 .Xr getnanotime 9 [all …]
|
H A D | counter.9 | 16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 63 is a generic facility to create counters 66 A 74 .Xr atomic 9 88 Allocate a new 64-bit unsigned counter. 92 .Xr malloc 9 116 .Xr critical 9 117 section, while on other is a nop. 128 Take a snapshot of counter 137 The function is a multiprocessor-friendly version of [all …]
|
H A D | bus_activate_resource.9 | 16 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 30 .Nd activate or deactivate a resource 47 These functions activate or deactivate a previously allocated resource. 53 the PCI bus driver enables memory decoding in a PCI device's command register 54 when activating a memory resource. 62 A pointer to the 65 .Xr bus_alloc_resource 9 . 68 Resources which can be mapped for CPU access by a 69 .Xr bus_space 9 70 tag and handle will create a mapping of the entire resource when activated. [all …]
|
/freebsd/bin/sh/tests/builtins/ |
H A D | case2.0 | 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' 17 testmatch '*a*bb*' 'qaqbqbbq' [all …]
|
H A D | case3.0 | 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' 18 netestmatch '*a*b*' 'qaqbq' [all …]
|
/freebsd/lib/libsysdecode/ |
H A D | mktables | 16 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 29 # Originally this script was 'mksubr' for kdump which generated a complete 51 # Generate a table C #definitions. The including file can define the 92 gen_table "accessmode" "[A-Z]_OK[[:space:]]+0?x?[0-9A-Fa-f]+" "sys/unistd.h" 93 gen_table "acltype" "ACL_TYPE_[A-Z4_]+[[:space:]]+0x[0-9]+" "sys/acl.h" 94 gen_table "atflags" "AT_[A-Z_]+[[:space:]]+0x[0-9]+" "sys/fcntl.h" 95 gen_table "capfcntl" "CAP_FCNTL_[A-Z]+[[:space:]]+\(1" "sys/capsicum.h" 96 gen_table "closerangeflags" "CLOSE_RANGE_[A-Z]+[[:space:]]+\([0-9]+<<[0-9]+\)" "sys/unistd.h" 97 gen_table "extattrns" "EXTATTR_NAMESPACE_[A-Z]+[[:space:]]+0x[0-9]+" "sys/extattr.h" 98 gen_table "fadvisebehav" "POSIX_FADV_[A-Z]+[[:space:]]+[0-9]+" "sys/fcntl.h" [all …]
|
/freebsd/tools/regression/zfs/zpool/attach/ |
H A D | mirror.t | 17 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 D | tables.h | 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', 49 …'7', '6', '8', '6', '9', '6', 'a', '6', 'b', '6', 'c', '6', 'd', '6', 'e', '6', 'f', '7', '0', '7'… 50 …'7', '3', '7', '4', '7', '5', '7', '6', '7', '7', '7', '8', '7', '9', '7', 'a', '7', 'b', '7', 'c'… 51 …'8', '0', '8', '1', '8', '2', '8', '3', '8', '4', '8', '5', '8', '6', '8', '7', '8', '8', '8', '9', 52 …'8', 'a', '8', 'b', '8', 'c', '8', 'd', '8', 'e', '8', 'f', '9', '0', '9', '1', '9', '2', '9', '3'… [all …]
|
/freebsd/lib/libc/tests/gen/ |
H A D | fnmatch_testcases.h | 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 }, 45 { "*a*b*", "qaqbq", 0, 0 }, [all …]
|
/freebsd/share/man/man4/ |
H A D | dtrace_lockstat.4 | 15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 30 .Nd a DTrace provider for tracing CPU scheduling events 69 .Xr lockmgr 9 , 70 .Xr mutex 9 , 71 .Xr rwlock 9 , 73 .Xr sx 9 85 as well as probes which fire when a thread contends with other threads 86 for ownership of a lock. 94 .Xr mutex 9 96 The only argument is a pointer to the lock structure which describes [all …]
|
/freebsd/tools/regression/zfs/zpool/replace/ |
H A D | raidz2.t | 24 echo " functioning in a degraded state." 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)?" 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)?" 71 echo " ${disk4} ONLINE 0 0 0( [0-9.]+[A-Z] resilvered)?" 72 echo " ${disk2} ONLINE 0 0 0( [0-9.]+[A-Z] resilvered)?" [all …]
|
/freebsd/contrib/file/tests/ |
H A D | matilde.arm.testfile | 2 <[d��y�����'�P�[<k�0^��<j~yJ/!ݘG&�����e�4ta��+a�<�p������(����n���{i�/�8A�<� ٫7… 3 …A{1e�d!�Tkr(��n���u�RP<Rby��z��z�;+~��*�s�'�7q#�ڰ<p�l���-*�Bm�h2U�v��ښ�m�< pq��ry�+�… 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 …&F����*�2;[��v�w�>�=�����<!x@;����e�R!���F�iW�M���0<{��~a�A�ʞ�L�����9�RxSA�Kp�<&…
|
/freebsd/secure/caroot/untrusted/ |
H A D | Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem | 4 ## This is a single X.509 certificate for a public Certificate 8 ## It contains a certificate trusted for server authentication. 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: 36 5d:eb:32:1e:02:da:70:49:ec:6e:0c:c8:9a:37:8d: [all …]
|
H A D | TrustCor_RootCert_CA-2.pem | 4 ## This is a single X.509 certificate for a public Certificate 8 ## It contains a certificate trusted for server authentication. 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: 32 8c:0b:81:0e:56:a0:3e:1a:dd:2c:25:14:82:2f:97: 33 d3:64:46:f4:54:a9:dc:3a:54:2d:31:2b:99:82:f2: 34 d9:2a:d7:ef:71:00:b8:31:a4:be:7a:24:07:c3:42: 35 20:f2:8a:d4:92:04:1b:65:56:4c:6c:d4:fb:b6:61: [all …]
|
H A D | Chambers_of_Commerce_Root_-_2008.pem | 4 ## This is a single X.509 certificate for a public Certificate 18 … www.camerfirma.com/address), serialNumber = A82743287, O = AC Camerfirma S.A., CN = Chambers of C… 22 … www.camerfirma.com/address), serialNumber = A82743287, O = AC Camerfirma S.A., CN = Chambers of C… 27 00:af:00:cb:70:37:2b:80:5a:4a:3a:6c:78:94:7d: 28 a3:7f:1a:1f:f6:35:d5:bd:db:cb:0d:44:72:3e:26: 31 b6:29:e1:81:6c:f2:bf:e5:7d:32:6a:54:a0:32:19: 34 53:d6:0e:b0:90:8a:8a:e3:87:8d:06:d3:bd:90:0e: 35 e2:99:a1:1b:86:0e:da:9a:0a:bb:0b:61:50:06:52: 36 f1:9e:7f:76:ec:cb:0f:d0:1e:0d:cf:99:30:3d:1c: 38 d6:51:e6:03:7f:8a:48:a5:4d:68:75:b9:e9:bc:9e: [all …]
|
/freebsd/secure/caroot/trusted/ |
H A D | GTS_Root_R2.pem | 4 ## 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 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: 38 fa:bc:b4:17:0a:48:e5:88:9b:c5:9b:6b:de:b0:ca: [all …]
|
H A D | Amazon_Root_CA_2.pem | 4 ## 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 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: 37 9a:3f:ae:20:5a:6d:88:95:d9:34:b8:52:1a:43:90: [all …]
|
H A D | AffirmTrust_Premium.pem | 4 ## This is a single X.509 certificate for a public Certificate 8 ## It contains a certificate trusted for server authentication. 28 00:c4:12:df:a9:5f:fe:41:dd:dd:f5:9f:8a:e3:f6: 29 ac:e1:3c:78:9a:bc:d8:f0:7f:7a:a0:33:2a:dc:8d: 30 20:5b:ae:2d:6f:e7:93:d9:36:70:6a:68:cf:8e:51: 32 d8:48:29:13:b6:e1:be:91:4d:df:85:0c:53:18:9a: 34 58:ee:26:4d:c9:aa:a8:7b:9a:d9:fa:38:de:44:57: 38 e1:68:9c:89:f8:7a:00:56:de:f4:55:95:6c:fb:ba: 39 64:dd:62:8b:df:0b:77:32:eb:62:cc:26:9a:9b:bb: 40 aa:62:83:4c:b4:06:7a:30:c8:29:bf:ed:06:4d:97: [all …]
|
H A D | COMODO_RSA_Certification_Authority.pem | 4 ## This is a single X.509 certificate for a public Certificate 8 ## It contains a certificate trusted for server authentication. 18 4c:aa:f9:ca:db:63:6f:e0:1f:f7:4e:d8:5b:03:86:9d 29 00:91:e8:54:92:d2:0a:56:b1:ac:0d:24:dd:c5:cf: 31 c4:fa:2a:12:8f:4b:7f:10:56:bd:9f:70:72:b7:61: 33 c7:f4:86:3e:0a:fa:3e:5c:f9:93:e6:34:7a:d9:14: 34 6b:e7:9c:b3:85:a0:82:7a:76:af:71:90:d7:ec:fd: 35 0d:fa:9c:6c:fa:df:b0:82:f4:14:7e:f9:be:c4:a6: 39 6c:b6:8b:f3:0e:8d:9a:e4:9b:6c:69:99:f8:78:48: 43 81:48:43:67:4e:72:2a:9b:5c:bd:4c:1b:28:8a:5c: [all …]
|