Searched refs:async_safe_format_buffer (Results 1 – 10 of 10) sorted by relevance
/bionic/tests/ |
D | async_safe_test.cpp | 27 async_safe_format_buffer(buf, sizeof(buf), "a"); in TEST() 30 async_safe_format_buffer(buf, sizeof(buf), "%%"); in TEST() 33 async_safe_format_buffer(buf, sizeof(buf), "01234"); in TEST() 36 async_safe_format_buffer(buf, sizeof(buf), "a%sb", "01234"); in TEST() 40 async_safe_format_buffer(buf, sizeof(buf), "a%sb", s); in TEST() 43 async_safe_format_buffer(buf, sizeof(buf), "aa%scc", "bb"); in TEST() 46 async_safe_format_buffer(buf, sizeof(buf), "a%cc", 'b'); in TEST() 49 async_safe_format_buffer(buf, sizeof(buf), "a%db", 1234); in TEST() 52 async_safe_format_buffer(buf, sizeof(buf), "a%db", -8123); in TEST() 55 async_safe_format_buffer(buf, sizeof(buf), "a%hdb", static_cast<short>(0x7fff0010)); in TEST() [all …]
|
/bionic/libc/system_properties/ |
D | context_node.cpp | 53 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/%s", filename_, context_); in Open() 88 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/%s", filename_, context_); in CheckAccess()
|
D | contexts_serialized.cpp | 70 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/properties_serial", filename_); in MapSerialPropertyArea()
|
D | contexts_split.cpp | 198 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/properties_serial", filename_); in MapSerialPropertyArea()
|
/bionic/libc/async_safe/include/async_safe/ |
D | log.h | 89 int async_safe_format_buffer(char* buf, size_t size, const char* fmt, ...) __printflike(3, 4);
|
/bionic/linker/ |
D | linker_globals.h | 41 … async_safe_format_buffer(linker_get_error_buffer(), linker_get_error_buffer_size(), fmt, ##x); \
|
D | linker_config.cpp | 175 async_safe_format_buffer(buf, sizeof(buf), "%s:%zu: error: %s", file, lineno, msg.c_str()); in create_error_msg() 377 async_safe_format_buffer(buf, sizeof(buf), "%d", target_sdk_version_); in get_paths()
|
/bionic/libc/malloc_debug/ |
D | backtrace.cpp | 167 async_safe_format_buffer(buf, sizeof(buf), in backtrace_string() 172 async_safe_format_buffer(buf, sizeof(buf), " #%02zd pc %" PAD_PTR " %s%s\n", in backtrace_string()
|
/bionic/libc/bionic/ |
D | strerror_r.cpp | 61 length = async_safe_format_buffer(buf, buf_len, "Unknown error %d", error_number); in strerror_r()
|
/bionic/libc/async_safe/ |
D | async_safe_log.cpp | 412 int async_safe_format_buffer(char* buffer, size_t buffer_size, const char* format, ...) { in async_safe_format_buffer() function
|