Searched refs:AIncidentReportArgs (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/libs/incident/include/incident/ |
D | incident_report.h | 30 struct AIncidentReportArgs; 36 typedef struct AIncidentReportArgs AIncidentReportArgs; typedef 69 AIncidentReportArgs* AIncidentReportArgs_init(); 74 AIncidentReportArgs* AIncidentReportArgs_clone(AIncidentReportArgs* that); 79 void AIncidentReportArgs_delete(AIncidentReportArgs* args); 84 void AIncidentReportArgs_setAll(AIncidentReportArgs* args, bool all); 89 void AIncidentReportArgs_setPrivacyPolicy(AIncidentReportArgs* args, int privacyPolicy); 95 void AIncidentReportArgs_addSection(AIncidentReportArgs* args, int section); 101 void AIncidentReportArgs_setReceiverPackage(AIncidentReportArgs* args, char const* pkg); 108 void AIncidentReportArgs_setReceiverClass(AIncidentReportArgs* args, char const* cls); [all …]
|
/frameworks/base/libs/incident/src/ |
D | incident_report.cpp | 34 AIncidentReportArgs* AIncidentReportArgs_init() { in AIncidentReportArgs_init() 35 return reinterpret_cast<AIncidentReportArgs*>(new IncidentReportArgs()); in AIncidentReportArgs_init() 38 AIncidentReportArgs* AIncidentReportArgs_clone(AIncidentReportArgs* that) { in AIncidentReportArgs_clone() 39 return reinterpret_cast<AIncidentReportArgs*>( in AIncidentReportArgs_clone() 43 void AIncidentReportArgs_delete(AIncidentReportArgs* args) { in AIncidentReportArgs_delete() 47 void AIncidentReportArgs_setAll(AIncidentReportArgs* args, bool all) { in AIncidentReportArgs_setAll() 51 void AIncidentReportArgs_setPrivacyPolicy(AIncidentReportArgs* args, int privacyPolicy) { in AIncidentReportArgs_setPrivacyPolicy() 55 void AIncidentReportArgs_addSection(AIncidentReportArgs* args, int section) { in AIncidentReportArgs_addSection() 59 void AIncidentReportArgs_setReceiverPackage(AIncidentReportArgs* args, char const* pkg) { in AIncidentReportArgs_setReceiverPackage() 63 void AIncidentReportArgs_setReceiverClass(AIncidentReportArgs* args, char const* cls) { in AIncidentReportArgs_setReceiverClass() [all …]
|
/frameworks/base/libs/incident/tests/ |
D | IncidentReportRequest_test.cpp | 40 inline AIncidentReportArgs* getImpl() { in getImpl() 78 AIncidentReportArgs* mImpl;
|