| /freebsd/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"; } 10 echo " 1 2 3 " | { IFS=$(printf ' \t\n') 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"; } [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/usr.sbin/bsnmpd/modules/snmp_pf/ |
| H A D | BEGEMOT-PF-MIB.txt | 75 MAX-ACCESS read-only 84 MAX-ACCESS read-only 95 MAX-ACCESS read-only 103 MAX-ACCESS read-only 117 MAX-ACCESS read-only 125 MAX-ACCESS read-only 133 MAX-ACCESS read-only 141 MAX-ACCESS read-only 149 MAX-ACCESS read-only 157 MAX-ACCESS read-only [all …]
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/ |
| H A D | man.TraceFunctions | 46 * /usr/sbin/dtrace -f read 47 * RESULT: tracing of matching list of probes with function read. 50 * /usr/sbin/dtrace -f read: 54 * /usr/sbin/dtrace -f ::read 55 * RESULT: tracing of matching list of probes with function read. 58 * /usr/sbin/dtrace -f ::read: 62 * /usr/sbin/dtrace -f genunix:read 63 * RESULT: tracing of probes with module genunix and function read. 66 * /usr/sbin/dtrace -f sysinfo:genunix:read 68 * and function read. [all …]
|
| H A D | man.ListProbesWithFunctions | 47 * /usr/sbin/dtrace -lf read 48 * RESULT: matching list of probes with function 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 74 * RESULT: matching list of both read and write probes. 77 * /usr/sbin/dtrace -lf read -lm fight [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: 63 * RESULT: trace of probes with module genunix and function 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: [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: 85 * RESULT: matching list of probes with and function read. 93 * /usr/sbin/dtrace -ln read: -ln write: [all …]
|
| /freebsd/contrib/bearssl/src/x509/ |
| H A D | x509_decoder.t0 | 85 cc: read-blob-inner ( addr len -- addr len ) { 135 read-sequence-open 136 read-tag-or-end dup 0x01 = if 137 read-boolean 1 and addr-isCA set8 155 read-sequence-open 158 read-sequence-open 162 read-tag dup 0x20 = if 163 drop check-constructed read-length-open-elt 164 read-tag 166 read-small-int-value [all …]
|
| H A D | skey_decoder.t0 | 65 cc: read-blob-inner ( addr len -- addr len ) { 132 : read-integer-ignore ( lim -- lim ) 133 addr-len-key_data read-integer drop ; 137 : read-integer-off ( lim off -- lim dlen ) 138 dup addr-len-key_data rot - swap rot + swap read-integer ; 142 read-sequence-open 145 read-tag 0x02 check-tag-primitive read-small-int-value if 151 read-tag 0x02 check-tag-primitive 158 \ read. 160 \ Modulus: we read it but we do not keep it; we merely gather [all …]
|
| H A D | asn1.t0 | 40 \ -- A word called "read-blob-inner" ( addr len -- addr len ) that is 102 \ Define a new data word for an encoded OID. The OID is read from the 166 \ Read one byte, enforcing current read limit. 181 : read-blob ( lim addr -- ) 183 begin dup while read-blob-inner dup if co then repeat 192 0 over read-blob-inner -rot 2drop ; 232 : read-tag ( lim -- lim constructed value ) 253 : read-tag-or-end ( lim -- lim constructed value ) 255 read-tag ; 257 \ Compare the read tag with the provided value. If equal, then the [all …]
|
| /freebsd/contrib/bsnmp/snmp_ntp/ |
| H A D | NTP-PROXY-MIB.txt | 76 -- these values may be read, but not written 80 -- this value may be written, but is never read 124 MAX-ACCESS read-create 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 [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/contrib/llvm-project/compiler-rt/lib/profile/ |
| H A D | InstrProfilingPlatformWindows.c | 29 #pragma section(".lprfn$A", read) 30 #pragma section(".lprfn$Z", read) 33 #pragma section(".lprfd$A", read, write) 34 #pragma section(".lprfd$Z", read, write) 35 #pragma section(".lprfc$A", read, write) 36 #pragma section(".lprfc$Z", read, write) 37 #pragma section(".lprfb$A", read, write) 38 #pragma section(".lprfb$Z", read, write) 39 #pragma section(".lorderfile$A", read, write) 40 #pragma section(".lprfnd$A", read, write) [all …]
|
| /freebsd/usr.sbin/bsnmpd/modules/snmp_wlan/ |
| H A D | BEGEMOT-WIRELESS-MIB.txt | 293 MAX-ACCESS read-only 301 MAX-ACCESS read-create 309 MAX-ACCESS read-create 327 MAX-ACCESS read-create 340 MAX-ACCESS read-create 348 MAX-ACCESS read-create 357 MAX-ACCESS read-create 366 MAX-ACCESS read-create 378 MAX-ACCESS read-create 435 MAX-ACCESS read-only [all …]
|
| /freebsd/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 152 MAX-ACCESS read-write 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 [all …]
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | SSL_read.pod | 6 - read bytes from a TLS/SSL connection 20 SSL_read_ex() and SSL_read() try to read B<num> bytes from the specified B<ssl> 22 actually read in B<*readbytes>. 26 the read, so that a subsequent call to SSL_read_ex() or SSL_read() will yield 31 In the paragraphs below a "read function" is defined as one of SSL_read_ex(), 34 If necessary, a read function will negotiate a TLS/SSL session, if not already 37 the read function operation. The behaviour of the read functions depends on the 43 invocation of a read function. 45 The read functions work based on the SSL/TLS records. The data are received in 48 Therefore, data that was not retrieved at the last read call can still be [all …]
|
| H A D | BIO_s_mem.pod | 37 subsequent call to L<BIO_read(3)> will read the data in that datagram. The 40 wrote more datagrams. Each successive call to L<BIO_read(3)> will read the next 41 datagram. If a L<BIO_read(3)> call supplies a read buffer that is smaller than 42 the size of the datagram, then the read buffer will be completely filled and the 47 when there are no datagrams in the BIO to read will return a negative result and 52 Unless the memory BIO is read only any data read from it is deleted from 64 Calling BIO_reset() on a read write memory BIO clears any data in it if the 65 flag BIO_FLAGS_NONCLEAR_RST is not set, otherwise it just restores the read 67 data can be read again. On a read only BIO it similarly restores the BIO to 68 its original state and the read only data can be read again. [all …]
|
| /freebsd/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() 70 return read<uint64_t>(P + (2 * sizeof(uint64_t))); in getRecordCount() 91 uint64_t getValue() const { return read<uint64_t>(P); } 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_ 439 static T read(const uint8_t *P) { read() function [all...] |
| /freebsd/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/stand/i386/boot2/ |
| H A D | boot1.S | 106 callw read # Read from disk 272 read: testb $FL_PACKET,%cs:MEM_REL+flags-start # LBA support enabled? label 273 jz read.1 # No, use CHS 275 jb read.1 # No, use CHS 281 jc read.1 # If error, use CHS 283 jne read.1 # No, so use CHS 285 jz read.1 # No, so use CHS 288 int $0x13 # read 290 read.1: push %dx # Save 321 mov 0x2(%bp),%ah # Blocks to read [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | COFFModuleDefinition.cpp | 156 void read() { in read() function in llvm::object::Parser 166 read(); in readAsInt() 173 read(); in expect() 182 read(); in parseOne() 188 read(); in parseOne() 229 read(); in parseExport() 231 read(); in parseExport() 248 read(); in parseExport() 252 read(); in parseExport() 262 read(); in parseExport() [all …]
|
| /freebsd/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/lib/libfigpar/ |
| H A D | figpar.c | 143 r = read(fd, p, 1); in parse_config() 154 r = read(fd, p, 1); in parse_config() 179 r = read(fd, p, 1); in parse_config() 202 r = read(fd, directive, n); in parse_config() 207 r = read(fd, p, 1); in parse_config() 223 r = read(fd, p, 1); in parse_config() 229 r = read(fd, p, 1); in parse_config() 231 r = read(fd, p, 1); in parse_config() 260 r = read(fd, p, 1); in parse_config() 284 r = read(fd, p, 1); in parse_config() [all …]
|