OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mMaxNum
(Results
1 - 3
of
3
) sorted by null
/frameworks/av/services/mediaresourcemanager/
ServiceLog.cpp
30
ServiceLog::ServiceLog() :
mMaxNum
(kDefaultMaxNum), mLogs(
mMaxNum
) {}
31
ServiceLog::ServiceLog(size_t maxNum) :
mMaxNum
(maxNum), mLogs(
mMaxNum
) {}
47
if (mLogs.size() ==
mMaxNum
) {
ServiceLog.h
39
size_t
mMaxNum
;
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
ByteArrayPool.java
31
private final int
mMaxNum
;
35
mMaxNum
= maxNum;
36
mCachedBuf = new ArrayList<byte[]>(
mMaxNum
);
67
if (mCachedBuf.size() <
mMaxNum
) {
76
if (mCachedBuf.size() ==
mMaxNum
) {
Completed in 68 milliseconds