Home
last modified time | relevance | path

Searched refs:async_safe_format_buffer (Results 1 – 14 of 14) 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 …]
Dmalloc_iterate_test.cpp205 len = async_safe_format_buffer(buffer, sizeof(buffer), "Failed on map %s: %zu\n", name, in TEST()
208 len = async_safe_format_buffer(buffer, sizeof(buffer), in TEST()
/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.cpp196 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/properties_serial", filename_); in MapSerialPropertyArea()
/bionic/libc/malloc_debug/
Dbacktrace.cpp172 async_safe_format_buffer(buf, sizeof(buf), in backtrace_string()
178 async_safe_format_buffer(buf, sizeof(buf), " #%02zd pc %" PAD_PTR " %s%s\n", in backtrace_string()
/bionic/libc/async_safe/include/async_safe/
Dlog.h67 int async_safe_format_buffer(char* buf, size_t size, const char* fmt, ...) __printflike(3, 4);
/bionic/libc/bionic/
Dbionic_systrace.cpp72 size_t len = async_safe_format_buffer(buf, length + WRITE_OFFSET, "B|%d|%s", getpid(), message); in bionic_trace_begin()
Dstrerror.cpp196 length = async_safe_format_buffer(buf, buf_len, "Unknown error %d", error_number); in strerror_r()
Dpthread_create.cpp322 async_safe_format_buffer(name_buffer, arraysize(name_buffer), "stack_and_tls:%d", thread->tid); in __set_stack_and_tls_vma_name()
/bionic/linker/
Dlinker_globals.h41async_safe_format_buffer(linker_get_error_buffer(), linker_get_error_buffer_size(), fmt, ##x); \
Dlinker_config.cpp177 async_safe_format_buffer(buf, sizeof(buf), "%s:%zu: error: %s", file, lineno, msg.c_str()); in create_error_msg()
403 async_safe_format_buffer(buf, sizeof(buf), "%d", target_sdk_version_); in get_paths()
Dlinker.cpp352 async_safe_format_buffer(proc_self_fd, sizeof(proc_self_fd), "/proc/self/fd/%d", fd); in realpath_fd()
954 int n = async_safe_format_buffer(buf, buf_size, "%s/%s", path, name); in format_path()
/bionic/libc/async_safe/
Dasync_safe_log.cpp419 int async_safe_format_buffer(char* buffer, size_t buffer_size, const char* format, ...) { in async_safe_format_buffer() function