| /freebsd-12-stable/bin/sh/tests/builtins/ |
| 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"; } 11 echo " 1 2 3 " | { IFS=$(printf ' \t\n') 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"; } [all …]
|
| 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"; }
|
| 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"; }
|
| /freebsd-12-stable/usr.sbin/bsnmpd/modules/snmp_pf/ |
| 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-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/ |
| 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 …]
|
| 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 …]
|
| 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 …]
|
| 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-12-stable/contrib/bearssl/src/x509/ |
| 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 …]
|
| 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 …]
|
| 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-12-stable/contrib/bsnmp/snmp_ntp/ |
| 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 …]
|
| 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-stable/usr.sbin/bsnmpd/modules/snmp_wlan/ |
| D | BEGEMOT-WIRELESS-MIB.txt | 296 MAX-ACCESS read-only 304 MAX-ACCESS read-create 312 MAX-ACCESS read-create 330 MAX-ACCESS read-create 343 MAX-ACCESS read-create 351 MAX-ACCESS read-create 360 MAX-ACCESS read-create 369 MAX-ACCESS read-create 381 MAX-ACCESS read-create 438 MAX-ACCESS read-only [all …]
|
| /freebsd-12-stable/crypto/openssl/doc/man3/ |
| 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 …]
|
| D | BIO_s_mem.pod | 35 Unless the memory BIO is read only any data read from it is deleted from 43 Calling BIO_reset() on a read write memory BIO clears any data in it if the 44 flag BIO_FLAGS_NONCLEAR_RST is not set, otherwise it just restores the read 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. 56 zero then it will return B<v> when it is empty and it will set the read retry 72 length is determined by B<strlen>. The BIO is set to a read only state and 75 supplied data is read directly from the supplied buffer: it is B<not> copied 83 Every write after partial read (not all data in the memory buffer was read) 84 to a read write memory BIO will have to move the unread data with an internal [all …]
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/profile/ |
| D | InstrProfilingPlatformWindows.c | 25 #pragma section(".lprfn$A", read) 26 #pragma section(".lprfn$Z", read) 29 #pragma section(".lprfd$A", read, write) 30 #pragma section(".lprfd$Z", read, write) 31 #pragma section(".lprfc$A", read, write) 32 #pragma section(".lprfc$Z", read, write) 33 #pragma section(".lorderfile$A", read, write) 34 #pragma section(".lprfnd$A", read, write) 35 #pragma section(".lprfnd$Z", read, write)
|
| /freebsd-12-stable/usr.sbin/bsnmpd/modules/snmp_hast/ |
| D | BEGEMOT-HAST-MIB.txt | 80 MAX-ACCESS read-only 138 MAX-ACCESS read-only 146 MAX-ACCESS read-only 154 MAX-ACCESS read-write 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 [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/ |
| D | StackMapParser.h | 61 return read<uint64_t>(P); in getFunctionAddress() 66 return read<uint64_t>(P + sizeof(uint64_t)); in getStackSize() 71 return read<uint64_t>(P + (2 * sizeof(uint64_t))); in getRecordCount() 92 uint64_t getValue() const { return read<uint64_t>(P); } in getValue() 123 return read<uint16_t>(P + SizeOffset); in getSizeInBytes() 129 return read<uint16_t>(P + DwarfRegNumOffset); in getDwarfRegNum() 135 return read<uint32_t>(P + SmallConstantOffset); in getSmallConstant() 142 return read<uint32_t>(P + SmallConstantOffset); in getConstantIndex() 150 return read<int32_t>(P + SmallConstantOffset); in getOffset() 177 return read<uint16_t>(P + DwarfRegNumOffset); in getDwarfRegNum() [all …]
|
| /freebsd-12-stable/sys/contrib/vchiq/interface/vchiq_arm/ |
| 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-stable/stand/i386/boot2/ |
| D | boot1.S | 108 callw read # Read from disk 274 read: testb $FL_PACKET,%cs:MEM_REL+flags-start # LBA support enabled? label 275 jz read.1 # No, use CHS 277 jb read.1 # No, use CHS 283 jc read.1 # If error, use CHS 285 jne read.1 # No, so use CHS 287 jz read.1 # No, so use CHS 290 int $0x13 # read 292 read.1: push %dx # Save 323 mov 0x2(%bp),%ah # Blocks to read [all …]
|
| /freebsd-12-stable/lib/libfigpar/ |
| 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() 207 r = read(fd, directive, n); 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() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/ |
| D | COFFModuleDefinition.cpp | 160 void read() { in read() function in llvm::object::Parser 170 read(); in readAsInt() 177 read(); in expect() 186 read(); in parseOne() 192 read(); in parseOne() 233 read(); in parseExport() 235 read(); in parseExport() 252 read(); in parseExport() 256 read(); in parseExport() 266 read(); in parseExport() [all …]
|
| /freebsd-12-stable/contrib/gdb/gdb/ |
| 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-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| 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)
|