Home
last modified time | relevance | path

Searched refs:app_memory_info_ (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/google-breakpad/src/client/windows/handler/
H A Dexception_handler.cc256 app_memory_info_.push_back(instruction_memory); in Initialize()
1008 AppMemory& elt = app_memory_info_.front(); in WriteMinidumpWithExceptionForProcess()
1015 context.iter = app_memory_info_.begin(); in WriteMinidumpWithExceptionForProcess()
1016 context.end = app_memory_info_.end(); in WriteMinidumpWithExceptionForProcess()
1065 std::find(app_memory_info_.begin(), app_memory_info_.end(), ptr); in RegisterAppMemory()
1066 if (iter != app_memory_info_.end()) { in RegisterAppMemory()
1074 app_memory_info_.push_back(app_memory); in RegisterAppMemory()
1079 std::find(app_memory_info_.begin(), app_memory_info_.end(), ptr); in UnregisterAppMemory()
1080 if (iter != app_memory_info_.end()) { in UnregisterAppMemory()
1081 app_memory_info_.erase(iter); in UnregisterAppMemory()
H A Dexception_handler.h491 AppMemoryList app_memory_info_; variable