HomeSort by relevance Sort by last modified time
    Searched refs:actually_read (Results 1 - 3 of 3) sorted by null

  /frameworks/compile/libbcc/bcinfo/Wrap/
bitcode_wrapperer.cpp 143 int actually_read = infile_->Read(&buffer_[buffer_size_], needed); local
147 if (actually_read) {
148 buffer_size_ += actually_read;
149 needed -= actually_read;
  /system/core/fastboot/
engine.c 202 ssize_t actually_read = read(fd, (char*)buffer+count, size-count); local
204 if (actually_read == 0) {
207 if (actually_read < 0) {
216 count += actually_read;
  /external/v8/preparser/
preparser-process.cc 104 size_t actually_read = fread(buffer, 1, length, source); local
105 return (actually_read == length);

Completed in 430 milliseconds