OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReadFully
(Results
1 - 7
of
7
) sorted by null
/art/runtime/base/unix_file/
fd_file.h
62
bool
ReadFully
(void* buffer, int64_t byte_count);
fd_file.cc
109
bool FdFile::
ReadFully
(void* buffer, int64_t byte_count) {
/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);
/art/compiler/
output_stream_test.cc
69
bool readSuccess = in->
ReadFully
(&actual[0], actual.size());
84
bool readSuccess = in->
ReadFully
(&actual[0], actual.size());
image_test.cc
89
file->
ReadFully
(&image_header, sizeof(image_header));
/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);
/art/runtime/gc/space/
image_space.cc
178
bool success = file->
ReadFully
(&image_header, sizeof(image_header));
Completed in 150 milliseconds