/prebuilts/go/linux-x86/src/cmd/yacc/testdata/expr/ |
expr.y | 192 line, err := in.ReadBytes('\n') 197 log.Fatalf("ReadBytes: %s", err)
|
/external/llvm/lib/Support/ |
MemoryBuffer.cpp | 231 ssize_t ReadBytes; 235 ReadBytes = read(FD, Buffer.end(), ChunkSize); 236 if (ReadBytes == -1) { 240 Buffer.set_size(Buffer.size() + ReadBytes); 241 } while (ReadBytes != 0);
|
/frameworks/base/core/java/android/os/ |
DropBoxManager.java | 198 int readBytes = 0; 200 while (n >= 0 && (readBytes += n) < maxBytes) { 201 n = is.read(buf, readBytes, maxBytes - readBytes); 203 return new String(buf, 0, readBytes);
|
MemoryFile.java | 198 public int readBytes(byte[] buffer, int srcOffset, int destOffset, int count) 305 // readBytes() also does this check, but we need to do it before 313 int result = readBytes(buffer, mOffset, offset, count);
|
/device/htc/flounder/sensor_hub/libsensors/ |
CwMcuSensor.cpp | [all...] |
/external/google-breakpad/src/processor/ |
minidump.cc | 451 if (!minidump_->ReadBytes(context_amd64.get(), 553 if (!minidump_->ReadBytes(&context_flags, sizeof(context_flags))) { 587 if (!minidump_->ReadBytes(context_after_flags, 650 if (!minidump_->ReadBytes(&context_flags, sizeof(context_flags))) { 684 if (!minidump_->ReadBytes(context_after_flags, 730 if (!minidump_->ReadBytes(&context_flags, sizeof(context_flags))) { 781 if (!minidump_->ReadBytes(context_after_flags, 854 if (!minidump_->ReadBytes(context_after_flags, [all...] |
/external/parameter-framework/upstream/test/functional-tests/ |
Handle.cpp | 318 static Bytes readBytes(const string &strBytes) 451 CHECK(showBytes(readBytes(testBasicSettingsBytes)) == testBasicSettingsBytes); 468 REQUIRE_NOTHROW(root.setAsBytes(readBytes(rootTestSettings))); 483 REQUIRE_NOTHROW(basicParams.setAsBytes(readBytes(testBasicSettingsBytes))); 496 REQUIRE_NOTHROW(elem0.setAsBytes(readBytes(testBasicSettingsBytes))); 511 REQUIRE_NOTHROW(root.setAsBytes(readBytes(rootBytesSettings))); 532 REQUIRE_NOTHROW(basicParams.setAsBytes(readBytes(testBasicSettingsBytes)));
|
/prebuilts/go/darwin-x86/src/bufio/ |
bufio.go | 301 // ReadBytes or ReadString instead. 341 // ReadBytes('\n') or ReadString('\n') instead or use a Scanner. 391 // ReadBytes reads until the first occurrence of delim in the input, 393 // If ReadBytes encounters an error before finding a delimiter, 395 // ReadBytes returns err != nil if and only if the returned data does not end in 398 func (b *Reader) ReadBytes(delim byte) (line []byte, err error) { 446 bytes, err := b.ReadBytes(delim)
|
/prebuilts/go/linux-x86/src/bufio/ |
bufio.go | 301 // ReadBytes or ReadString instead. 341 // ReadBytes('\n') or ReadString('\n') instead or use a Scanner. 391 // ReadBytes reads until the first occurrence of delim in the input, 393 // If ReadBytes encounters an error before finding a delimiter, 395 // ReadBytes returns err != nil if and only if the returned data does not end in 398 func (b *Reader) ReadBytes(delim byte) (line []byte, err error) { 446 bytes, err := b.ReadBytes(delim)
|
/external/deqp/execserver/tools/ |
xsClient.cpp | 84 void readBytes (de::Socket& socket, vector<deUint8>& dst, size_t numBytes) 105 readBytes(socket, header, MESSAGE_HEADER_SIZE); 121 readBytes(socket, messageBuf, messageSize-MESSAGE_HEADER_SIZE);
|
/external/llvm/tools/lli/ |
RemoteTargetExternal.cpp | 215 if (!ReadBytes(&MsgType, 4)) { 242 if (!ReadBytes(&DataSize, 4)) { 259 if (!ReadBytes(ReceiveData[I], Sizes[I])) {
|
/cts/tools/dex-tools/src/dex/reader/ |
DexBuffer.java | 71 public void readBytes(byte[] dst) {
|
/external/libchrome/base/ |
pickle_unittest.cc | 503 // Check that ReadBytes works properly with an iterator initialized to NULL. 504 TEST(PickleTest, ReadBytes) { 511 EXPECT_TRUE(iter.ReadBytes(&outdata_char, sizeof(data))); 570 EXPECT_TRUE(iter.ReadBytes(&out_data, out_data_length));
|
/external/llvm/include/llvm/Support/ |
StreamingMemoryObject.h | 29 uint64_t readBytes(uint8_t *Buf, uint64_t Size,
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
RetrCommandHandler.java | 70 bytes = IoUtil.readBytes(input);
|
/external/parameter-framework/upstream/parameter/ |
ParameterBlackboard.h | 83 void readBytes(std::vector<uint8_t> &bytes, size_t offset) const;
|
/external/webrtc/webrtc/base/ |
bytebuffer.h | 55 bool ReadBytes(char* val, size_t len);
|
/hardware/bsp/intel/peripheral/libupm/src/mpr121/ |
mpr121.h | 105 int readBytes(uint8_t reg, uint8_t *buffer, int len);
|
/hardware/bsp/intel/peripheral/libupm/src/nunchuck/ |
nunchuck.h | 98 int readBytes(uint8_t reg, uint8_t *buffer, int len);
|
/libcore/luni/src/main/java/libcore/io/ |
Posix.java | 159 bytesRead = readBytes(fd, buffer, position, buffer.remaining()); 161 bytesRead = readBytes(fd, NioUtils.unsafeArray(buffer), NioUtils.unsafeArrayOffset(buffer) + position, buffer.remaining()); 169 return readBytes(fd, bytes, byteOffset, byteCount); 171 private native int readBytes(FileDescriptor fd, Object buffer, int offset, int byteCount) throws ErrnoException, InterruptedIOException;
|
/libcore/ojluni/src/main/native/ |
io_util.h | 50 jint readBytes(JNIEnv *env, jobject this, jbyteArray bytes, jint off,
|
/frameworks/base/services/core/java/com/android/server/ |
GraphicsStatsService.java | 177 buffer.mProcessBuffer.readBytes(mTempBuffer, 0, 0, ASHMEM_SIZE); 240 file.readBytes(mBuffer, 0, 0, ASHMEM_SIZE);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_decoder.c | 137 readBytes number of bytes read from the stream is stored 152 u32 *readBytes) 171 ASSERT(readBytes); 180 *readBytes = pStorage->prevBytesConsumed; 184 tmp = h264bsdExtractNalUnit(byteStrm, len, &strm, readBytes); 192 pStorage->prevBytesConsumed = *readBytes; 255 * readBytes to 0 */ 256 *readBytes = 0; 353 *readBytes = 0;
|
/external/jmdns/src/javax/jmdns/impl/ |
DNSIncoming.java | 66 public byte[] readBytes(int len) { 300 rec = new DNSRecord.IPv4Address(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len)); 303 rec = new DNSRecord.IPv6Address(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len)); 316 rec = new DNSRecord.Text(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len)); 366 optiondata = _messageInputStream.readBytes(optionLength);
|
/prebuilts/go/darwin-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.
|