Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dmalloc_heapprofd.cpp131 error_log("%s: heapprofd client: concurrent modification.", getprogname()); in MaybeModifyGlobals()
156 error_log("%s: Overflow constructing heapprofd property", getprogname()); in GetHeapprofdProgramProperty()
163 error_log("%s: Failed to open /proc/self/cmdline", getprogname()); in GetHeapprofdProgramProperty()
170 error_log("%s: Failed to read /proc/self/cmdline", getprogname()); in GetHeapprofdProgramProperty()
176 error_log("%s: Overflow reading cmdline", getprogname()); in GetHeapprofdProgramProperty()
190 error_log("%s: cmdline ends in /", getprogname()); in GetHeapprofdProgramProperty()
201 error_log("%s: overflow constructing heapprofd property.", getprogname()); in GetHeapprofdProgramProperty()
229 error_log("%s: not enabling heapprofd, malloc_debug/malloc_hooks are enabled.", getprogname()); in HandleHeapprofdSignal()
290 error_log("%s: heapprofd: failed to transition kInitialState -> kInstallingEphemeralHook. " in HandleHeapprofdSignal()
358 error_log("%s: heapprofd: failed to transition kInitialState -> kInstallingHook. " in HeapprofdInstallHooksAtInit()
[all …]
Dheap_tagging.cpp99 error_log( in SetHeapTaggingLevel()
104 error_log("SetHeapTaggingLevel: switching between TBI and ASYNC/SYNC is not supported"); in SetHeapTaggingLevel()
119 error_log("SetHeapTaggingLevel: unknown tagging level"); in SetHeapTaggingLevel()
Dmalloc_common_dynamic.cpp131 error_log("%s: dlsym(\"%s\") failed", getprogname(), symbol); in InitMallocFunction()
267 error_log("%s: %s routine not found in %s", getprogname(), symbol, shared_lib); in InitSharedLibrary()
308 error_log("%s: Unable to open shared library %s: %s", getprogname(), shared_lib, dlerror()); in LoadSharedLibrary()
331 error_log("%s: failed to enable malloc %s", getprogname(), prefix); in FinishInstallHooks()
Dmalloc_common.h90 #define error_log(format, ...) \ macro
Dmalloc_limit.cpp300 error_log("malloc_limit: Failed to enable allocation limit."); in EnableLimitDispatchTable()
315 error_log("malloc_limit: The allocation limit has already been set, it can only be set once."); in LimitEnable()
Dgwp_asan_wrappers.cpp232 error_log("GWP-ASan was already initialized for this process."); in MaybeInitGwpAsan()
/bionic/libc/malloc_debug/
DPointerData.cpp106 error_log("Unable to set up backtrace signal enable function: %s", strerror(errno)); in Initialize()
120 error_log("Unable to set up backtrace dump signal function: %s", strerror(errno)); in Initialize()
182 error_log("hash_index %zu does not have matching frame data.", hash_index); in RemoveBacktrace()
215 error_log("No tracked pointer found for 0x%" PRIxPTR, pointer); in Remove()
271 error_log(" hash_index %zu does not have matching frame data.", hash_index); in LogBacktrace()
275 error_log(LOG_DIVIDER); in LogFreeError()
277 error_log("+++ ALLOCATION %p USED AFTER FREE", memory); in LogFreeError()
281 error_log(" allocation[%zu] = 0x%02x (expected 0x%02x)", i, memory[i], fill_free_value); in LogFreeError()
286 error_log("Backtrace at time of free:"); in LogFreeError()
290 error_log(LOG_DIVIDER); in LogFreeError()
[all …]
DGuardData.cpp50 error_log(LOG_DIVIDER); in LogFailure()
51 error_log("+++ ALLOCATION %p SIZE %zu HAS A CORRUPTED %s GUARD", pointer, header->size, in LogFailure()
60 error_log(" allocation[%d] = 0x%02x (expected 0x%02x)", pointer_idx, real[i], expected[i]); in LogFailure()
64 error_log("Backtrace at time of failure:"); in LogFailure()
66 error_log(LOG_DIVIDER); in LogFailure()
DConfig.cpp152 error_log("%s: bad value for option '%s': %s", getprogname(), option.c_str(), strerror(errno)); in ParseValue()
156 error_log("%s: bad value for option '%s'", getprogname(), option.c_str()); in ParseValue()
160 error_log("%s: bad value for option '%s', non space found after option: %s", getprogname(), in ParseValue()
165 error_log("%s: bad value for option '%s', value cannot be negative: %ld", getprogname(), in ParseValue()
171 error_log("%s: bad value for option '%s', value must be >= %zu: %ld", getprogname(), in ParseValue()
176 error_log("%s: bad value for option '%s', value must be <= %zu: %ld", getprogname(), in ParseValue()
320 error_log("%s: value set for option '%s' which does not take a value", getprogname(), in VerifyValueEmpty()
328 error_log("For malloc debug option descriptions go to:"); in LogUsage()
329error_log(" https://android.googlesource.com/platform/bionic/+/master/libc/malloc_debug/README.md… in LogUsage()
391 error_log("%s: unknown option %s", getprogname(), option.c_str()); in Init()
Dmalloc_debug.cpp198 error_log(" Backtrace failed to get any frames."); in BacktraceAndLog()
206 error_log(" Backtrace failed to get any frames."); in BacktraceAndLog()
214 error_log(LOG_DIVIDER); in LogError()
215 error_log("+++ ALLOCATION %p %s", pointer, error_str); in LogError()
223 error_log("Backtrace at time of failure:"); in LogError()
225 error_log(LOG_DIVIDER); in LogError()
302 error_log("malloc debug cannot be enabled alongside ASAN"); in debug_initialize()
380 error_log("get_malloc_leak_info: At least one invalid parameter."); in debug_get_malloc_leak_info()
391 error_log( in debug_get_malloc_leak_info()
1008 error_log("Unable to create file: %s", file_name); in debug_dump_heap()
[all …]
DRecordData.cpp144 error_log("Failed to write record alloc information: %s", strerror(errno)); in Dump()
161 error_log("Cannot create record alloc file %s: %s", dump_file_.c_str(), strerror(errno)); in Dump()
179 error_log("Unable to set up record dump signal function: %s", strerror(errno)); in Initialize()
Ddebug_log.h38 #define error_log(format, ...) \ macro
Ddebug_disable.cpp47 error_log("pthread_key_create failed: %s", strerror(error)); in DebugDisableInitialize()
/bionic/libc/malloc_debug/tests/
Dbacktrace_fake.cpp59 error_log(" #%02zd pc %p", i, reinterpret_cast<void*>(frames[i])); in backtrace_log()