Home
last modified time | relevance | path

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

/bionic/tests/
Dasync_safe_test.cpp27 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/
Dcontext_node.cpp53 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()
Dcontexts_serialized.cpp70 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/properties_serial", filename_); in MapSerialPropertyArea()
Dcontexts_split.cpp198 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/properties_serial", filename_); in MapSerialPropertyArea()
/bionic/libc/async_safe/include/async_safe/
Dlog.h89 int async_safe_format_buffer(char* buf, size_t size, const char* fmt, ...) __printflike(3, 4);
/bionic/linker/
Dlinker_globals.h41async_safe_format_buffer(linker_get_error_buffer(), linker_get_error_buffer_size(), fmt, ##x); \
Dlinker_config.cpp175 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/
Dbacktrace.cpp167 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/
Dstrerror_r.cpp61 length = async_safe_format_buffer(buf, buf_len, "Unknown error %d", error_number); in strerror_r()
/bionic/libc/async_safe/
Dasync_safe_log.cpp412 int async_safe_format_buffer(char* buffer, size_t buffer_size, const char* format, ...) { in async_safe_format_buffer() function