• Home
  • Raw
  • Download

Lines Matching refs:breakpad

65 // We want any memory allocations which are used by breakpad during the
83 // Mutex for thread-safe access to the key/value dictionary used by breakpad.
132 Breakpad *breakpad =
136 if (!breakpad)
139 if (!breakpad->Initialize(parameters)) {
141 breakpad->~Breakpad();
145 return breakpad;
251 Breakpad *breakpad = (Breakpad *)context;
255 if (!breakpad || !succeeded)
258 return breakpad->HandleMinidump(dump_dir, minidump_id);
599 // This is confusing. Our two main allocators for breakpad memory are:
602 // breakpad allocations which are accessed at exception handling time.
638 Breakpad *breakpad = Breakpad::Create(parameters);
640 if (breakpad) {
650 return (BreakpadRef)breakpad;
678 Breakpad *breakpad = (Breakpad *)ref;
685 breakpad->~Breakpad();
714 Breakpad *breakpad = (Breakpad *)ref;
716 if (breakpad && key && gKeyValueAllocator) {
719 breakpad->SetKeyValue(key, value);
735 Breakpad *breakpad = (Breakpad *)ref;
737 if (breakpad && key && gKeyValueAllocator) {
742 breakpad->SetKeyValue(prefixedKey, value);
753 Breakpad *breakpad = (Breakpad *)ref;
755 if (breakpad && key && gKeyValueAllocator) {
760 breakpad->RemoveKeyValue(prefixedKey);
772 Breakpad *breakpad = (Breakpad *)ref;
774 if (!breakpad || !key || !gKeyValueAllocator)
779 value = breakpad->KeyValue(key);
791 Breakpad *breakpad = (Breakpad *)ref;
793 if (breakpad && key && gKeyValueAllocator) {
796 breakpad->RemoveKeyValue(key);
807 Breakpad *breakpad = (Breakpad *)ref;
809 if (breakpad) {
810 return static_cast<int>([breakpad->CrashReportsToUpload() count]);
826 Breakpad *breakpad = (Breakpad *)ref;
827 if (breakpad)
828 return breakpad->NextCrashReportConfiguration();
841 Breakpad *breakpad = (Breakpad *)ref;
842 if (!breakpad || !configuration)
844 breakpad->UploadReportWithConfiguration(configuration, server_parameters);
856 Breakpad *breakpad = (Breakpad *)ref;
857 if (!breakpad)
859 NSDictionary *configuration = breakpad->NextCrashReportConfiguration();
876 Breakpad *breakpad = (Breakpad *)ref;
877 if (breakpad && configuration)
878 breakpad->HandleNetworkResponse(configuration,data, error);
890 Breakpad *breakpad = (Breakpad *)ref;
892 if (breakpad) {
893 breakpad->UploadData(data, name, server_parameters);
905 Breakpad *breakpad = (Breakpad *)ref;
907 if (breakpad) {
908 return breakpad->GenerateReport(server_parameters);