Home
last modified time | relevance | path

Searched refs:mAll (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/libs/incident/src/
DIncidentReportArgs.cpp28 mAll(false) in IncidentReportArgs()
35 mAll(that.mAll) in IncidentReportArgs()
48 err = out->writeInt32(mAll); in writeToParcel()
91 mAll = all; in readFromParcel()
129 mAll = all; in setAll()
138 if (!mAll) { in addSection()
152 return mAll || mSections.find(section) != mSections.end(); in containsSection()
158 if (mAll) { in merge()
160 } else if (that.mAll) { in merge()
161 mAll = true; in merge()
/frameworks/base/core/java/android/os/
DIncidentReportArgs.java38 private boolean mAll; field in IncidentReportArgs
58 out.writeInt(mAll ? 1 : 0); in writeToParcel()
74 mAll = in.readInt() != 0; in readFromParcel()
105 if (mAll) { in toString()
127 mAll = all; in setAll()
137 if (!mAll) { in addSection()
146 return mAll; in isAll()
153 return mAll || mSections.indexOf(section) >= 0; in containsSection()
/frameworks/base/libs/incident/include/android/os/
DIncidentReportArgs.h45 inline bool all() const { return mAll; }; in all()
56 bool mAll; variable