Searched refs:byte_count (Results 1 - 4 of 4) sorted by relevance

/system/core/adb/
H A Dadb_utils.cpp66 void dump_hex(const void* data, size_t byte_count) { argument
67 byte_count = std::min(byte_count, size_t(16));
72 for (size_t i = 0; i < byte_count; ++i) {
77 for (size_t i = 0; i < byte_count; ++i) {
H A Dadb_utils.h27 void dump_hex(const void* ptr, size_t byte_count);
/system/core/base/include/base/
H A Dfile.h37 bool ReadFully(int fd, void* data, size_t byte_count);
38 bool WriteFully(int fd, const void* data, size_t byte_count);
/system/core/base/
H A Dfile.cpp123 bool ReadFully(int fd, void* data, size_t byte_count) { argument
125 size_t remaining = byte_count;
135 bool WriteFully(int fd, const void* data, size_t byte_count) { argument
137 size_t remaining = byte_count;

Completed in 399 milliseconds