| /freebsd-14.2/bin/sh/tests/builtins/ |
| H A D | read1.0 | 3 echo "1 2 3" | { read a; echo "x${a}x"; } 4 echo "1 2 3" | { read a b; echo "x${a}x${b}x"; } 5 echo "1 2 3" | { read a b c; echo "x${a}x${b}x${c}x"; } 6 echo "1 2 3" | { read a b c d; echo "x${a}x${b}x${c}x${d}x"; } 8 echo " 1 2 3 " | { read a b c; echo "x${a}x${b}x${c}x"; } 9 echo " 1 2 3 " | { unset IFS; read a b c; echo "x${a}x${b}x${c}x"; } 11 echo " 1 2 3 " | { IFS= read a b; echo "x${a}x${b}x"; } 13 echo " 1,2 3 " | { IFS=' ,' read a b c; echo "x${a}x${b}x${c}x"; } 14 echo ", 2 ,3" | { IFS=' ,' read a b c; echo "x${a}x${b}x${c}x"; } 15 echo " 1 ,,3" | { IFS=' ,' read a b c; echo "x${a}x${b}x${c}x"; } [all …]
|
| H A D | read3.0 | 2 printf '%s\n' 'a\ b c' | { read a b; printf '%s\n' "x${a}x${b}x"; } 3 printf '%s\n' 'a b\ c' | { read a b; printf '%s\n' "x${a}x${b}x"; } 4 printf '%s\n' 'a\:b:c' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; } 5 printf '%s\n' 'a:b\:c' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; } 6 printf '%s\n' '\ a' | { read a b; printf '%s\n' "x${a}x${b}x"; } 7 printf '%s\n' '\:a' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; } 8 printf '%s\n' '\\' | { read a b; printf '%s\n' "x${a}x${b}x"; } 9 printf '%s\n' '\\\ a' | { read a b; printf '%s\n' "x${a}x${b}x"; } 10 printf '%s\n' '\\\ a' | { read -r a b; printf '%s\n' "x${a}x${b}x"; }
|
| H A D | read4.0 | 2 printf '%s\n' '\a\ b c' | { read a b; printf '%s\n' "x${a}x${b}x"; } 3 printf '%s\n' '\a b\ c' | { read a b; printf '%s\n' "x${a}x${b}x"; } 4 printf '%s\n' '\a\:b:c' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; } 5 printf '%s\n' '\a:b\:c' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; } 6 printf '%s\n' '\\ a' | { read a b; printf '%s\n' "x${a}x${b}x"; } 7 printf '%s\n' '\\:a' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; } 8 printf '%s\n' '\\\ a' | { read a b; printf '%s\n' "x${a}x${b}x"; } 9 printf '%s\n' '\\\:a' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; }
|
| H A D | read2.0 | 8 read x 10 (read x 12 read x 24 read x 26 (read x 28 read x
|
| /freebsd-14.2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/ |
| H A D | man.TraceFunctions | 46 * /usr/sbin/dtrace -f read 50 * /usr/sbin/dtrace -f read: 54 * /usr/sbin/dtrace -f ::read 58 * /usr/sbin/dtrace -f ::read: 62 * /usr/sbin/dtrace -f genunix:read 66 * /usr/sbin/dtrace -f sysinfo:genunix:read 68 * and function read. 71 * /usr/sbin/dtrace -f sysinfo::read 83 * /usr/sbin/dtrace -f read -f write 87 * /usr/sbin/dtrace -f read -f fight [all …]
|
| H A D | man.ListProbesWithFunctions | 47 * /usr/sbin/dtrace -lf read 51 * /usr/sbin/dtrace -lf genunix:read 53 * function read. 56 * /usr/sbin/dtrace -lf sysinfo:genunix:read 58 * genunix and function read. 65 * /usr/sbin/dtrace -lf ::read: 73 * /usr/sbin/dtrace -lf read -lf write 77 * /usr/sbin/dtrace -lf read -lm fight 78 * RESULT: List of only read probes. 89 * /usr/sbin/dtrace -lf read'{printf("FOUND");}' [all …]
|
| H A D | man.TraceNames | 46 * /usr/sbin/dtrace -n read 58 * /usr/sbin/dtrace -n genunix:read 62 * /usr/sbin/dtrace -n genunix:read: 66 * /usr/sbin/dtrace -n sysinfo:genunix:read 70 * /usr/sbin/dtrace -n sysinfo:genunix:read: 72 * and function read. 83 * /usr/sbin/dtrace -n ::read: 84 * RESULT: tracing of probes with function read. 92 * /usr/sbin/dtrace -n read: -n write: 96 * /usr/sbin/dtrace -n read: -n fight: [all …]
|
| H A D | man.ListProbesWithNames | 47 * /usr/sbin/dtrace -ln read 59 * /usr/sbin/dtrace -ln genunix:read 63 * /usr/sbin/dtrace -ln genunix:read: 65 * function read. 68 * /usr/sbin/dtrace -ln sysinfo:genunix:read 72 * /usr/sbin/dtrace -ln sysinfo:genunix:read: 74 * genunix and function read. 84 * /usr/sbin/dtrace -ln ::read: 93 * /usr/sbin/dtrace -ln read: -ln write: 97 * /usr/sbin/dtrace -ln read: -ln fight: [all …]
|
| /freebsd-14.2/usr.sbin/bsnmpd/modules/snmp_pf/ |
| H A D | BEGEMOT-PF-MIB.txt | 77 MAX-ACCESS read-only 86 MAX-ACCESS read-only 97 MAX-ACCESS read-only 105 MAX-ACCESS read-only 119 MAX-ACCESS read-only 127 MAX-ACCESS read-only 135 MAX-ACCESS read-only 143 MAX-ACCESS read-only 151 MAX-ACCESS read-only 159 MAX-ACCESS read-only [all …]
|
| /freebsd-14.2/contrib/bearssl/src/x509/ |
| H A D | x509_decoder.t0 | 135 read-sequence-open 155 read-sequence-open 164 read-tag 169 read-tag 206 read-bits-open 227 read-bits-open 232 read-blob 248 read-tag-or-end 257 read-OID drop 260 read-tag [all …]
|
| H A D | skey_decoder.t0 | 142 read-sequence-open 145 read-tag 0x02 check-tag-primitive read-small-int-value if 158 \ read. 167 read-integer-ignore 170 read-integer-ignore 197 read-sequence-open 200 read-tag 0x02 check-tag-primitive read-small-int-value 1- if 223 read-tag-or-end 232 read-curve-ID 348 read-tag 0x02 check-tag-primitive read-small-int-value 1 > if [all …]
|
| H A D | asn1.t0 | 255 read-tag ; 263 read-tag-or-end 302 \ element to read. 341 read-tag check-sequence read-length-open-elt ; 347 read-length-open-elt 385 read-length-open-elt 395 read-tag 0x06 check-tag-primitive read-small-value ; 418 read-UTF8-chunk 641 read-tag 654 read-dec2 [all …]
|
| /freebsd-14.2/contrib/bsnmp/snmp_ntp/ |
| H A D | NTP-PROXY-MIB.txt | 171 MAX-ACCESS read-only 179 MAX-ACCESS read-only 187 MAX-ACCESS read-only 195 MAX-ACCESS read-only 203 MAX-ACCESS read-only 211 MAX-ACCESS read-only 219 MAX-ACCESS read-only 227 MAX-ACCESS read-only 235 MAX-ACCESS read-only 243 MAX-ACCESS read-only [all …]
|
| H A D | NTP-MIB.txt | 83 MAX-ACCESS read-only 92 MAX-ACCESS read-only 104 MAX-ACCESS read-only 114 MAX-ACCESS read-only 124 MAX-ACCESS read-only 135 MAX-ACCESS read-only 148 MAX-ACCESS read-only 158 MAX-ACCESS read-only 168 MAX-ACCESS read-only 179 MAX-ACCESS read-only [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/profile/ |
| H A D | InstrProfilingPlatformWindows.c | 27 #pragma section(".lprfn$A", read) 28 #pragma section(".lprfn$Z", read) 31 #pragma section(".lprfd$A", read, write) 32 #pragma section(".lprfd$Z", read, write) 33 #pragma section(".lprfc$A", read, write) 34 #pragma section(".lprfc$Z", read, write) 35 #pragma section(".lprfb$A", read, write) 36 #pragma section(".lprfb$Z", read, write) 37 #pragma section(".lorderfile$A", read, write) 38 #pragma section(".lprfnd$A", read, write) [all …]
|
| /freebsd-14.2/usr.sbin/bsnmpd/modules/snmp_wlan/ |
| H A D | BEGEMOT-WIRELESS-MIB.txt | 293 MAX-ACCESS read-only 301 MAX-ACCESS read-create 435 MAX-ACCESS read-only 450 MAX-ACCESS read-only 477 MAX-ACCESS read-only 557 MAX-ACCESS read-write 566 MAX-ACCESS read-write 1094 MAX-ACCESS read-only 1102 MAX-ACCESS read-only 1118 MAX-ACCESS read-only [all …]
|
| /freebsd-14.2/crypto/openssl/doc/man3/ |
| H A D | SSL_read.pod | 6 - read bytes from a TLS/SSL connection 22 actually read in B<*readbytes>. 37 the read function operation. The behaviour of the read functions depends on the 43 invocation of a read function. 49 buffered inside the SSL layer and will be retrieved on the next read 69 read operation has been finished or an error occurred, except when a 79 return value of the read function will yield B<SSL_ERROR_WANT_READ> or 82 a read function can also cause write operations. 84 to satisfy the needs of the read function. 101 Failure means that no bytes could be read from the SSL connection. [all …]
|
| H A D | BIO_s_mem.pod | 35 Unless the memory BIO is read only any data read from it is deleted from 46 data can be read again. On a read only BIO it similarly restores the BIO to 47 its original state and the read only data can be read again. 85 Every write after partial read (not all data in the memory buffer was read) 87 copy operation, if a BIO contains a lot of data and it is read in small 94 Switching the memory BIO from read write to read only is not supported and 97 immediately after BIO creation and set the BIO as read only. 100 switch it to read only and call BIO_reset() on the read only BIO immediately 102 switched back to the read write mode. 104 Calling BIO_get_mem_ptr() on read only BIO will return a BUF_MEM that [all …]
|
| H A D | SSL_rstate_string.pod | 5 …g, SSL_rstate_string_long - get textual description of state of an SSL object during read operation 16 SSL_rstate_string() returns a 2 letter string indicating the current read state 19 SSL_rstate_string_long() returns a string indicating the current read state of 24 When performing a read operation, the SSL/TLS engine must parse the record, 26 SSL_rstate_string[_long]() should always return "RD"/"read done". 37 =item "RH"/"read header" 41 =item "RB"/"read body" 45 =item "RD"/"read done" 51 The read state is unknown. This should never happen.
|
| /freebsd-14.2/usr.sbin/bsnmpd/modules/snmp_hast/ |
| H A D | BEGEMOT-HAST-MIB.txt | 78 MAX-ACCESS read-only 136 MAX-ACCESS read-only 144 MAX-ACCESS read-only 160 MAX-ACCESS read-only 168 MAX-ACCESS read-only 177 MAX-ACCESS read-only 190 MAX-ACCESS read-only 200 MAX-ACCESS read-only 208 MAX-ACCESS read-only 216 MAX-ACCESS read-only [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | StackMapParser.h | 60 return read<uint64_t>(P); in getFunctionAddress() 65 return read<uint64_t>(P + sizeof(uint64_t)); in getStackSize() 122 return read<uint16_t>(P + SizeOffset); in getSizeInBytes() 128 return read<uint16_t>(P + DwarfRegNumOffset); in getDwarfRegNum() 134 return read<uint32_t>(P + SmallConstantOffset); in getSmallConstant() 141 return read<uint32_t>(P + SmallConstantOffset); in getConstantIndex() 149 return read<int32_t>(P + SmallConstantOffset); in getOffset() 176 return read<uint16_t>(P + DwarfRegNumOffset); in getDwarfRegNum() 181 return read<uint8_t>(P + SizeOffset); in getSizeInBytes() 209 return read<uint64_t>(P + PatchpointIDOffset); in getID() [all …]
|
| /freebsd-14.2/sys/contrib/vchiq/interface/vchiq_arm/ |
| H A D | vchiq_util.c | 46 queue->read = 0; in vchiu_queue_init() 69 return queue->read == queue->write; in vchiu_queue_is_empty() 74 return queue->write == queue->read + queue->size; in vchiu_queue_is_full() 82 while (queue->write == queue->read + queue->size) { in vchiu_queue_push() 109 while (queue->write == queue->read) { in vchiu_queue_peek() 123 return queue->storage[queue->read & (queue->size - 1)]; in vchiu_queue_peek() 130 while (queue->write == queue->read) { in vchiu_queue_pop() 142 header = queue->storage[queue->read & (queue->size - 1)]; in vchiu_queue_pop() 150 queue->read++; in vchiu_queue_pop()
|
| /freebsd-14.2/stand/i386/boot2/ |
| H A D | boot1.S | 273 jz read.1 # No, use CHS 275 jb read.1 # No, use CHS 288 int $0x13 # read 290 read.1: push %dx # Save 322 cmpb %ah,%al # To read 323 jb read.2 # this 335 jnc read.4 # If success 337 jz read.6 # No 341 jmp read.3 # Continue 342 read.4: movzbw %bl,%ax # Sectors read [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_coverage_win_sections.cpp | 34 #pragma section(".SCOV$CA", read, write) 44 #pragma section(".SCOV$CZ", read, write) 48 #pragma section(".SCOV$GA", read, write) 50 #pragma section(".SCOV$GZ", read, write) 59 #pragma section(".SCOVP$A", read) 61 #pragma section(".SCOVP$Z", read)
|
| /freebsd-14.2/lib/libfigpar/ |
| H A D | figpar.c | 145 r = read(fd, p, 1); in parse_config() 156 r = read(fd, p, 1); in parse_config() 181 r = read(fd, p, 1); in parse_config() 210 r = read(fd, p, 1); in parse_config() 226 r = read(fd, p, 1); in parse_config() 232 r = read(fd, p, 1); in parse_config() 234 r = read(fd, p, 1); in parse_config() 263 r = read(fd, p, 1); in parse_config() 288 r = read(fd, p, 1); in parse_config() 310 r = read(fd, p, 1); in parse_config() [all …]
|