Home
last modified time | relevance | path

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

/external/google-breakpad/src/client/windows/handler/
Dexception_handler.cc253 app_memory_info_.push_back(instruction_memory); in Initialize()
1005 AppMemory& elt = app_memory_info_.front(); in WriteMinidumpWithExceptionForProcess()
1012 context.iter = app_memory_info_.begin(); in WriteMinidumpWithExceptionForProcess()
1013 context.end = app_memory_info_.end(); in WriteMinidumpWithExceptionForProcess()
1062 std::find(app_memory_info_.begin(), app_memory_info_.end(), ptr); in RegisterAppMemory()
1063 if (iter != app_memory_info_.end()) { in RegisterAppMemory()
1071 app_memory_info_.push_back(app_memory); in RegisterAppMemory()
1076 std::find(app_memory_info_.begin(), app_memory_info_.end(), ptr); in UnregisterAppMemory()
1077 if (iter != app_memory_info_.end()) { in UnregisterAppMemory()
1078 app_memory_info_.erase(iter); in UnregisterAppMemory()
Dexception_handler.h492 AppMemoryList app_memory_info_; variable