/frameworks/base/libs/incident/src/ |
D | IncidentReportArgs.cpp | 26 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/ |
D | IncidentReportArgs.h | 39 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/ |
D | IncidentReportArgs.java | 34 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];
|
D | IIncidentManager.aidl | 21 import android.os.IncidentReportArgs; 34 oneway void reportIncident(in IncidentReportArgs args); in reportIncident() 41 oneway void reportIncidentToStream(in IncidentReportArgs args, in reportIncidentToStream()
|
D | IncidentReportArgs.aidl | 19 parcelable IncidentReportArgs cpp_header "android/os/IncidentReportArgs.h";
|
D | IncidentManager.java | 437 public void reportIncident(IncidentReportArgs args) { in reportIncident() 642 private void reportIncidentInternal(IncidentReportArgs args) { in reportIncidentInternal()
|
/frameworks/base/cmds/incidentd/src/ |
D | WorkDirectory.h | 34 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);
|
D | Reporter.h | 47 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);
|
D | IncidentService.h | 57 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,
|
D | IncidentService.cpp | 63 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()
|
D | Reporter.cpp | 70 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()
|
D | PrivacyFilter.h | 95 const IncidentReportArgs& args);
|
D | WorkDirectory.cpp | 268 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()
|
D | Broadcaster.h | 114 status_t send_to_dropbox(const sp<ReportFile>& file, const IncidentReportArgs& args);
|
D | Broadcaster.cpp | 208 IncidentReportArgs args; in sendBroadcasts() 386 const IncidentReportArgs& args) { in send_to_dropbox()
|
D | PrivacyFilter.cpp | 337 const IncidentReportArgs& args) { in filter_and_write_report()
|
/frameworks/base/cmds/statsd/tests/external/ |
D | IncidentReportArgs_test.cpp | 24 IncidentReportArgs args; in TEST() 50 IncidentReportArgs args2; in TEST()
|
/frameworks/base/cmds/incidentd/tests/ |
D | Reporter_test.cpp | 141 TEST_F(ReporterTest, IncidentReportArgs) { in TEST_F() argument 142 IncidentReportArgs args1, args2; in TEST_F()
|
/frameworks/base/libs/incident/ |
D | Android.bp | 51 "src/IncidentReportArgs.cpp",
|
/frameworks/base/cmds/statsd/src/subscriber/ |
D | IncidentdReporter.cpp | 145 IncidentReportArgs incidentReport; in GenerateIncidentReport()
|
/frameworks/base/cmds/incident/ |
D | main.cpp | 250 IncidentReportArgs args; in main()
|
/frameworks/base/api/ |
D | test-lint-baseline.txt | 424 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:
|
D | test-current.txt | 2106 …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…
|
D | system-current.txt | 6044 …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/ |
D | system-current.txt | 5950 …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…
|