Searched refs:read (Results 176 - 200 of 1644) sorted by relevance

1234567891011>>

/macosx-10.10.1/IOStorageFamily-182.1.1/
H A DIOFilterScheme.h10 * http://www.opensource.apple.com/apsl/ and read it before using this
63 * incoming open). It also implements the default read and write semantics,
141 using IOStorage::read;
145 * @function read
148 * specified buffer, asynchronously. When the read completes, the caller
151 * The buffer will be retained for the duration of the read.
154 * read through to the provider media. More complex filter schemes such
157 * Client requesting the read.
173 virtual void read(IOService * client,
297 * Reprioritize read o
[all...]
H A DIOStorage.h10 * http://www.opensource.apple.com/apsl/ and read it before using this
151 * Options for read and write storage requests.
174 * Priority of read and write storage requests. The lower the value, the
202 * Attributes of read and write storage requests.
298 * an abstract class that defines the open/close/read/write APIs that need to be
299 * implemented in a given subclass. Synchronous versions of the read/write APIs
380 * Invokes the specified completion action of the read/write request. If
425 virtual void read(IOService * client,
437 * @function read
440 * specified buffer, synchronously. When the read complete
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/des/
H A Denc_read.c151 i=read(fd,(void *)&(net[net_num]),HDRSIZE-net_num);
167 * we make sure that we have read a multiple of 8 bytes from the net.
176 i=read(fd,(void *)&(net[net_num]),rnum-net_num);
196 * as the number of bytes read. */
/macosx-10.10.1/OpenSSL098-52/src/crypto/rand/
H A Drand_egd.c76 * num the number of bytes read from the EGD socket. This number is either
89 * num the number of bytes read from the EGD socket. This number is either
218 num = read(fd, egdbuf, 1);
250 num = read(fd, retrievebuf + numbytes, egdbuf[0] - numbytes);
/macosx-10.10.1/apache-793/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_bytraffic.c102 ((*worker)->s->read/(*worker)->s->lbfactor);
133 (*worker)->s->read = 0;
/macosx-10.10.1/emacs-93/emacs/lib-src/
H A Dntlib.h78 #undef read macro
79 #define read _read macro
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dpp.el46 to make output that `read' can handle, whenever this is possible."
94 Quoting characters are printed as needed to make output that `read'
104 (list (read-from-minibuffer "Eval: " nil read-expression-map t
105 'read-expression-history)))
156 (setq exp (read exp)))
157 (setq exp (read (current-buffer)))))
/macosx-10.10.1/remote_cmds-47/talk.tproj/
H A Dio.c132 nb = read(sockt, buf, sizeof buf);
148 nb = read(STDIN_FILENO, buf, nb);
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dcontext.vim20 \ . '\|\\new\%(count\|dimen\|skip\|muskip\|box\|toks\|read\|write'
/macosx-10.10.1/vim-55/src/
H A Dos_beos.c6 * Do ":help uganda" in Vim to read copying and usage conditions.
53 charcount = read(read_cmd_fd, &charbuf, 1);
110 count = read(0, &cbuf, sizeof(cbuf));
134 read_thread_id = spawn_thread(read_thread, "vim async read",
173 * Timeout occurred. Break the read() call by sending
174 * a signal. Problem: it may be just read()ing it now.
/macosx-10.10.1/xar-254/xar/test/
H A Dattr.py19 # read buffer size (which is base-2).
37 return f.read(bytes)
62 if f.read() != file_contents:
/macosx-10.10.1/apache-793/httpd/modules/arch/win32/
H A Dmod_isapi.c595 apr_uint32_t read = 0; local
602 while (read < *buf_size &&
603 ((res = ap_get_client_block(r, (char*)buf_data + read,
604 *buf_size - read)) > 0)) {
605 read += res;
608 *buf_size = read;
1186 apr_uint32_t read = 0; local
1201 while (read < *buf_size &&
1202 ((res = ap_get_client_block(r, (char*)buf_data + read,
1203 *buf_size - read)) >
1415 apr_uint32_t read; local
[all...]
/macosx-10.10.1/AppleRAID-4.0.6/
H A DAppleRAIDStorageRequest.h10 * http://www.apple.com/publicsource and read it before using this file.
65 virtual void read(IOService *client, UInt64 byteStart, IOMemoryDescriptor *buffer,
/macosx-10.10.1/Heimdal-398.1.2/appl/kx/
H A Dcontext.c81 return (*kc->read)(kc, fd, buf, len);
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/
H A Drand-unix.c97 count = read(fd, outdata, size);
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dcrypto-rand.c62 ret = read(fd, buf, sizeof(buf));
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dnet_read.c39 * Like read but never return partial data.
52 count = read (fd, cbuf, rem);
/macosx-10.10.1/Heimdal-398.1.2/lib/wind/
H A Dgen-bidi.py48 tables = rfc3454.read(sys.argv[1])
H A Drfc4518.py40 def read(): function
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationroot.cpp61 CollationDataReader::read(NULL, inBytes, udata_getLength(t->memory), *t, errorCode);
/macosx-10.10.1/ICU-531.30/icuSources/tools/toolutil/
H A Duparse.c209 /* read one code point */
269 /* read one code point */
294 /* read a range like start or start..end */
311 /* read the start code point */
328 /* read the end code point */
365 const char *read = source; local
372 while(read < source+sLen) {
373 sscanf(read, "%2x", &value);
378 read += 2;
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DDataView.h72 T read(unsigned& offset, bool littleEndian, bool* status = 0) function in class:JSC::DataView
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/version120/
H A Dregress-99663.js54 * the phrase 'read-only' or something similar -
56 var READONLY = /read\s*-?\s*only/;
57 var READONLY_TRUE = 'a "read-only" error';
/macosx-10.10.1/OpenSSL098-52/src/demos/maurice/
H A Dexample3.c3 Please read the README file for condition of use, before
65 int readlen = read(STDIN, buf, sizeof(buf));
73 perror("read");
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_utils/
H A DcuFileIo.c8 * read it before using this file.
22 Description: simple file read/write utilities
98 rtn = (int)read(fd, buf, (size_t)size);
101 printf("readFile: short read\n");

Completed in 149 milliseconds

1234567891011>>