OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mBaseLength
(Results
1 - 2
of
2
) sorted by null
/system/core/libutils/
FileMap.cpp
51
: mFileName(NULL), mBasePtr(NULL),
mBaseLength
(0),
58
: mFileName(other.mFileName), mBasePtr(other.mBasePtr),
mBaseLength
(other.
mBaseLength
),
77
mBaseLength
= other.
mBaseLength
;
108
if (mBasePtr && munmap(mBasePtr,
mBaseLength
) != 0) {
109
ALOGD("munmap(%p, %zu) failed\n", mBasePtr,
mBaseLength
);
201
mBaseLength
= adjLength;
209
mBasePtr,
mBaseLength
, mDataPtr, mDataLength);
231
cc = madvise(mBasePtr,
mBaseLength
, sysAdvice)
[
all
...]
/system/core/libutils/include/utils/
FileMap.h
115
size_t
mBaseLength
; // length, measured from "mBasePtr"
Completed in 648 milliseconds