HomeSort by relevance Sort by last modified time
    Searched full:read (Results 826 - 850 of 23242) sorted by null

<<31323334353637383940>>

  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/sys/
mount.h 39 #define MS_RDONLY 1 /* Mount read-only */
79 #define BLKROSET _IO(0x12, 93) /* Set device read-only (0 = read-write). */
80 #define BLKROGET _IO(0x12, 94) /* Get read-only status (0 = read_write). */
81 #define BLKRRPART _IO(0x12, 95) /* Re-read partition table. */
84 #define BLKRASET _IO(0x12, 98) /* Set read ahead for block device. */
85 #define BLKRAGET _IO(0x12, 99) /* Get current read ahead setting. */
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/sys/
mount.h 39 #define MS_RDONLY 1 /* Mount read-only */
79 #define BLKROSET _IO(0x12, 93) /* Set device read-only (0 = read-write). */
80 #define BLKROGET _IO(0x12, 94) /* Get read-only status (0 = read_write). */
81 #define BLKRRPART _IO(0x12, 95) /* Re-read partition table. */
84 #define BLKRASET _IO(0x12, 98) /* Set read ahead for block device. */
85 #define BLKRAGET _IO(0x12, 99) /* Get current read ahead setting. */
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/sys/
mount.h 39 #define MS_RDONLY 1 /* Mount read-only */
79 #define BLKROSET _IO(0x12, 93) /* Set device read-only (0 = read-write). */
80 #define BLKROGET _IO(0x12, 94) /* Get read-only status (0 = read_write). */
81 #define BLKRRPART _IO(0x12, 95) /* Re-read partition table. */
84 #define BLKRASET _IO(0x12, 98) /* Set read ahead for block device. */
85 #define BLKRAGET _IO(0x12, 99) /* Get current read ahead setting. */
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 39 * This class contains two kinds of methods: methods that read specific
41 * {@link #readInt32()}) and methods that read low-level values (e.g.
74 * Attempt to read a field tag, returning zero if we have reached EOF.
75 * Protocol message parsers use this to read tags, since a protocol message
86 // If we actually read zero, that's not a valid tag.
141 * Reads and discards an entire message. This will read either until EOF
155 /** Read a {@code double} field value from the stream. */
160 /** Read a {@code float} field value from the stream. */
165 /** Read a {@code uint64} field value from the stream. */
170 /** Read an {@code int64} field value from the stream. *
    [all...]
  /development/host/windows/usb/api/
adb_endpoint_object.h 60 /** \brief Common code for async read / write
62 @param[in] is_read Read or write selector.
63 @param[in,out] buffer Pointer to the buffer for read / write.
64 @param[in] bytes_to_transfer Number of bytes to be read / written.
65 @param[out] bytes_transferred Number of bytes read / written. Can be NULL.
82 /** \brief Common code for sync read / write
84 @param[in] is_read Read or write selector.
85 @param[in,out] buffer Pointer to the buffer for read / write.
86 @param[in] bytes_to_transfer Number of bytes to be read / written.
87 @param[out] bytes_transferred Number of bytes read / written. Can be NULL.
    [all...]
  /external/libvorbis/doc/
06-floor0.tex 31 1) [floor0_order] = read an unsigned integer of 8 bits
32 2) [floor0_rate] = read an unsigned integer of 16 bits
33 3) [floor0_bark_map_size] = read an unsigned integer of 16 bits
34 4) [floor0_amplitude_bits] = read an unsigned integer of six bits
35 5) [floor0_amplitude_offset] = read an unsigned integer of eight bits
36 6) [floor0_number_of_books] = read an unsigned integer of four bits and add 1
37 7) array [floor0_book_list] = read a list of [floor0_number_of_books] unsigned integers of eight bits each;
58 1) [amplitude] = read an unsigned integer of [floor0_amplitude_bits] bits
61 4) [booknumber] = read an unsigned integer of \link{vorbis:spec:ilog}{ilog}( [floor0_number_of_books] ) bits
64 7) vector [temp_vector] = read vector from bitstream using codebook number [floor0_book_list] element [booknumber] in VQ context
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 74 /// readSectionHeaders - read ELF section header table and create LDSections
77 /// readRegularSection - read a regular section and create fragments.
80 /// readSymbols - read ELF symbols and create LDSymbol
86 /// readSignature - read a symbol from the given Input and index in symtab
92 /// readRela - read ELF rela and create Relocation
97 /// readRel - read ELF rel and create Relocation
102 /// readDynamic - read ELF .dynamic in input dynobj
164 /// readSectionHeaders - read ELF section header table and create LDSections
167 /// readRegularSection - read a regular section and create fragments.
170 /// readSymbols - read ELF symbols and create LDSymbo
    [all...]
  /hardware/ti/omap4xxx/libtiutils/
MessageQueue.cpp 96 @return android::NO_INIT If the file read descriptor is not set
97 @return android::UNKNOWN_ERROR if the read operation fromthe file read descriptor fails
112 MSGQ_LOGEA("read descriptor not initialized for message queue");
122 int err = read(this->fd_read, p, sizeof(*msg) - read_bytes);
126 MSGQ_LOGEB("read() error: %s", strerror(errno));
148 @return file read descriptor
159 @param fd file read descriptor
253 MSGQ_LOGEA("read descriptor not initialized for message queue");
283 MSGQ_LOGEA("read descriptor not initialized for message queue")
    [all...]
  /libcore/luni/src/main/java/java/io/
StringReader.java 51 * Closes this reader. Once it is closed, read operations on this reader
117 * @return the character read or -1 if the end of the source string has been
123 public int read() throws IOException { method in class:StringReader
136 * number of characters actually read or -1 if the end of the source string
145 public int read(char[] buffer, int offset, int count) throws IOException { method in class:StringReader
157 int read = end - pos; local
159 return read;
164 * Indicates whether this reader is ready to be read without blocking. This
170 * @see #read()
171 * @see #read(char[], int, int
    [all...]
DataInput.java 21 * Defines an interface for classes that are able to read big-endian typed data from some
23 * {@link DataOutput}. Types that can be read include byte, 16-bit short, 32-bit
53 * @throws EOFException if the end of the input is reached before the read
65 * @throws EOFException if the end of the input is reached before the read
77 * @throws EOFException if the end of the input is reached before the read
89 * @throws EOFException if the end of the input is reached before the read
101 * @throws EOFException if the end of the input is reached before the read
118 * {@code byteCount} bytes have been read. If insufficient bytes are available,
124 * the byte array into which the data is read.
128 * the number of bytes to read
    [all...]
PushbackInputStream.java 24 * bytes that have been read, so that they can be read again. Parsers may find
27 * read from the underlying input stream.
48 * {@code PushbackInputStream}. All read operations on such a stream will
65 * {@code PushbackInputStream}. All read operations on such a stream will
126 * Blocks until one byte has been read, the end of the source stream is
129 * @return the byte read or -1 if the end of the source stream has been
136 public int read() throws IOException { method in class:PushbackInputStream
144 // Assume read() in the InputStream will return low-order byte or -1
146 return in.read();
166 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { method in class:PushbackInputStream
    [all...]
InputStreamReader.java 31 * A class for turning a byte stream into a character stream. Data read from the
35 * of bytes read from the source stream and converts these into characters as
56 * the input stream from which to read characters.
69 * the InputStream from which to read characters.
100 * the source InputStream from which to read characters.
117 * the source InputStream from which to read characters.
171 * @return the character read or -1 if the end of the reader has been
177 public int read() throws IOException { method in class:InputStreamReader
183 return read(buf, 0, 1) != -1 ? buf[0] : -1;
190 * the number of characters actually read or -1 if the end of the reader ha
201 public int read(char[] buffer, int offset, int count) throws IOException { method in class:InputStreamReader
    [all...]
  /frameworks/av/include/camera/
CameraParameters.h 106 // The access (read/write, read only, or write only) is viewed from the
110 // Example value: "480x320". Read/Write.
113 // Example value: "800x600,480x320". Read only.
132 // constants. Read/write.
135 // Example value: "yuv420sp,yuv422i-yuyv". Read only.
139 // Example value: "15". Read/write.
142 // Example value: "24,15,10". Read.
145 // Example value: "1024x768". Read/write.
148 // Example value: "2048x1536,1024x768". Read only
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
stream.cc 83 size_t* read, int* error) {
87 result = Read(static_cast<char*>(buffer) + total_read,
93 if (read)
94 *read = total_read;
103 result = Read(&ch, sizeof(ch), NULL, NULL);
198 StreamResult StreamTap::Read(void* buffer, size_t buffer_len,
199 size_t* read, int* error) {
201 if (!read) {
202 read = &backup_read;
204 StreamResult res = StreamAdapterInterface::Read(buffer, buffer_len
    [all...]
  /external/chromium_org/base/json/
json_reader_unittest.cc 245 root.reset(JSONReader::Read("[true, false, null]"));
253 root2.reset(JSONReader::Read("[true, false, null, ]",
258 root.reset(JSONReader::Read("[]"));
265 root.reset(JSONReader::Read("[[true], [], [false, [], [null]], null]"));
272 root2.reset(JSONReader::Read("[[true], [], [false, [], [null, ] , ], null,]",
277 root.reset(JSONReader::Read("[[true], [], [false, [], [null]], null"));
281 root.reset(JSONReader::Read("[true,, null]"));
283 root.reset(JSONReader::Read("[true,, null]", JSON_ALLOW_TRAILING_COMMAS));
287 root.reset(JSONReader::Read("[true null]"));
291 root.reset(JSONReader::Read("[true,]"))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
gzip.py 1 """Functions that read and write gzipped files.
17 READ, WRITE = 1, 2
25 return struct.unpack("<I", input.read(4))[0]
64 depending on whether the file will be read or written. The default
86 # underlying file object - in read mode, this causes data corruption.
107 self.mode = READ
110 # Buffer data read from gzip file. extrastart is offset in
188 magic = self.fileobj.read(2)
191 method = ord( self.fileobj.read(1) )
194 flag = ord( self.fileobj.read(1)
241 def read(self, size=-1): member in class:GzipFile
    [all...]
fileinput.py 16 number of the line that has just been read; filelineno() returns its
18 line just read is the first line of its file; isstdin() returns true
19 iff the line was read from sys.stdin. Function nextfile() closes the
20 current file so that the next iteration will read the first line from
21 the next file (if any); lines not read from the file will not count
23 after the first line of the next file has been read. Function close()
26 Before any lines have been read, filename() returns None and both line
28 read, filename() and the line number functions return the values
29 pertaining to the last line read; nextfile() has no effect.
64 disabled when standard input is read. XXX The current implementatio
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
gzip.py 1 """Functions that read and write gzipped files.
17 READ, WRITE = 1, 2
25 return struct.unpack("<I", input.read(4))[0]
64 depending on whether the file will be read or written. The default
86 # underlying file object - in read mode, this causes data corruption.
107 self.mode = READ
110 # Buffer data read from gzip file. extrastart is offset in
188 magic = self.fileobj.read(2)
191 method = ord( self.fileobj.read(1) )
194 flag = ord( self.fileobj.read(1)
241 def read(self, size=-1): member in class:GzipFile
    [all...]
fileinput.py 16 number of the line that has just been read; filelineno() returns its
18 line just read is the first line of its file; isstdin() returns true
19 iff the line was read from sys.stdin. Function nextfile() closes the
20 current file so that the next iteration will read the first line from
21 the next file (if any); lines not read from the file will not count
23 after the first line of the next file has been read. Function close()
26 Before any lines have been read, filename() returns None and both line
28 read, filename() and the line number functions return the values
29 pertaining to the last line read; nextfile() has no effect.
64 disabled when standard input is read. XXX The current implementatio
    [all...]
  /external/chromium/base/json/
json_reader_unittest.cc 223 root.reset(JSONReader::Read("[true, false, null]", false));
231 root2.reset(JSONReader::Read("[true, false, null, ]", true));
235 root.reset(JSONReader::Read("[]", false));
242 root.reset(JSONReader::Read("[[true], [], [false, [], [null]], null]",
250 root2.reset(JSONReader::Read("[[true], [], [false, [], [null, ] , ], null,]",
255 root.reset(JSONReader::Read("[[true], [], [false, [], [null]], null", false));
259 root.reset(JSONReader::Read("[true,, null]", false));
261 root.reset(JSONReader::Read("[true,, null]", true));
265 root.reset(JSONReader::Read("[true null]", false));
269 root.reset(JSONReader::Read("[true,]", false))
    [all...]
  /external/tremolo/Tremolo/
dpen.s 58 SUBS r4,r4,#1 @ r4 = --read
61 MOV r1,r4 @ r1 = read
70 LDMIA r0,{r4,r6,r7} @ r4 = read = book->max_length
76 MOV r1,r4 @ r1 = read
83 @ r4 = read
95 RSB r1, r4, #0 @ r1 = i-read = 0-read
101 ADDS r1, r1, #1 @ r1 = i-read++ (i-read<0 => i<read)
    [all...]
  /external/chromium_org/media/filters/
decrypting_audio_decoder_unittest.cc 135 decoder_->Read(base::Bind(&DecryptingAudioDecoderTest::FrameReady,
145 EXPECT_CALL(*demuxer_, Read(_))
164 // Make the read callback pending by saving and not firing it.
167 EXPECT_CALL(*demuxer_, Read(_))
169 decoder_->Read(base::Bind(&DecryptingAudioDecoderTest::FrameReady,
172 // Make sure the Read() on the decoder triggers a Read() on the demuxer.
179 EXPECT_CALL(*demuxer_, Read(_))
184 decoder_->Read(base::Bind(&DecryptingAudioDecoderTest::FrameReady,
187 // Make sure the Read() on the decoder triggers a DecryptAndDecode() on th
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 103 if (inStream.read() == '-') {
144 while ((ch = inStream.read()) != -1) {
168 // read the next ASN.1 tag
177 // there were not read X.509 Certificates, so
183 // so return what we already read
197 // some Certificates have been read
248 if (inStream.read() == '-') {
285 while ((ch = inStream.read()) != -1) {
309 // read the next ASN.1 tag
318 // there were not read X.509 CRLs, s
805 public int read() throws IOException { method in class:X509CertFactoryImpl.RestoringInputStream
836 public int read(byte[] b, int off, int len) throws IOException { method in class:X509CertFactoryImpl.RestoringInputStream
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsHeader.java 126 int id = inStream.read();
127 int length = inStream.read();
133 concatRef.refNumber = inStream.read();
134 concatRef.msgCount = inStream.read();
135 concatRef.seqNumber = inStream.read();
144 concatRef.refNumber = (inStream.read() << 8) | inStream.read();
145 concatRef.msgCount = inStream.read();
146 concatRef.seqNumber = inStream.read();
155 portAddrs.destPort = inStream.read();
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
ZipInputStream.java 32 * Used to read (decompress) the data from zip files.
41 * <p>Although {@code InflaterInputStream} can only read compressed zip
42 * entries, this class can read non-compressed entries as well.
60 * while ((count = zis.read(buffer)) != -1) {
94 * Constructs a new {@code ZipInputStream} to read zip entries from the given input stream.
118 * Closes the current zip entry and prepares to read the next entry.
144 // Ensure all entry bytes are read
222 // Read the signature to see whether there's another local file header.
233 // Read the local file header.
237 throw new ZipException("Cannot read local header version " + version)
293 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { method in class:ZipInputStream
330 int read; local
    [all...]

Completed in 1438 milliseconds

<<31323334353637383940>>