Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
Dmalloc_debug.cpp310 static void LogError(const void* pointer, const char* error_str) { in LogError() argument
312 error_log("+++ ALLOCATION %p %s", pointer, error_str); in LogError()
332 std::string error_str; in VerifyPointer() local
334 error_str = std::string("USED AFTER FREE (") + function_name + ")"; in VerifyPointer()
336 error_str = android::base::StringPrintf("HAS INVALID TAG %" PRIx32 " (%s)", header->tag, in VerifyPointer()
339 LogError(pointer, error_str.c_str()); in VerifyPointer()
346 std::string error_str(std::string("UNKNOWN POINTER (") + function_name + ")"); in VerifyPointer() local
347 LogError(pointer, error_str.c_str()); in VerifyPointer()