HomeSort by relevance Sort by last modified time
    Searched refs:async_safe_format_buffer (Results 1 - 12 of 12) sorted by null

  /bionic/tests/
async_safe_test.cpp 27 async_safe_format_buffer(buf, sizeof(buf), "a");
30 async_safe_format_buffer(buf, sizeof(buf), "%%");
33 async_safe_format_buffer(buf, sizeof(buf), "01234");
36 async_safe_format_buffer(buf, sizeof(buf), "a%sb", "01234");
40 async_safe_format_buffer(buf, sizeof(buf), "a%sb", s);
43 async_safe_format_buffer(buf, sizeof(buf), "aa%scc", "bb");
46 async_safe_format_buffer(buf, sizeof(buf), "a%cc", 'b');
49 async_safe_format_buffer(buf, sizeof(buf), "a%db", 1234);
52 async_safe_format_buffer(buf, sizeof(buf), "a%db", -8123);
55 async_safe_format_buffer(buf, sizeof(buf), "a%hdb", static_cast<short>(0x7fff0010))
    [all...]
  /bionic/libc/system_properties/
context_node.cpp 53 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/%s", filename_, context_);
88 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/%s", filename_, context_);
contexts_serialized.cpp 70 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/properties_serial", filename_);
contexts_split.cpp 198 int len = async_safe_format_buffer(filename, sizeof(filename), "%s/properties_serial", filename_);
  /bionic/linker/
linker_globals.h 41 async_safe_format_buffer(linker_get_error_buffer(), linker_get_error_buffer_size(), fmt, ##x); \
linker_config.cpp 175 async_safe_format_buffer(buf, sizeof(buf), "%s:%zu: error: %s", file, lineno, msg.c_str());
377 async_safe_format_buffer(buf, sizeof(buf), "%d", target_sdk_version_);
linker.cpp 360 async_safe_format_buffer(&proc_self_fd[0], proc_self_fd.size(), "/proc/self/fd/%d", fd);
1011 int n = async_safe_format_buffer(buf, buf_size, "%s/%s", path, name);
    [all...]
  /bionic/libc/async_safe/include/async_safe/
log.h 89 int async_safe_format_buffer(char* buf, size_t size, const char* fmt, ...) __printflike(3, 4);
  /bionic/libc/malloc_debug/
backtrace.cpp 167 async_safe_format_buffer(buf, sizeof(buf),
172 async_safe_format_buffer(buf, sizeof(buf), " #%02zd pc %" PAD_PTR " %s%s\n",
  /bionic/libc/bionic/
strerror_r.cpp 61 length = async_safe_format_buffer(buf, buf_len, "Unknown error %d", error_number);
  /system/core/debuggerd/handler/
debuggerd_handler.cpp 178 async_safe_format_buffer(addr_desc, sizeof(addr_desc), ", fault addr %p", info->si_addr);
362 async_safe_format_buffer(main_tid, sizeof(main_tid), "%d", thread_info->crashing_tid);
363 async_safe_format_buffer(pseudothread_tid, sizeof(pseudothread_tid), "%d",
365 async_safe_format_buffer(debuggerd_dump_type, sizeof(debuggerd_dump_type), "%d",
  /bionic/libc/async_safe/
async_safe_log.cpp 412 int async_safe_format_buffer(char* buffer, size_t buffer_size, const char* format, ...) { function

Completed in 258 milliseconds