| /freebsd-12.1/bin/sh/tests/builtins/ |
| H A D | read1.0 | 4 echo "1 2 3" | { read a; echo "x${a}x"; } 5 echo "1 2 3" | { read a b; echo "x${a}x${b}x"; } 6 echo "1 2 3" | { read a b c; echo "x${a}x${b}x${c}x"; } 7 echo "1 2 3" | { read a b c d; echo "x${a}x${b}x${c}x${d}x"; } 9 echo " 1 2 3 " | { read a b c; echo "x${a}x${b}x${c}x"; } 10 echo " 1 2 3 " | { unset IFS; read a b c; echo "x${a}x${b}x${c}x"; } 12 echo " 1 2 3 " | { IFS= read a b; echo "x${a}x${b}x"; } 14 echo " 1,2 3 " | { IFS=' ,' read a b c; echo "x${a}x${b}x${c}x"; } 15 echo ", 2 ,3" | { IFS=' ,' read a b c; echo "x${a}x${b}x${c}x"; } 16 echo " 1 ,,3" | { IFS=' ,' read a b c; echo "x${a}x${b}x${c}x"; } [all …]
|
| H A D | read3.0 | 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' | { 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:b\:c' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; } 7 printf '%s\n' '\ a' | { read a b; printf '%s\n' "x${a}x${b}x"; } 8 printf '%s\n' '\:a' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; } 9 printf '%s\n' '\\' | { read a b; printf '%s\n' "x${a}x${b}x"; } 10 printf '%s\n' '\\\ a' | { read a b; printf '%s\n' "x${a}x${b}x"; } 11 printf '%s\n' '\\\ a' | { read -r a b; printf '%s\n' "x${a}x${b}x"; }
|
| H A D | read4.0 | 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' | { 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:b\:c' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; } 7 printf '%s\n' '\\ a' | { read a b; printf '%s\n' "x${a}x${b}x"; } 8 printf '%s\n' '\\:a' | { IFS=: 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' | { IFS=: read a b; printf '%s\n' "x${a}x${b}x"; }
|
| H A D | read2.0 | 9 read x 11 (read x 13 read x 25 read x 27 (read x 29 read x
|
| /freebsd-12.1/usr.sbin/bsnmpd/modules/snmp_pf/ |
| H A D | BEGEMOT-PF-MIB.txt | 79 MAX-ACCESS read-only 88 MAX-ACCESS read-only 99 MAX-ACCESS read-only 107 MAX-ACCESS read-only 121 MAX-ACCESS read-only 129 MAX-ACCESS read-only 137 MAX-ACCESS read-only 145 MAX-ACCESS read-only 153 MAX-ACCESS read-only 161 MAX-ACCESS read-only [all …]
|
| /freebsd-12.1/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-12.1/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-12.1/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-12.1/usr.sbin/bsnmpd/modules/snmp_wlan/ |
| H A D | BEGEMOT-WIRELESS-MIB.txt | 296 MAX-ACCESS read-only 304 MAX-ACCESS read-create 438 MAX-ACCESS read-only 453 MAX-ACCESS read-only 480 MAX-ACCESS read-only 560 MAX-ACCESS read-write 569 MAX-ACCESS read-write 1097 MAX-ACCESS read-only 1105 MAX-ACCESS read-only 1121 MAX-ACCESS read-only [all …]
|
| /freebsd-12.1/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. 83 Every write after partial read (not all data in the memory buffer was read) 85 copy operation, if a BIO contains a lot of data and it is read in small 92 Switching the memory BIO from read write to read only is not supported and 95 immediately after BIO creation and set the BIO as read only. 98 switch it to read only and call BIO_reset() on the read only BIO immediately 100 switched back to the read write mode. 102 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-12.1/usr.sbin/bsnmpd/modules/snmp_hast/ |
| H A D | BEGEMOT-HAST-MIB.txt | 80 MAX-ACCESS read-only 138 MAX-ACCESS read-only 146 MAX-ACCESS read-only 162 MAX-ACCESS read-only 170 MAX-ACCESS read-only 179 MAX-ACCESS read-only 192 MAX-ACCESS read-only 202 MAX-ACCESS read-only 210 MAX-ACCESS read-only 218 MAX-ACCESS read-only [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/Object/ |
| H A D | StackMapParser.h | 58 return read<uint64_t>(P); in getFunctionAddress() 63 return read<uint64_t>(P + sizeof(uint64_t)); in getStackSize() 120 return read<uint16_t>(P + DwarfRegNumOffset); in getDwarfRegNum() 126 return read<uint32_t>(P + SmallConstantOffset); in getSmallConstant() 133 return read<uint32_t>(P + SmallConstantOffset); in getConstantIndex() 141 return read<int32_t>(P + SmallConstantOffset); in getOffset() 167 return read<uint16_t>(P + DwarfRegNumOffset); in getDwarfRegNum() 172 return read<uint8_t>(P + SizeOffset); in getSizeInBytes() 200 return read<uint64_t>(P + PatchpointIDOffset); in getID() 211 return read<uint16_t>(P + NumLocationsOffset); in getNumLocations() [all …]
|
| /freebsd-12.1/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-12.1/stand/i386/boot2/ |
| H A D | boot1.S | 275 jz read.1 # No, use CHS 277 jb read.1 # No, use CHS 290 int $0x13 # read 292 read.1: push %dx # Save 324 cmpb %ah,%al # To read 325 jb read.2 # this 337 jnc read.4 # If success 339 jz read.6 # No 343 jmp read.3 # Continue 344 read.4: movzbw %bl,%ax # Sectors read [all …]
|
| /freebsd-12.1/lib/libfigpar/ |
| H A D | figpar.c | 147 r = read(fd, p, 1); in parse_config() 158 r = read(fd, p, 1); in parse_config() 183 r = read(fd, p, 1); in parse_config() 212 r = read(fd, p, 1); in parse_config() 228 r = read(fd, p, 1); in parse_config() 234 r = read(fd, p, 1); in parse_config() 236 r = read(fd, p, 1); in parse_config() 265 r = read(fd, p, 1); in parse_config() 290 r = read(fd, p, 1); in parse_config() 312 r = read(fd, p, 1); in parse_config() [all …]
|
| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | user-regs.c | 44 struct value *(*read) (struct frame_info * frame); member 62 user_reg_read_ftype *read, struct user_reg *reg) in append_user_reg() argument 69 reg->read = read; in append_user_reg() 80 user_reg_add_builtin (const char *name, user_reg_read_ftype *read) in user_reg_add_builtin() argument 82 append_user_reg (&builtin_user_regs, name, read, in user_reg_add_builtin() 98 append_user_reg (regs, reg->name, reg->read, in user_regs_init() 105 user_reg_read_ftype *read) in user_reg_add() argument 115 append_user_reg (regs, name, read, in user_reg_add() 202 return reg->read (frame); in value_of_user_reg()
|
| /freebsd-12.1/contrib/llvm/lib/Object/ |
| H A D | COFFModuleDefinition.cpp | 161 void read() { in read() function in llvm::object::Parser 171 read(); in readAsInt() 178 read(); in expect() 187 read(); in parseOne() 234 read(); in parseExport() 236 read(); in parseExport() 253 read(); in parseExport() 304 read(); in parseNumbers() 317 read(); in parseName() 325 read(); in parseName() [all …]
|