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

  /build/tools/releasetools/
sparse_img.py 141 this_read = min(remain, to_read)
145 yield f.read(this_read * self.blocksize)
147 yield fill_data * (this_read * (self.blocksize >> 2))
148 to_read -= this_read
154 this_read = min(chunk_len, to_read)
157 yield f.read(this_read * self.blocksize)
159 yield fill_data * (this_read * (self.blocksize >> 2))
160 to_read -= this_read
  /bootable/recovery/uncrypt/
uncrypt.c 276 ssize_t this_read = read(fd, buffers[tail] + so_far, sb.st_blksize - so_far); local
277 if (this_read < 0) {
281 so_far += this_read;
282 pos += this_read;

Completed in 62 milliseconds