Searched defs:read (Results 1 - 25 of 531) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DIOExtensions.cs81 public static int read( this TextReader reader, char[] buffer, int index, int count ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DIOExtensions.cs79 public static int read( this TextReader reader, char[] buffer, int index, int count ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringReader.java47 * longer read from it. Only the first invocation of this method has any
107 * @return the character read or -1 if end of reader.
111 public int read() throws IOException { method in class:Support_StringReader
126 * <code>buf</code>. Returns the number of characters actually read or -1
129 * @param buf character array to store the read characters
130 * @param offset offset in buf to store the read characters
131 * @param count maximum number of characters to read
132 * @return the number of characters read or -1 if end of reader.
136 public int read(char buf[], int offset, int count) throws IOException { method in class:Support_StringReader
148 int read
[all...]
/external/apache-http/src/org/apache/http/conn/
H A DEofSensorInputStream.java85 * All read operations will indicate EOF without accessing
86 * the underlying stream. After closing this stream, read
122 * Checks whether the underlying stream can be read from.
132 throw new IOException("Attempted read on closed stream.");
140 public int read() throws IOException { method in class:EofSensorInputStream
145 l = wrappedStream.read();
159 public int read(byte[] b, int off, int len) throws IOException { method in class:EofSensorInputStream
164 l = wrappedStream.read(b, off, len);
178 public int read(byte[] b) throws IOException { method in class:EofSensorInputStream
183 l = wrappedStream.read(
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DLoggingSessionInputBuffer.java40 * Logs all data read to the wire LOG.
76 public int read(byte[] b, int off, int len) throws IOException { method in class:LoggingSessionInputBuffer
77 int l = this.in.read(b, off, len);
84 public int read() throws IOException { method in class:LoggingSessionInputBuffer
85 int l = this.in.read();
92 public int read(byte[] b) throws IOException { method in class:LoggingSessionInputBuffer
93 int l = this.in.read(b);
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionInputBuffer.java108 l = this.instream.read(this.buffer, off, len);
122 public int read() throws IOException { method in class:AbstractSessionInputBuffer
133 public int read(final byte[] b, int off, int len) throws IOException { method in class:AbstractSessionInputBuffer
153 public int read(final byte[] b) throws IOException { method in class:AbstractSessionInputBuffer
157 return read(b, 0, b.length);
182 // the entire line is preset in the read buffer
H A DChunkedInputStream.java50 * transfer coding. After the stream is read to the end, it provides access
54 * gets called. Instead, it will read until the "end" of its chunking on
56 * requests, while not requiring the client to remember to read the entire
115 * <p> Trailer headers are read automcatically at the end of the stream and
122 public int read() throws IOException { method in class:ChunkedInputStream
124 throw new IOException("Attempted read from closed stream.");
136 return in.read();
147 * @see java.io.InputStream#read(byte[], int, int)
150 public int read (byte[] b, int off, int len) throws IOException { method in class:ChunkedInputStream
153 throw new IOException("Attempted read fro
179 public int read (byte[] b) throws IOException { method in class:ChunkedInputStream
[all...]
H A DContentLengthInputStream.java42 * gets called. Instead, it will read until the "end" of its chunking on
44 * requests, while not requiring the client to remember to read the entire
80 * The maximum number of bytes that can be read from the stream. Subsequent
81 * read operations will return -1.
100 * @param contentLength The maximum number of bytes that can be read from
101 * the stream. Subsequent read operations will return -1.
126 while (read(buffer) >= 0) {
130 // to read after closed!
141 * @see java.io.InputStream#read()
143 public int read() throw method in class:ContentLengthInputStream
167 public int read (byte[] b, int off, int len) throws java.io.IOException { method in class:ContentLengthInputStream
192 public int read(byte[] b) throws IOException { method in class:ContentLengthInputStream
[all...]
H A DIdentityInputStream.java79 public int read() throws IOException { method in class:IdentityInputStream
83 return this.in.read();
87 public int read(final byte[] b, int off, int len) throws IOException { method in class:IdentityInputStream
91 return this.in.read(b, off, len);
/external/apache-http/src/org/apache/http/io/
H A DSessionInputBuffer.java54 int read(byte[] b, int off, int len) throws IOException; method in interface:SessionInputBuffer
56 int read(byte[] b) throws IOException; method in interface:SessionInputBuffer
58 int read() throws IOException; method in interface:SessionInputBuffer
/external/arduino/hardware/arduino/cores/arduino/
H A DHardwareSerial.cpp39 // is the index of the location from which to read.
246 int HardwareSerial::read(void) function in class:HardwareSerial
/external/arduino/libraries/Wire/
H A DWire.cpp82 // perform blocking read into buffer
83 uint8_t read = twi_readFrom(address, rxBuffer, quantity); local
86 rxBufferLength = read;
88 return read;
215 // meaning, they may not have read all the master requestFrom() data yet
219 // copy twi rx buffer into local read buffer
252 // sets function called on slave read
/external/bluetooth/bluedroid/audio_a2dp_hw/
H A Daudio_a2dp_hw.c238 int read; local
246 if ((read = recv(fd, p, len, MSG_NOSIGNAL)) == -1)
252 return read;
919 int read; local
921 DEBUG("read %zu bytes, state: %d", bytes, in->common.state);
942 DEBUG("emulate a2dp read delay (%d us)", us_delay);
957 read = skt_read(in->common.audio_fd, buffer, bytes);
959 if (read == -1)
964 } else if (read == 0) {
965 DEBUG("read tim
[all...]
/external/bluetooth/bluedroid/bta/include/
H A Dbta_gatt_api.h116 #define BTA_GATTC_READ_CHAR_EVT 3 /* GATT read characteristic event */
121 #define BTA_GATTC_READ_DESCR_EVT 8 /* GATT read characterisitc descriptor event */
140 #define BTA_GATTC_BTH_SCAN_RD_EVT 27 /* Batch scan reports read event */
411 tBTA_GATTC_READ read; /* read attribute/descriptor data */ member in union:__anon790
525 /* read request always based on UUID */
889 ** Description This function is called to read a service's characteristics of
893 ** p_char_id - characteritic ID to read.
906 ** Description This function is called to read a characteristics descriptor.
909 ** p_char_descr_id - characteritic descriptor ID to read
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DConstructedOctetStream.java20 public int read(byte[] b, int off, int len) throws IOException method in class:ConstructedOctetStream
44 int numRead = _currentStream.read(b, off + totalRead, len - totalRead);
70 public int read() method in class:ConstructedOctetStream
93 int b = _currentStream.read();
H A DDefiniteLengthInputStream.java42 public int read() method in class:DefiniteLengthInputStream
50 int b = _in.read();
65 public int read(byte[] buf, int off, int len) method in class:DefiniteLengthInputStream
74 int numRead = _in.read(buf, off, toRead);
H A DIndefiniteLengthInputStream.java22 _b1 = in.read();
23 _b2 = in.read();
51 public int read(byte[] b, int off, int len) method in class:IndefiniteLengthInputStream
57 return super.read(b, off, len);
65 int numRead = _in.read(b, off + 2, len - 2);
76 _b1 = _in.read();
77 _b2 = _in.read();
88 public int read() method in class:IndefiniteLengthInputStream
96 int b = _in.read();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
H A DDigestInputStream.java22 public int read() method in class:DigestInputStream
25 int b = in.read();
34 public int read( method in class:DigestInputStream
40 int n = in.read(b, off, len);
H A DMacInputStream.java22 public int read() method in class:MacInputStream
25 int b = in.read();
34 public int read( method in class:MacInputStream
40 int n = in.read(b, off, len);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DTeeInputStream.java19 public int read(byte[] buf) method in class:TeeInputStream
22 return read(buf, 0, buf.length);
25 public int read(byte[] buf, int off, int len) method in class:TeeInputStream
28 int i = input.read(buf, off, len);
38 public int read() method in class:TeeInputStream
41 int i = input.read();
/external/chromium-trace/trace-viewer/examples/stream_server/
H A Dstandalone.py192 def read(self, length): member in class:_StandaloneConnection
193 """Mimic mp_conn.read()."""
195 return self._request_handler.rfile.read(length)
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Decho_client.py193 return self._ssl.read(size)
215 # 4.1 34. read /name/
219 # 4.1 35. read spaces
222 # 4.1 36. read /value/
224 # 4.1 37. read a byte from the server
244 # 4.1 34. read a byte from the server
260 # 4.1 35. read a byte from the server
270 # 4.1 36. read a byte from server.
560 # closes, or a 0x0A byte is read. let /field/ be these bytes, including
595 # 4.1 32-39. read field
772 def read(self, n): member in class:ClientConnection
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dmux.py342 'Cannot read %d byte(s) number' % size)
360 'Cannot read %d byte(s) number' % size)
595 def read(self, length): member in class:_LogicalConnection
600 length: length of data to be read.
H A Dstandalone.py188 def read(self, length): member in class:_StandaloneConnection
189 """Mimic mp_conn.read()."""
191 return self._request_handler.rfile.read(length)

Completed in 613 milliseconds

1234567891011>>