OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ReadFully
(Results
1 - 3
of
3
) sorted by null
/art/runtime/base/unix_file/
fd_file.cc
109
bool FdFile::
ReadFully
(void* buffer, int64_t byte_count) {
/external/chromium/base/
platform_file_unittest.cc
15
int
ReadFully
(base::PlatformFile file, int64 offset, char* data, int size) {
155
int bytes_read =
ReadFully
(file, kTestDataSize, data_read_1, kTestDataSize);
160
bytes_read =
ReadFully
(file, kPartialReadOffset, data_read_1, kTestDataSize);
166
bytes_read =
ReadFully
(file, 0, data_read_1, 0);
170
bytes_read =
ReadFully
(file, 0, data_read_1, kTestDataSize);
189
bytes_read =
ReadFully
(file, 0, data_read_2, static_cast<int>(file_size));
229
int bytes_read =
ReadFully
(file, 0, data_read, static_cast<int>(file_size));
243
bytes_read =
ReadFully
(file, 0, data_read, kTestDataSize);
/external/chromium_org/base/
platform_file_unittest.cc
17
int
ReadFully
(PlatformFile file, int64 offset, char* data, int size) {
170
int bytes_read =
ReadFully
(file, kTestDataSize, data_read_1, kTestDataSize);
175
bytes_read =
ReadFully
(file, kPartialReadOffset, data_read_1, kTestDataSize);
181
bytes_read =
ReadFully
(file, 0, data_read_1, 0);
185
bytes_read =
ReadFully
(file, 0, data_read_1, kTestDataSize);
211
bytes_read =
ReadFully
(file, 0, data_read_2, static_cast<int>(file_size));
264
int bytes_read =
ReadFully
(file, 0, data_read_1,
304
int bytes_read =
ReadFully
(file, 0, data_read, static_cast<int>(file_size));
318
bytes_read =
ReadFully
(file, 0, data_read, kTestDataSize);
Completed in 514 milliseconds