Home
last modified time | relevance | path

Searched refs:BreakpadRef (Results 1 – 8 of 8) sorted by relevance

/external/google-breakpad/src/client/ios/
DBreakpad.h40 typedef void *BreakpadRef; typedef
158 BreakpadRef BreakpadCreate(NSDictionary *parameters);
161 void BreakpadRelease(BreakpadRef ref);
182 void BreakpadSetKeyValue(BreakpadRef ref, NSString *key, NSString *value);
183 NSString *BreakpadKeyValue(BreakpadRef ref, NSString *key);
184 void BreakpadRemoveKeyValue(BreakpadRef ref, NSString *key);
190 void BreakpadAddUploadParameter(BreakpadRef ref, NSString *key,
195 void BreakpadRemoveUploadParameter(BreakpadRef ref, NSString *key);
200 int BreakpadGetCrashReportCount(BreakpadRef ref);
203 NSDictionary *BreakpadGetNextReportConfiguration(BreakpadRef ref);
[all …]
DBreakpadController.h48 BreakpadRef breakpadRef_;
105 - (void)withBreakpadRef:(void(^)(BreakpadRef))callback;
137 withBreakpadRef:(BreakpadRef)ref;
DBreakpad.mm597 BreakpadRef BreakpadCreate(NSDictionary *parameters) {
650 return (BreakpadRef)breakpad;
676 void BreakpadRelease(BreakpadRef ref) {
711 void BreakpadSetKeyValue(BreakpadRef ref, NSString *key, NSString *value) {
726 void BreakpadAddUploadParameter(BreakpadRef ref,
749 void BreakpadRemoveUploadParameter(BreakpadRef ref,
767 NSString *BreakpadKeyValue(BreakpadRef ref, NSString *key) {
788 void BreakpadRemoveKeyValue(BreakpadRef ref, NSString *key) {
804 int BreakpadGetCrashReportCount(BreakpadRef ref) {
819 void BreakpadUploadNextReport(BreakpadRef ref) {
[all …]
DBreakpadController.mm160 withBreakpadRef:(BreakpadRef)ref { argument
251 - (void)withBreakpadRef:(void(^)(BreakpadRef))callback { argument
/external/google-breakpad/src/client/mac/Framework/
DBreakpad.h48 typedef void *BreakpadRef; typedef
229 BreakpadRef BreakpadCreate(NSDictionary *parameters);
232 void BreakpadRelease(BreakpadRef ref);
239 void BreakpadSetFilterCallback(BreakpadRef ref,
262 void BreakpadSetKeyValue(BreakpadRef ref, NSString *key, NSString *value);
263 NSString *BreakpadKeyValue(BreakpadRef ref, NSString *key);
264 void BreakpadRemoveKeyValue(BreakpadRef ref, NSString *key);
270 void BreakpadAddUploadParameter(BreakpadRef ref, NSString *key,
275 void BreakpadRemoveUploadParameter(BreakpadRef ref, NSString *key);
278 void BreakpadAddLogFile(BreakpadRef ref, NSString *logPathname);
[all …]
DBreakpad.mm778 BreakpadRef BreakpadCreate(NSDictionary *parameters) {
831 return (BreakpadRef)breakpad;
857 void BreakpadRelease(BreakpadRef ref) {
892 void BreakpadSetKeyValue(BreakpadRef ref, NSString *key, NSString *value) {
907 void BreakpadAddUploadParameter(BreakpadRef ref,
930 void BreakpadRemoveUploadParameter(BreakpadRef ref,
948 NSString *BreakpadKeyValue(BreakpadRef ref, NSString *key) {
969 void BreakpadRemoveKeyValue(BreakpadRef ref, NSString *key) {
985 void BreakpadGenerateAndSendReport(BreakpadRef ref) {
1002 void BreakpadSetFilterCallback(BreakpadRef ref,
[all …]
/external/google-breakpad/src/client/mac/tests/
DBreakpadFramework_Test.mm119 BreakpadRef b = BreakpadCreate([self breakpadInitializationDictionary]);
132 BreakpadRef b = BreakpadCreate(breakpadDictionary);
160 BreakpadRef b = BreakpadCreate(breakpadDictionary);
189 BreakpadRef b = BreakpadCreate(breakpadDictionary);
/external/google-breakpad/src/client/mac/testapp/
DController.h50 BreakpadRef breakpad_;