Home
last modified time | relevance | path

Searched refs:IncidentReportArgs (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/base/libs/incident/src/
DIncidentReportArgs.cpp26 IncidentReportArgs::IncidentReportArgs() in IncidentReportArgs() function in android::os::IncidentReportArgs
33 IncidentReportArgs::IncidentReportArgs(const IncidentReportArgs& that) in IncidentReportArgs() function in android::os::IncidentReportArgs
43 IncidentReportArgs::~IncidentReportArgs() in ~IncidentReportArgs()
48 IncidentReportArgs::writeToParcel(Parcel* out) const in writeToParcel()
100 IncidentReportArgs::readFromParcel(const Parcel* in) in readFromParcel()
156 IncidentReportArgs::setAll(bool all) in setAll()
165 IncidentReportArgs::setPrivacyPolicy(int privacyPolicy) in setPrivacyPolicy()
171 IncidentReportArgs::addSection(int section) in addSection()
179 IncidentReportArgs::setReceiverPkg(const string& pkg) in setReceiverPkg()
185 IncidentReportArgs::setReceiverCls(const string& cls) in setReceiverCls()
[all …]
/frameworks/base/libs/incident/include/android/os/
DIncidentReportArgs.h39 class IncidentReportArgs : public Parcelable {
41 IncidentReportArgs();
42 IncidentReportArgs(const IncidentReportArgs& that);
43 virtual ~IncidentReportArgs();
63 void merge(const IncidentReportArgs& that);
/frameworks/base/core/java/android/os/
DIncidentReportArgs.java34 public final class IncidentReportArgs implements Parcelable { class
46 public IncidentReportArgs() { in IncidentReportArgs() method in IncidentReportArgs
53 public IncidentReportArgs(Parcel in) { in IncidentReportArgs() method in IncidentReportArgs
107 public static final @android.annotation.NonNull Parcelable.Creator<IncidentReportArgs> CREATOR
108 = new Parcelable.Creator<IncidentReportArgs>() {
109 public IncidentReportArgs createFromParcel(Parcel in) {
110 return new IncidentReportArgs(in);
113 public IncidentReportArgs[] newArray(int size) {
114 return new IncidentReportArgs[size];
DIIncidentManager.aidl21 import android.os.IncidentReportArgs;
34 oneway void reportIncident(in IncidentReportArgs args); in reportIncident()
41 oneway void reportIncidentToStream(in IncidentReportArgs args, in reportIncidentToStream()
DIncidentReportArgs.aidl19 parcelable IncidentReportArgs cpp_header "android/os/IncidentReportArgs.h";
DIncidentManager.java437 public void reportIncident(IncidentReportArgs args) { in reportIncident()
642 private void reportIncidentInternal(IncidentReportArgs args) { in reportIncidentInternal()
/frameworks/base/cmds/incidentd/src/
DWorkDirectory.h34 using android::os::IncidentReportArgs;
42 void get_args_from_report(IncidentReportArgs* out, const ReportFileProto_Report& report);
63 void addReport(const IncidentReportArgs& args);
145 status_t startFilteringData(int writeFd, const IncidentReportArgs& args);
229 IncidentReportArgs* args);
DReporter.h47 IncidentReportArgs args;
49 ReportRequest(const IncidentReportArgs& args, const sp<IIncidentReportStatusListener>& listener,
91 void addPersistedReport(const IncidentReportArgs& args);
96 void addStreamingReport(const IncidentReportArgs& args,
144 void getCombinedPersistedArgs(IncidentReportArgs* results);
DIncidentService.h57 void schedulePersistedReport(const IncidentReportArgs& args);
62 void scheduleStreamingReport(const IncidentReportArgs& args,
120 virtual Status reportIncident(const IncidentReportArgs& args);
122 virtual Status reportIncidentToStream(const IncidentReportArgs& args,
DIncidentService.cpp63 static Status checkIncidentPermissions(const IncidentReportArgs& args) { in checkIncidentPermissions()
151 void ReportHandler::schedulePersistedReport(const IncidentReportArgs& args) { in schedulePersistedReport()
157 void ReportHandler::scheduleStreamingReport(const IncidentReportArgs& args, in scheduleStreamingReport()
246 Status IncidentService::reportIncident(const IncidentReportArgs& args) { in reportIncident()
247 IncidentReportArgs argsCopy(args); in reportIncident()
280 Status IncidentService::reportIncidentToStream(const IncidentReportArgs& args, in reportIncidentToStream()
283 IncidentReportArgs argsCopy(args); in reportIncidentToStream()
318 IncidentReportArgs incidentArgs; in reportIncidentToDumpstate()
396 IncidentReportArgs args; in getIncidentReport()
DReporter.cpp70 static bool contains_section(const IncidentReportArgs& args, int sectionId) { in contains_section()
139 ReportRequest::ReportRequest(const IncidentReportArgs& a, in ReportRequest()
175 void ReportBatch::addPersistedReport(const IncidentReportArgs& args) { in addPersistedReport()
188 void ReportBatch::addStreamingReport(const IncidentReportArgs& args, in addStreamingReport()
260 void ReportBatch::getCombinedPersistedArgs(IncidentReportArgs* result) { in getCombinedPersistedArgs()
635 IncidentReportArgs combinedArgs; in runReport()
DPrivacyFilter.h95 const IncidentReportArgs& args);
DWorkDirectory.cpp268 void ReportFile::addReport(const IncidentReportArgs& args) { in addReport()
393 status_t ReportFile::startFilteringData(int writeFd, const IncidentReportArgs& args) { in startFilteringData()
558 IncidentReportArgs* args) { in getReport()
813 void get_args_from_report(IncidentReportArgs* out, const ReportFileProto_Report& report) { in get_args_from_report()
DBroadcaster.h114 status_t send_to_dropbox(const sp<ReportFile>& file, const IncidentReportArgs& args);
DBroadcaster.cpp208 IncidentReportArgs args; in sendBroadcasts()
386 const IncidentReportArgs& args) { in send_to_dropbox()
DPrivacyFilter.cpp337 const IncidentReportArgs& args) { in filter_and_write_report()
/frameworks/base/cmds/statsd/tests/external/
DIncidentReportArgs_test.cpp24 IncidentReportArgs args; in TEST()
50 IncidentReportArgs args2; in TEST()
/frameworks/base/cmds/incidentd/tests/
DReporter_test.cpp141 TEST_F(ReporterTest, IncidentReportArgs) { in TEST_F() argument
142 IncidentReportArgs args1, args2; in TEST_F()
/frameworks/base/libs/incident/
DAndroid.bp51 "src/IncidentReportArgs.cpp",
/frameworks/base/cmds/statsd/src/subscriber/
DIncidentdReporter.cpp145 IncidentReportArgs incidentReport; in GenerateIncidentReport()
/frameworks/base/cmds/incident/
Dmain.cpp250 IncidentReportArgs args; in main()
/frameworks/base/api/
Dtest-lint-baseline.txt424 GetterSetterNames: android.os.IncidentReportArgs#isAll():
1204 MissingNullability: android.os.IncidentManager#reportIncident(android.os.IncidentReportArgs) parame…
1216 MissingNullability: android.os.IncidentReportArgs#IncidentReportArgs(android.os.Parcel) parameter #…
1218 MissingNullability: android.os.IncidentReportArgs#addHeader(byte[]) parameter #0:
1220 MissingNullability: android.os.IncidentReportArgs#readFromParcel(android.os.Parcel) parameter #0:
1222 MissingNullability: android.os.IncidentReportArgs#writeToParcel(android.os.Parcel, int) parameter #…
2427 ParcelConstructor: android.os.IncidentReportArgs#IncidentReportArgs(android.os.Parcel):
2729 UserHandleName: android.os.IncidentReportArgs:
Dtest-current.txt2106 …anifest.permission.PACKAGE_USAGE_STATS}) public void reportIncident(android.os.IncidentReportArgs);
2139 public final class IncidentReportArgs implements android.os.Parcelable {
2140 ctor public IncidentReportArgs();
2141 ctor public IncidentReportArgs(android.os.Parcel);
2152 …field @NonNull public static final android.os.Parcelable.Creator<android.os.IncidentReportArgs> CR…
Dsystem-current.txt6044 …anifest.permission.PACKAGE_USAGE_STATS}) public void reportIncident(android.os.IncidentReportArgs);
6077 public final class IncidentReportArgs implements android.os.Parcelable {
6078 ctor public IncidentReportArgs();
6079 ctor public IncidentReportArgs(android.os.Parcel);
6090 …field @NonNull public static final android.os.Parcelable.Creator<android.os.IncidentReportArgs> CR…
/frameworks/base/non-updatable-api/
Dsystem-current.txt5950 …anifest.permission.PACKAGE_USAGE_STATS}) public void reportIncident(android.os.IncidentReportArgs);
5983 public final class IncidentReportArgs implements android.os.Parcelable {
5984 ctor public IncidentReportArgs();
5985 ctor public IncidentReportArgs(android.os.Parcel);
5996 …field @NonNull public static final android.os.Parcelable.Creator<android.os.IncidentReportArgs> CR…

12