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()
37 mAll(that.mAll), in IncidentReportArgs()
54 err = out->writeInt32(mAll); in writeToParcel()
117 mAll = all; in readFromParcel()
174 mAll = all; in setAll()
189 if (!mAll) { in addSection()
224 return mAll || mSections.find(section) != mSections.end(); in containsSection()
234 if (!mAll) { in merge()
235 if (that.mAll) { in merge()
236 mAll = true; in merge()
/frameworks/base/core/java/android/os/
DIncidentReportArgs.java38 private boolean mAll; field in IncidentReportArgs
64 out.writeInt(mAll ? 1 : 0); in writeToParcel()
86 mAll = in.readInt() != 0; in readFromParcel()
125 if (mAll) { in toString()
150 mAll = all; in setAll()
176 if (!mAll && section > 1) { in addSection()
185 return mAll; in isAll()
192 return mAll || mSections.indexOf(section) >= 0; in containsSection()
/frameworks/base/libs/incident/include_priv/android/os/
DIncidentReportArgs.h58 inline bool all() const { return mAll; } in all()
72 bool mAll; variable