Home
last modified time | relevance | path

Searched refs:read (Results 1 – 25 of 1985) sorted by relevance

12345678910>>...80

/freebsd-10-stable/cddl/contrib/dtracetoolkit/Examples/
Dpfilestat_example.txt12 read 3 2% /devices/pci@0,0/pci-ide@1f,1/ide@0/cmdk@0,0
20 read 3 53479 /devices/pci@0,0/pci-ide@1f,1/ide@0/cmdk@0,0
24 Most of the time we are sleeping on read, which is to be expected as dd on
25 the raw device is simple -> read:entry, strategy, biodone, read:return.
26 CPU time in read() itself is small.
41 read 3 53% /devices/pci@0,0/pci-ide@1f,1/ide@0/cmdk@0,0
44 read 3 53492 /devices/pci@0,0/pci-ide@1f,1/ide@0/cmdk@0,0
49 Woah, we are now spending much more time in read()! I imagine segmap is
64 read 3 24% /devices/pci@1f,0/pci@1,1/ide@3/dad@0,0:a
68 read 3 13594 /devices/pci@1f,0/pci@1,1/ide@3/dad@0,0:a
[all …]
Derrinfo_example.txt8 wnck-applet read 11 Resource temporarily unavailable
9 Xorg read 11 Resource temporarily unavailable
10 nautilus read 11 Resource temporarily unavailable
11 Xorg read 11 Resource temporarily unavailable
12 dsdm read 11 Resource temporarily unavailable
13 Xorg read 11 Resource temporarily unavailable
18 Xorg read 11 Resource temporarily unavailable
35 xscreensaver read 11 1 Resource temporarily unavailable
45 soffice.bin read 11 9 Resource temporarily unavailable
46 gnome-terminal read 11 23 Resource temporarily unavailable
[all …]
Dfsrw_example.txt4 Here the fsrw.d script was running while a 50 Kbyte file was read,
8 sc-read . R 8192 0 /extra1/50k
12 sc-read . R 8192 8 /extra1/50k
15 sc-read . R 8192 16 /extra1/50k
17 sc-read . R 8192 24 /extra1/50k
19 sc-read . R 8192 32 /extra1/50k
21 sc-read . R 8192 40 /extra1/50k
23 sc-read . R 8192 48 /extra1/50k
25 sc-read . R 8192 50 /extra1/50k
30 can see how the read() system calls (sc-read) were satisfied by the file
[all …]
Dprocsystime_example.txt19 read 857401243
22 was issued to it's completion. In the above output, we can see the read()
24 reads combined. This is because the read syscall is waiting for keystrokes.
40 read 154895
61 read 115833
69 read 82381
77 read 4
99 read 238197
117 read 18019194
131 read 9752315
[all …]
/freebsd-10-stable/bin/sh/tests/builtins/
Dread1.04 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 …]
Dread3.03 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"; }
Dread4.03 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"; }
Dread2.09 read x
11 (read x
13 read x
25 read x
27 (read x
29 read x
/freebsd-10-stable/usr.sbin/bsnmpd/modules/snmp_pf/
DBEGEMOT-PF-MIB.txt79 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-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
Dman.TraceFunctions46 * /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 …]
Dman.ListProbesWithFunctions47 * /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 …]
Dman.TraceNames46 * /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 …]
Dman.ListProbesWithNames47 * /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-10-stable/contrib/bsnmp/snmp_ntp/
DNTP-PROXY-MIB.txt76 -- 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 …]
DNTP-MIB.txt83 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-10-stable/usr.sbin/bsnmpd/modules/snmp_wlan/
DBEGEMOT-WIRELESS-MIB.txt296 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-10-stable/usr.sbin/bsnmpd/modules/snmp_hast/
DBEGEMOT-HAST-MIB.txt80 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-10-stable/crypto/openssl/doc/ssl/
DSSL_rstate_string.pod5 …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-10-stable/sys/boot/i386/boot2/
Dboot1.S108 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-10-stable/crypto/openssl/doc/crypto/
DBIO_s_mem.pod30 Unless the memory BIO is read only any data read from it is deleted from
38 Calling BIO_reset() on a read write memory BIO clears any data in it. On a
39 read only BIO it restores the BIO to its original state and the read only
40 data can be read again.
49 zero then it will return B<v> when it is empty and it will set the read retry
65 length is determined by B<strlen>. The BIO is set to a read only state and
68 supplied data is read directly from the supplied buffer: it is B<not> copied
76 Every read from a read write memory BIO will remove the data just read with
78 read in small chunks the operation can be very slow. The use of a read only
79 memory BIO avoids this problem. If the BIO must be read write then adding
[all …]
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Bin/
Dguess.d39 syscall::read:entry
46 syscall::read:return
55 syscall::read:return
70 syscall::read:return
77 syscall::read:return
87 syscall::read:return
99 syscall::read:entry
107 syscall::read:return
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Misc/
Dguess.d39 syscall::read:entry
46 syscall::read:return
55 syscall::read:return
70 syscall::read:return
77 syscall::read:return
87 syscall::read:return
99 syscall::read:entry
107 syscall::read:return
/freebsd-10-stable/lib/libfigpar/
Dfigpar.c147 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-10-stable/contrib/gdb/gdb/
Duser-regs.c44 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-10-stable/sys/boot/forth/
Dcheck-password.4th39 variable read-tick \ Twiddle position (used by read)
40 variable read-start \ Starting X offset (column)(used by read)
50 \ called by the read function. You need not call it directly. NOTE: arrow keys
63 read-tick @ dup 1+ 4 mod read-tick !
71 read-start @ 25 at-xy
90 : read-reset ( -- )
95 : read ( c-addr/u -- ) \ Expects string prompt as stack input
98 dup 1+ read-start ! \ Store X offset after the prompt
99 0 readlen ! \ Initialize the read length
116 3 spaces read-start @ 25 at-xy \ Erase the twiddle
[all …]

12345678910>>...80