Lines Matching defs:buffer
33 // buffer so that we still get some information out if that fails.
41 // Format the arguments into an allocated buffer for CrashReport & friends.
42 // We leak the buffer on purpose, since we're about to abort() anyway.
43 char* buffer;
44 (void)buffer;
52 vasprintf(&buffer, format, list);
53 CRSetCrashLogMessage(buffer);
55 vasprintf(&buffer, format, list);
59 android_set_abort_message(buffer);
63 syslog(LOG_CRIT, "%s", buffer);
69 __assert2(__FILE__, __LINE__, __func__, buffer);