OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full: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
248
ssize_t
actually_read
= read(fd, (char*)buffer+count, size-count);
local
250
if (
actually_read
== 0) {
253
if (
actually_read
< 0) {
262
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 58 milliseconds