Home
last modified time | relevance | path

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

/external/google-breakpad/src/client/linux/handler/
Dminidump_descriptor.cc75 char guid_str[kGUIDStringLength + 1]; in UpdatePath() local
76 if (!CreateGUID(&guid) || !GUIDToString(&guid, guid_str, sizeof(guid_str))) { in UpdatePath()
81 path_ = directory_ + "/" + guid_str + ".dmp"; in UpdatePath()
/external/google-breakpad/src/client/solaris/handler/
Dexception_handler.cc227 char guid_str[kGUIDStringLength + 1]; in InternalWriteMinidump() local
228 if (CreateGUID(&guid) && GUIDToString(&guid, guid_str, sizeof(guid_str))) { in InternalWriteMinidump()
231 dump_path_c_, guid_str); in InternalWriteMinidump()
253 success = callback_(dump_path_c_, guid_str, callback_context_, success); in InternalWriteMinidump()