/prebuilts/go/linux-x86/src/bytes/ |
buffer.go | 360 // ReadBytes reads until the first occurrence of delim in the input, 362 // If ReadBytes encounters an error before finding a delimiter, 364 // ReadBytes returns err != nil if and only if the returned data does not end in 366 func (b *Buffer) ReadBytes(delim byte) (line []byte, err error) { 374 // readSlice is like ReadBytes but returns a reference to internal buffer data.
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/ |
wire_format_lite.h | 315 static bool ReadBytes(input, string* value); 316 static bool ReadBytes(input, string** p); 680 // call ReadBytes(). 684 return ReadBytes(input, value); 689 return ReadBytes(input, p);
|
/external/libchrome/base/ |
pickle.cc | 200 return ReadBytes(data, *length); 203 bool PickleIterator::ReadBytes(const char** data, int length) {
|
pickle.h | 60 // number of bytes to read, and ReadBytes will validate this length. The 64 bool ReadBytes(const char** data, int length) WARN_UNUSED_RESULT;
|
/external/libchrome/base/trace_event/ |
trace_event_argument.cc | 56 bool res = pickle_iterator.ReadBytes(&type, 1); 358 while (it.ReadBytes(&type, 1)) {
|
/external/sonic/ |
wave.c | 86 static int readBytes( 338 bytesRead = readBytes(file, bytes, maxSamples*file->numChannels*2);
|
/libcore/ojluni/src/main/java/sun/nio/cs/ |
StreamDecoder.java | 270 private int readBytes() throws IOException { 350 int n = readBytes();
|
/external/google-breakpad/src/common/mac/ |
macho_walker.h | 70 bool ReadBytes(void *buffer, size_t size, off_t offset);
|
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/ |
NettyHttpClient.java | 180 byteBuf.readBytes(buffer, 0, Math.min(buffer.length, toRead));
|
/external/parameter-framework/upstream/parameter/ |
ParameterBlackboard.cpp | 105 void CParameterBlackboard::readBytes(std::vector<uint8_t> &bytes, size_t offset) const
|
/external/sfntly/cpp/src/sfntly/ |
font_factory.cc | 205 rfd->ReadBytes(0, &(tag[0]), 0, tag.size());
|
/external/sfntly/cpp/src/sfntly/table/core/ |
os2_table.cc | 171 data_->ReadBytes(Offset::kPanose, &((*value)[0]), 0, 10); 194 data_->ReadBytes(Offset::kAchVendId, &((*b)[0]), 0, 4); 420 InternalReadData()->ReadBytes(Offset::kPanose, 473 InternalReadData()->ReadBytes(Offset::kAchVendId, &((*b)[0]), 0, 4);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_byte_stream.h | 51 u32 *readBytes);
|
h264bsd_decoder.h | 62 u32 *readBytes);
|
/frameworks/base/drm/java/android/drm/ |
DrmInfo.java | 73 mData = DrmUtils.readBytes(path);
|
DrmRights.java | 99 mData = DrmUtils.readBytes(rightsFile);
|
/frameworks/base/obex/javax/obex/ |
PrivateOutputStream.java | 127 public synchronized byte[] readBytes(int size) {
|
/hardware/bsp/intel/peripheral/libupm/src/ds1307/ |
ds1307.h | 128 int readBytes(uint8_t reg, uint8_t *buffer, int len);
|
/libcore/ojluni/src/main/native/ |
io_util.c | 77 readBytes(JNIEnv *env, jobject this, jbyteArray bytes,
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
BinaryDictionaryFileDumper.java | 485 for (int readBytes = input.read(buffer); readBytes >= 0; readBytes = input.read(buffer)) { 486 output.write(buffer, 0, readBytes);
|
/external/guava/guava-tests/test/com/google/common/io/ |
ByteStreamsTest.java | 437 assertEquals(array, ByteStreams.readBytes( 460 ByteStreams.readBytes(new ByteArrayInputStream(array),
|
/external/webrtc/talk/media/base/ |
testutils.cc | 71 ret &= buf->ReadBytes(payload, sizeof(payload)); 106 ret &= buf->ReadBytes(payload, sizeof(payload));
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
AbstractFakeFileSystemTestCase.groovy | 166 byte[] bytes = IoUtil.readBytes(input)
|
/external/sfntly/cpp/src/sfntly/data/ |
readable_font_data.cc | 82 int32_t ReadableFontData::ReadBytes(int32_t index,
|
/hardware/bsp/intel/peripheral/libupm/src/m24lr64e/ |
m24lr64e.cxx | 207 int M24LR64E::readBytes(unsigned int address, uint8_t* buffer, int len)
|