HomeSort by relevance Sort by last modified time
    Searched defs:NullFile (Results 1 - 2 of 2) sorted by null

  /art/runtime/base/unix_file/
null_file.h 28 // descriptor. NullFile is "free".
31 class NullFile : public RandomAccessFile {
33 NullFile();
34 virtual ~NullFile();
45 DISALLOW_COPY_AND_ASSIGN(NullFile);
null_file.cc 22 NullFile::NullFile() {
25 NullFile::~NullFile() {
28 int NullFile::Close() {
32 int NullFile::Flush() {
36 int64_t NullFile::Read(char* buf, int64_t byte_count, int64_t offset) const {
43 int NullFile::SetLength(int64_t new_length) {
50 int64_t NullFile::GetLength() const {
54 int64_t NullFile::Write(const char* buf, int64_t byte_count, int64_t offset)
    [all...]

Completed in 234 milliseconds