Searched refs:crash_detail (Results 1 – 3 of 3) sorted by relevance
95 void android_crash_detail_unregister(crash_detail_t* crash_detail) { in android_crash_detail_unregister() argument96 if (crash_detail) { in android_crash_detail_unregister()97 if (crash_detail->prev_free) { in android_crash_detail_unregister()101 crash_detail->data = nullptr; in android_crash_detail_unregister()102 crash_detail->name = nullptr; in android_crash_detail_unregister()105 crash_detail->prev_free = prev; in android_crash_detail_unregister()106 } while (!atomic_compare_exchange_strong(&free_head, &prev, crash_detail)); in android_crash_detail_unregister()111 void android_crash_detail_replace_data(crash_detail_t* crash_detail, const void* data, in android_crash_detail_replace_data() argument113 crash_detail->data = reinterpret_cast<const char*>(data); in android_crash_detail_replace_data()114 crash_detail->data_size = data_size; in android_crash_detail_replace_data()[all …]
95 void android_crash_detail_unregister(crash_detail_t* _Nonnull crash_detail) __INTRODUCED_IN(35);110 void android_crash_detail_replace_data(crash_detail_t* _Nonnull crash_detail, const void* _Nullable…124 void android_crash_detail_replace_name(crash_detail_t* _Nonnull crash_detail, const void* _Nonnull …
62 (see `<android/crash_detail.h>` for full documentation).