Home
last modified time | relevance | path

Searched refs:readLength (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppObexClientSession.java395 int readLength = 0; in sendFile() local
405 readLength = readFully(a, buffer, outputBufferSize); in sendFile()
415 outputStream.write(buffer, 0, readLength); in sendFile()
417 position += readLength; in sendFile()
450 readLength = a.read(buffer, 0, outputBufferSize); in sendFile()
451 outputStream.write(buffer, 0, readLength); in sendFile()
461 position += readLength; in sendFile()
464 + " readLength " + readLength + " bytes took " in sendFile()
DBluetoothOppObexServerSession.java455 int readLength = 0; in receiveFile() local
462 readLength = is.read(b); in receiveFile()
464 if (readLength == -1) { in receiveFile()
469 bos.write(b, 0, readLength); in receiveFile()
470 position += readLength; in receiveFile()
475 + readLength + " bytes took " in receiveFile()
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Djsoncheckertest.cpp45 size_t readLength = fread(json, 1, length, fp); in ReadFile() local
46 json[readLength] = '\0'; in ReadFile()
Dfilestreamtest.cpp48 size_t readLength = fread(json_, 1, length_, fp); in SetUp() local
49 json_[readLength] = '\0'; in SetUp()
Dprettywritertest.cpp155 size_t readLength = fread(json, 1, size, fp); in TEST() local
156 json[readLength] = '\0'; in TEST()
Dencodedstreamtest.cpp73 size_t readLength = fread(buffer, 1, *outLength, fp); in ReadFile() local
74 buffer[readLength] = '\0'; in ReadFile()
/packages/apps/TV/src/com/android/tv/tuner/source/
DTunerTsStreamer.java107 public int read(byte[] buffer, int offset, int readLength) throws IOException { in read() argument
109 offset, readLength); in read()
DFileTsStreamer.java112 public int read(byte[] buffer, int offset, int readLength) throws IOException { in read() argument
114 offset, readLength); in read()
/packages/apps/TV/src/com/android/tv/tuner/exoplayer/
DExoPlayerSampleExtractor.java119 public int read(byte[] buffer, int offset, int readLength) in ExoPlayerSampleExtractor()
121 return source.read(buffer, offset, readLength); in ExoPlayerSampleExtractor()
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Ddom.md197 size_t readLength = fread(buffer, 1, filesize, fp);
198 buffer[readLength] = '\0';