/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 | 33 public final class IncidentReportArgs implements Parcelable { class 45 public IncidentReportArgs() { in IncidentReportArgs() method in IncidentReportArgs 52 public IncidentReportArgs(Parcel in) { in IncidentReportArgs() method in IncidentReportArgs 106 public static final @android.annotation.NonNull Parcelable.Creator<IncidentReportArgs> CREATOR 107 = new Parcelable.Creator<IncidentReportArgs>() { 108 public IncidentReportArgs createFromParcel(Parcel in) { 109 return new IncidentReportArgs(in); 112 public IncidentReportArgs[] newArray(int size) { 113 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 | 64 static Status checkIncidentPermissions(const IncidentReportArgs& args) { in checkIncidentPermissions() 152 void ReportHandler::schedulePersistedReport(const IncidentReportArgs& args) { in schedulePersistedReport() 158 void ReportHandler::scheduleStreamingReport(const IncidentReportArgs& args, in scheduleStreamingReport() 247 Status IncidentService::reportIncident(const IncidentReportArgs& args) { in reportIncident() 248 IncidentReportArgs argsCopy(args); in reportIncident() 281 Status IncidentService::reportIncidentToStream(const IncidentReportArgs& args, in reportIncidentToStream() 284 IncidentReportArgs argsCopy(args); in reportIncidentToStream() 364 IncidentReportArgs args; in getIncidentReport() 562 IncidentReportArgs incidentArgs; in dump()
|
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 | 146 IncidentReportArgs incidentReport; in GenerateIncidentReport()
|
/frameworks/base/cmds/incident/ |
D | main.cpp | 226 IncidentReportArgs args; in main()
|
/frameworks/base/api/ |
D | test-current.txt | 1855 …anifest.permission.PACKAGE_USAGE_STATS}) public void reportIncident(android.os.IncidentReportArgs); 1888 public final class IncidentReportArgs implements android.os.Parcelable { 1889 ctor public IncidentReportArgs(); 1890 ctor public IncidentReportArgs(android.os.Parcel); 1901 …field @NonNull public static final android.os.Parcelable.Creator<android.os.IncidentReportArgs> CR…
|
D | system-current.txt | 5317 …anifest.permission.PACKAGE_USAGE_STATS}) public void reportIncident(android.os.IncidentReportArgs); 5350 public final class IncidentReportArgs implements android.os.Parcelable { 5351 ctor public IncidentReportArgs(); 5352 ctor public IncidentReportArgs(android.os.Parcel); 5363 …field @NonNull public static final android.os.Parcelable.Creator<android.os.IncidentReportArgs> CR…
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 53799 Landroid/os/IIncidentManager$Stub$Proxy;->reportIncident(Landroid/os/IncidentReportArgs;)V 53800 Landroid/os/IIncidentManager$Stub$Proxy;->reportIncidentToStream(Landroid/os/IncidentReportArgs;Lan… 53810 Landroid/os/IIncidentManager;->reportIncident(Landroid/os/IncidentReportArgs;)V 53811 Landroid/os/IIncidentManager;->reportIncidentToStream(Landroid/os/IncidentReportArgs;Landroid/os/II… 54001 Landroid/os/IncidentManager;->reportIncidentInternal(Landroid/os/IncidentReportArgs;)V 54072 Landroid/os/IncidentReportArgs;->DEST_AUTO:I 54073 Landroid/os/IncidentReportArgs;->DEST_EXPLICIT:I 54074 Landroid/os/IncidentReportArgs;->mAll:Z 54075 Landroid/os/IncidentReportArgs;->mDest:I 54076 Landroid/os/IncidentReportArgs;->mHeaders:Ljava/util/ArrayList; [all …]
|