HomeSort by relevance Sort by last modified time
    Searched defs:read (Results 151 - 175 of 3357) sorted by null

1 2 3 4 5 67 8 91011>>

  /device/google/contexthub/util/common/
ring.cpp 69 ssize_t RingBuffer::read(sensors_event_t *ev, size_t size) { function in class:android::RingBuffer
  /device/google/marlin/dataservices/datatop/src/
datatop_fileops.c 51 * @param file File which is read from
52 * @param buffer Pointer to buffer where data will be read. The buffer is allocated
55 * @param len Maximum amount of data which should be read from the file.
60 int read; local
77 read = fread(*buffer, sizeof(char), len, fp);
80 return read;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
multifile.py 13 "read some lines from fp"
16 "read lines from fp until it returns an empty string" (A)
19 "read remaining lines from fp until it returns an empty string"
120 def read(self): # Note: no size argument -- read until EOF only! member in class:MultiFile
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 79 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/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
LimitedInputStreamTest.java 36 public int read() throws IOException { method in class:LimitedInputStreamTest.ForeverInputStream
41 public int read(byte[] b) throws IOException { method in class:LimitedInputStreamTest.ForeverInputStream
46 public int read(byte[] b, int off, int len) throws IOException { method in class:LimitedInputStreamTest.ForeverInputStream
55 Assert.assertEquals(-1, stream.read());
62 Assert.assertEquals(0, stream.read());
63 Assert.assertEquals(-1, stream.read());
70 Assert.assertEquals(100, stream.read(new byte[1000]));
71 Assert.assertEquals(-1, stream.read());
  /external/autotest/client/cros/
gpio.py 25 print gpio.read(gpio.DEVELOPER_SWITCH_CURRENT)
70 def read(self, name): member in class:Gpio
75 name: the name of property to read.
79 debug_title = "Gpio.read('%s'): " % name
89 value = pipe.read()
93 debug_info = temp_handle.read()
118 gpio.read(gpio.DEVELOPER_SWITCH_CURRENT))
kernel_trace.py 15 results = trace.read(regexp=r'frequency=(\d+)')
24 read : Reads trace buffer returns list of
35 _buffer_ptr : integer pointing to last byte read
178 def read(self, regexp=None): member in class:KernelTrace
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ConstructedOctetStream.java 20 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();
DefiniteLengthInputStream.java 42 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);
IndefiniteLengthInputStream.java 22 _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/
DigestInputStream.java 22 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);
MacInputStream.java 22 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/brotli/java/org/brotli/dec/
SetDictionaryTest.java 49 assertEquals(3, decoder.read(buffer, 0, buffer.length));
57 decoder.read(buffer, 0, buffer.length);
72 assertEquals(4, decoder.read(buffer, 0, buffer.length));
  /external/brotli/java/org/brotli/wrapper/dec/
BrotliDecoderChannel.java 53 public int read(ByteBuffer dst) throws IOException { method in class:BrotliDecoderChannel
  /external/caliper/caliper/src/main/java/com/google/caliper/json/
ImmutableListTypeAdatperFactory.java 60 @Override public T read(JsonReader in) throws IOException { method in class:ImmutableListTypeAdatperFactory
61 ArrayList<?> arrayList = arrayListAdapter.read(in);
ImmutableMapTypeAdapterFactory.java 60 @Override public T read(JsonReader in) throws IOException { method in class:ImmutableMapTypeAdapterFactory
61 HashMap<?, ?> hashMap = hashMapAdapter.read(in);
  /external/clang/test/Analysis/
taint-tester.cpp 21 ssize_t read; local
24 while ((read = T.getline(&line, &len, stdin)) != -1) {
  /external/clang/test/OpenMP/
atomic_messages.cpp 39 T read() { function
41 // Test for atomic read
42 #pragma omp atomic read
43 // expected-error@+2 {{the statement for 'atomic read' must be an expression statement of form 'v = x;', where v and x are both lvalue expressions with scalar type}}
46 #pragma omp atomic read
47 // expected-error@+2 {{the statement for 'atomic read' must be an expression statement of form 'v = x;', where v and x are both lvalue expressions with scalar type}}
50 #pragma omp atomic read
51 // expected-error@+2 2 {{the statement for 'atomic read' must be an expression statement of form 'v = x;', where v and x are both lvalue expressions with scalar type}}
54 #pragma omp atomic read
55 // expected-error@+2 {{the statement for 'atomic read' must be an expression statement of form 'v = x;', where v and x are both lvalue expressions with (…)
71 int read() { function
    [all...]
  /external/conscrypt/testing/src/main/java/libcore/tlswire/handshake/
HandshakeMessage.java 34 public static HandshakeMessage read(DataInput in) throws IOException { method in class:HandshakeMessage
  /external/deqp/framework/common/
tcuResource.cpp 61 void FileResource::read (deUint8* dst, int numBytes) function in class:tcu::FileResource
  /external/deqp/framework/platform/android/
tcuAndroidAssets.cpp 60 void AssetResource::read (deUint8* dst, int numBytes) function in class:tcu::Android::AssetResource
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
Pipe.java 39 * Read at most "count" number of samples into array "buffer", starting from index "offset".
40 * If the available samples to read is smaller than count, just read as much as it can and
41 * return the amount of samples read (non-blocking). offset + count must be <= buffer.length.
43 public abstract int read(short[] buffer, int offset, int count); method in class:Pipe
46 /** Return the amount of samples available to read. */
  /external/flac/include/FLAC/
callback.h 91 /** Signature for the read callback.
95 * \param ptr The address of the read buffer.
96 * \param size The size of the records to be read.
97 * \param nmemb The number of records to be read.
100 * The number of records read.
171 FLAC__IOCallback_Read read; member in struct:__anon20561
  /external/fonttools/Lib/fontTools/misc/
xmlReader.py 25 def read(self): member in class:XMLReader
42 chunk = file.read(BUFSIZE)
68 subReader.read()
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
StreamEncoder.java 22 int read; local
23 while ((read = data.read(buffer)) != -1) {
24 os.write(buffer, 0, read);

Completed in 365 milliseconds

1 2 3 4 5 67 8 91011>>