Searched defs:IncidentReportArgs (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/libs/incident/src/
H A DIncidentReportArgs.cpp19 #include <android/os/IncidentReportArgs.h>
26 IncidentReportArgs::IncidentReportArgs() function in class:android::os::IncidentReportArgs
32 IncidentReportArgs::IncidentReportArgs(const IncidentReportArgs& that) function in class:android::os::IncidentReportArgs
39 IncidentReportArgs::~IncidentReportArgs()
44 IncidentReportArgs::writeToParcel(Parcel* out) const
81 IncidentReportArgs
[all...]
/frameworks/base/libs/incident/include/android/os/
H A DIncidentReportArgs.h32 class IncidentReportArgs : public Parcelable { class in namespace:android::os
34 IncidentReportArgs();
35 explicit IncidentReportArgs(const IncidentReportArgs& that);
36 virtual ~IncidentReportArgs();
51 void merge(const IncidentReportArgs& that);
/frameworks/base/core/java/android/os/
H A DIncidentReportArgs.java34 public final class IncidentReportArgs implements Parcelable { class in inherits:Parcelable
43 public IncidentReportArgs() { method in class:IncidentReportArgs
49 public IncidentReportArgs(Parcel in) { method in class:IncidentReportArgs
89 public static final Parcelable.Creator<IncidentReportArgs> CREATOR
90 = new Parcelable.Creator<IncidentReportArgs>() {
91 public IncidentReportArgs createFromParcel(Parcel in) {
92 return new IncidentReportArgs(in);
95 public IncidentReportArgs[] newArray(int size) {
96 return new IncidentReportArgs[size];
169 public static IncidentReportArgs parseSettin
[all...]

Completed in 515 milliseconds