Merge "Fastboot: Use AServiceManager_waitForService instead of AServiceManager_getService"
diff --git a/bootstat/bootstat.rc b/bootstat/bootstat.rc
index 23f01d1..22bd0e7 100644
--- a/bootstat/bootstat.rc
+++ b/bootstat/bootstat.rc
@@ -40,15 +40,6 @@
chown system log /data/misc/bootstat/time_since_last_boot
# end ota transitional support
-# Record the time at which the user has successfully entered the pin to decrypt
-# the device, /data is decrypted, and the system is entering the main boot phase.
-#
-# post-fs-data: /data is writable
-# property:init.svc.bootanim=running: The boot animation is running
-# property:ro.crypto.type=block: FDE device
-on post-fs-data && property:init.svc.bootanim=running && property:ro.crypto.type=block
- exec_background - system log -- /system/bin/bootstat -r post_decrypt_time_elapsed
-
# Initialize bootstat state machine.
#
# sys.bootstat.first_boot_completed: responsible for making sure that record_boot_complete happens
diff --git a/debuggerd/Android.bp b/debuggerd/Android.bp
index 15b5813..5da1b40 100644
--- a/debuggerd/Android.bp
+++ b/debuggerd/Android.bp
@@ -98,6 +98,7 @@
"libbase_headers",
"libdebuggerd_common_headers",
"bionic_libc_platform_headers",
+ "gwp_asan_headers",
],
whole_static_libs: [
diff --git a/debuggerd/crash_dump.cpp b/debuggerd/crash_dump.cpp
index e3ea455..cbb1181 100644
--- a/debuggerd/crash_dump.cpp
+++ b/debuggerd/crash_dump.cpp
@@ -23,7 +23,6 @@
#include <sys/types.h>
#include <sys/un.h>
#include <sys/wait.h>
-#include <syscall.h>
#include <unistd.h>
#include <limits>
@@ -266,10 +265,12 @@
}
static void ReadCrashInfo(unique_fd& fd, siginfo_t* siginfo,
- std::unique_ptr<unwindstack::Regs>* regs, ProcessInfo* process_info) {
+ std::unique_ptr<unwindstack::Regs>* regs, ProcessInfo* process_info,
+ bool* recoverable_gwp_asan_crash) {
std::aligned_storage<sizeof(CrashInfo) + 1, alignof(CrashInfo)>::type buf;
CrashInfo* crash_info = reinterpret_cast<CrashInfo*>(&buf);
ssize_t rc = TEMP_FAILURE_RETRY(read(fd.get(), &buf, sizeof(buf)));
+ *recoverable_gwp_asan_crash = false;
if (rc == -1) {
PLOG(FATAL) << "failed to read target ucontext";
} else {
@@ -304,6 +305,8 @@
process_info->scudo_stack_depot = crash_info->data.d.scudo_stack_depot;
process_info->scudo_region_info = crash_info->data.d.scudo_region_info;
process_info->scudo_ring_buffer = crash_info->data.d.scudo_ring_buffer;
+ process_info->scudo_ring_buffer_size = crash_info->data.d.scudo_ring_buffer_size;
+ *recoverable_gwp_asan_crash = crash_info->data.d.recoverable_gwp_asan_crash;
FALLTHROUGH_INTENDED;
case 1:
case 2:
@@ -468,6 +471,7 @@
std::map<pid_t, ThreadInfo> thread_info;
siginfo_t siginfo;
std::string error;
+ bool recoverable_gwp_asan_crash = false;
{
ATRACE_NAME("ptrace");
@@ -519,7 +523,8 @@
if (thread == g_target_thread) {
// Read the thread's registers along with the rest of the crash info out of the pipe.
- ReadCrashInfo(input_pipe, &siginfo, &info.registers, &process_info);
+ ReadCrashInfo(input_pipe, &siginfo, &info.registers, &process_info,
+ &recoverable_gwp_asan_crash);
info.siginfo = &siginfo;
info.signo = info.siginfo->si_signo;
@@ -646,7 +651,7 @@
}
}
- if (fatal_signal) {
+ if (fatal_signal && !recoverable_gwp_asan_crash) {
// Don't try to notify ActivityManager if it just crashed, or we might hang until timeout.
if (thread_info[target_process].thread_name != "system_server") {
activity_manager_notify(target_process, signo, amfd_data);
diff --git a/debuggerd/debuggerd_test.cpp b/debuggerd/debuggerd_test.cpp
index 9c1b136..895c111 100644
--- a/debuggerd/debuggerd_test.cpp
+++ b/debuggerd/debuggerd_test.cpp
@@ -36,6 +36,7 @@
#include <string>
#include <thread>
+#include <android/dlext.h>
#include <android/fdsan.h>
#include <android/set_abort_message.h>
#include <bionic/malloc.h>
@@ -64,6 +65,7 @@
#include "crash_test.h"
#include "debuggerd/handler.h"
+#include "gtest/gtest.h"
#include "libdebuggerd/utility.h"
#include "protocol.h"
#include "tombstoned/tombstoned.h"
@@ -110,19 +112,6 @@
ASSERT_MATCH(result, \
R"(#\d\d pc [0-9a-f]+\s+ \S+ (\(offset 0x[0-9a-f]+\) )?\()" frame_name R"(\+)");
-// Enable GWP-ASan at the start of this process. GWP-ASan is enabled using
-// process sampling, so we need to ensure we force GWP-ASan on.
-__attribute__((constructor)) static void enable_gwp_asan() {
- android_mallopt_gwp_asan_options_t opts;
- // No, we're not an app, but let's turn ourselves on without sampling.
- // Technically, if someone's using the *.default_app sysprops, they'll adjust
- // our settings, but I don't think this will be common on a device that's
- // running debuggerd_tests.
- opts.desire = android_mallopt_gwp_asan_options_t::Action::TURN_ON_FOR_APP;
- opts.program_name = "";
- android_mallopt(M_INITIALIZE_GWP_ASAN, &opts, sizeof(android_mallopt_gwp_asan_options_t));
-}
-
static void tombstoned_intercept(pid_t target_pid, unique_fd* intercept_fd, unique_fd* output_fd,
InterceptStatus* status, DebuggerdDumpType intercept_type) {
intercept_fd->reset(socket_local_client(kTombstonedInterceptSocketName,
@@ -468,76 +457,6 @@
}
#endif
-// Number of iterations required to reliably guarantee a GWP-ASan crash.
-// GWP-ASan's sample rate is not truly nondeterministic, it initialises a
-// thread-local counter at 2*SampleRate, and decrements on each malloc(). Once
-// the counter reaches zero, we provide a sampled allocation. Then, double that
-// figure to allow for left/right allocation alignment, as this is done randomly
-// without bias.
-#define GWP_ASAN_ITERATIONS_TO_ENSURE_CRASH (0x20000)
-
-struct GwpAsanTestParameters {
- size_t alloc_size;
- bool free_before_access;
- int access_offset;
- std::string cause_needle; // Needle to be found in the "Cause: [GWP-ASan]" line.
-};
-
-struct GwpAsanCrasherTest : CrasherTest, testing::WithParamInterface<GwpAsanTestParameters> {};
-
-GwpAsanTestParameters gwp_asan_tests[] = {
- {/* alloc_size */ 7, /* free_before_access */ true, /* access_offset */ 0, "Use After Free, 0 bytes into a 7-byte allocation"},
- {/* alloc_size */ 7, /* free_before_access */ true, /* access_offset */ 1, "Use After Free, 1 byte into a 7-byte allocation"},
- {/* alloc_size */ 7, /* free_before_access */ false, /* access_offset */ 16, "Buffer Overflow, 9 bytes right of a 7-byte allocation"},
- {/* alloc_size */ 16, /* free_before_access */ false, /* access_offset */ -1, "Buffer Underflow, 1 byte left of a 16-byte allocation"},
-};
-
-INSTANTIATE_TEST_SUITE_P(GwpAsanTests, GwpAsanCrasherTest, testing::ValuesIn(gwp_asan_tests));
-
-TEST_P(GwpAsanCrasherTest, gwp_asan_uaf) {
- if (mte_supported()) {
- // Skip this test on MTE hardware, as MTE will reliably catch these errors
- // instead of GWP-ASan.
- GTEST_SKIP() << "Skipped on MTE.";
- }
- // Skip this test on HWASan, which will reliably catch test errors as well.
- SKIP_WITH_HWASAN;
-
- GwpAsanTestParameters params = GetParam();
- LogcatCollector logcat_collector;
-
- int intercept_result;
- unique_fd output_fd;
- StartProcess([¶ms]() {
- for (unsigned i = 0; i < GWP_ASAN_ITERATIONS_TO_ENSURE_CRASH; ++i) {
- volatile char* p = reinterpret_cast<volatile char*>(malloc(params.alloc_size));
- if (params.free_before_access) free(static_cast<void*>(const_cast<char*>(p)));
- p[params.access_offset] = 42;
- if (!params.free_before_access) free(static_cast<void*>(const_cast<char*>(p)));
- }
- });
-
- StartIntercept(&output_fd);
- FinishCrasher();
- AssertDeath(SIGSEGV);
- FinishIntercept(&intercept_result);
-
- ASSERT_EQ(1, intercept_result) << "tombstoned reported failure";
-
- std::vector<std::string> log_sources(2);
- ConsumeFd(std::move(output_fd), &log_sources[0]);
- logcat_collector.Collect(&log_sources[1]);
-
- for (const auto& result : log_sources) {
- ASSERT_MATCH(result, R"(signal 11 \(SIGSEGV\), code 2 \(SEGV_ACCERR\))");
- ASSERT_MATCH(result, R"(Cause: \[GWP-ASan\]: )" + params.cause_needle);
- if (params.free_before_access) {
- ASSERT_MATCH(result, R"(deallocated by thread .*\n.*#00 pc)");
- }
- ASSERT_MATCH(result, R"((^|\s)allocated by thread .*\n.*#00 pc)");
- }
-}
-
struct SizeParamCrasherTest : CrasherTest, testing::WithParamInterface<size_t> {};
INSTANTIATE_TEST_SUITE_P(Sizes, SizeParamCrasherTest, testing::Values(0, 16, 131072));
@@ -1278,7 +1197,11 @@
static const char* const kDebuggerdSeccompPolicy =
"/system/etc/seccomp_policy/crash_dump." ABI_STRING ".policy";
-static pid_t seccomp_fork_impl(void (*prejail)()) {
+static void setup_jail(minijail* jail) {
+ if (!jail) {
+ LOG(FATAL) << "failed to create minijail";
+ }
+
std::string policy;
if (!android::base::ReadFileToString(kDebuggerdSeccompPolicy, &policy)) {
PLOG(FATAL) << "failed to read policy file";
@@ -1305,15 +1228,15 @@
PLOG(FATAL) << "failed to seek tmp_fd";
}
- ScopedMinijail jail{minijail_new()};
- if (!jail) {
- LOG(FATAL) << "failed to create minijail";
- }
+ minijail_no_new_privs(jail);
+ minijail_log_seccomp_filter_failures(jail);
+ minijail_use_seccomp_filter(jail);
+ minijail_parse_seccomp_filters_from_fd(jail, tmp_fd.release());
+}
- minijail_no_new_privs(jail.get());
- minijail_log_seccomp_filter_failures(jail.get());
- minijail_use_seccomp_filter(jail.get());
- minijail_parse_seccomp_filters_from_fd(jail.get(), tmp_fd.release());
+static pid_t seccomp_fork_impl(void (*prejail)()) {
+ ScopedMinijail jail{minijail_new()};
+ setup_jail(jail.get());
pid_t result = fork();
if (result == -1) {
@@ -1627,6 +1550,138 @@
AssertDeath(SIGABRT);
}
+struct GwpAsanTestParameters {
+ size_t alloc_size;
+ bool free_before_access;
+ int access_offset;
+ std::string cause_needle; // Needle to be found in the "Cause: [GWP-ASan]" line.
+};
+
+struct GwpAsanCrasherTest
+ : CrasherTest,
+ testing::WithParamInterface<
+ std::tuple<GwpAsanTestParameters, /* recoverable */ bool, /* seccomp */ bool>> {};
+
+GwpAsanTestParameters gwp_asan_tests[] = {
+ {/* alloc_size */ 7, /* free_before_access */ true, /* access_offset */ 0,
+ "Use After Free, 0 bytes into a 7-byte allocation"},
+ {/* alloc_size */ 15, /* free_before_access */ true, /* access_offset */ 1,
+ "Use After Free, 1 byte into a 15-byte allocation"},
+ {/* alloc_size */ 4096, /* free_before_access */ false, /* access_offset */ 4098,
+ "Buffer Overflow, 2 bytes right of a 4096-byte allocation"},
+ {/* alloc_size */ 4096, /* free_before_access */ false, /* access_offset */ -1,
+ "Buffer Underflow, 1 byte left of a 4096-byte allocation"},
+};
+
+INSTANTIATE_TEST_SUITE_P(
+ GwpAsanTests, GwpAsanCrasherTest,
+ testing::Combine(testing::ValuesIn(gwp_asan_tests),
+ /* recoverable */ testing::Bool(),
+ /* seccomp */ testing::Bool()),
+ [](const testing::TestParamInfo<
+ std::tuple<GwpAsanTestParameters, /* recoverable */ bool, /* seccomp */ bool>>& info) {
+ const GwpAsanTestParameters& params = std::get<0>(info.param);
+ std::string name = params.free_before_access ? "UseAfterFree" : "Overflow";
+ name += testing::PrintToString(params.alloc_size);
+ name += "Alloc";
+ if (params.access_offset < 0) {
+ name += "Left";
+ name += testing::PrintToString(params.access_offset * -1);
+ } else {
+ name += "Right";
+ name += testing::PrintToString(params.access_offset);
+ }
+ name += "Bytes";
+ if (std::get<1>(info.param)) name += "Recoverable";
+ if (std::get<2>(info.param)) name += "Seccomp";
+ return name;
+ });
+
+TEST_P(GwpAsanCrasherTest, run_gwp_asan_test) {
+ if (mte_supported()) {
+ // Skip this test on MTE hardware, as MTE will reliably catch these errors
+ // instead of GWP-ASan.
+ GTEST_SKIP() << "Skipped on MTE.";
+ }
+ // Skip this test on HWASan, which will reliably catch test errors as well.
+ SKIP_WITH_HWASAN;
+
+ GwpAsanTestParameters params = std::get<0>(GetParam());
+ bool recoverable = std::get<1>(GetParam());
+ LogcatCollector logcat_collector;
+
+ int intercept_result;
+ unique_fd output_fd;
+ StartProcess([&recoverable]() {
+ const char* env[] = {"GWP_ASAN_SAMPLE_RATE=1", "GWP_ASAN_PROCESS_SAMPLING=1",
+ "GWP_ASAN_MAX_ALLOCS=40000", nullptr, nullptr};
+ if (recoverable) {
+ env[3] = "GWP_ASAN_RECOVERABLE=true";
+ }
+ std::string test_name = ::testing::UnitTest::GetInstance()->current_test_info()->name();
+ test_name = std::regex_replace(test_name, std::regex("run_gwp_asan_test"),
+ "DISABLED_run_gwp_asan_test");
+ std::string test_filter = "--gtest_filter=*";
+ test_filter += test_name;
+ std::string this_binary = android::base::GetExecutablePath();
+ const char* args[] = {this_binary.c_str(), "--gtest_also_run_disabled_tests",
+ test_filter.c_str(), nullptr};
+ // We check the crash report from a debuggerd handler and from logcat. The
+ // echo from stdout/stderr of the subprocess trips up atest, because it
+ // doesn't like that two tests started in a row without the first one
+ // finishing (even though the second one is in a subprocess).
+ close(STDOUT_FILENO);
+ close(STDERR_FILENO);
+ execve(this_binary.c_str(), const_cast<char**>(args), const_cast<char**>(env));
+ });
+
+ StartIntercept(&output_fd);
+ FinishCrasher();
+ if (recoverable) {
+ AssertDeath(0);
+ } else {
+ AssertDeath(SIGSEGV);
+ }
+ FinishIntercept(&intercept_result);
+
+ ASSERT_EQ(1, intercept_result) << "tombstoned reported failure";
+
+ std::vector<std::string> log_sources(2);
+ ConsumeFd(std::move(output_fd), &log_sources[0]);
+ logcat_collector.Collect(&log_sources[1]);
+
+ // seccomp forces the fallback handler, which doesn't print GWP-ASan debugging
+ // information. Make sure the recovery still works, but the report won't be
+ // hugely useful, it looks like a regular SEGV.
+ bool seccomp = std::get<2>(GetParam());
+ if (!seccomp) {
+ for (const auto& result : log_sources) {
+ ASSERT_MATCH(result, R"(signal 11 \(SIGSEGV\), code 2 \(SEGV_ACCERR\))");
+ ASSERT_MATCH(result, R"(Cause: \[GWP-ASan\]: )" + params.cause_needle);
+ if (params.free_before_access) {
+ ASSERT_MATCH(result, R"(deallocated by thread .*\n.*#00 pc)");
+ }
+ ASSERT_MATCH(result, R"((^|\s)allocated by thread .*\n.*#00 pc)");
+ }
+ }
+}
+
+TEST_P(GwpAsanCrasherTest, DISABLED_run_gwp_asan_test) {
+ GwpAsanTestParameters params = std::get<0>(GetParam());
+ bool seccomp = std::get<2>(GetParam());
+ if (seccomp) {
+ ScopedMinijail jail{minijail_new()};
+ setup_jail(jail.get());
+ minijail_enter(jail.get());
+ }
+
+ // Use 'volatile' to prevent a very clever compiler eliminating the store.
+ char* volatile p = reinterpret_cast<char* volatile>(malloc(params.alloc_size));
+ if (params.free_before_access) free(static_cast<void*>(const_cast<char*>(p)));
+ p[params.access_offset] = 42;
+ if (!params.free_before_access) free(static_cast<void*>(const_cast<char*>(p)));
+}
+
TEST_F(CrasherTest, fdsan_warning_abort_message) {
int intercept_result;
unique_fd output_fd;
@@ -1909,7 +1964,7 @@
ASSERT_MATCH(result, R"(Cause: stack pointer[^\n]*stack overflow.\n)");
}
-static bool CopySharedLibrary(const char* tmp_dir, std::string* tmp_so_name) {
+static std::string GetTestLibraryPath() {
std::string test_lib(testing::internal::GetArgvs()[0]);
auto const value = test_lib.find_last_of('/');
if (value == std::string::npos) {
@@ -1917,7 +1972,62 @@
} else {
test_lib = test_lib.substr(0, value + 1) + "./";
}
- test_lib += "libcrash_test.so";
+ return test_lib + "libcrash_test.so";
+}
+
+static void CreateEmbeddedLibrary(int out_fd) {
+ std::string test_lib(GetTestLibraryPath());
+ android::base::unique_fd fd(open(test_lib.c_str(), O_RDONLY | O_CLOEXEC));
+ ASSERT_NE(fd.get(), -1);
+ off_t file_size = lseek(fd, 0, SEEK_END);
+ ASSERT_EQ(lseek(fd, 0, SEEK_SET), 0);
+ std::vector<uint8_t> contents(file_size);
+ ASSERT_TRUE(android::base::ReadFully(fd, contents.data(), contents.size()));
+
+ // Put the shared library data at a pagesize() offset.
+ ASSERT_EQ(lseek(out_fd, 4 * getpagesize(), SEEK_CUR), 4 * getpagesize());
+ ASSERT_EQ(static_cast<size_t>(write(out_fd, contents.data(), contents.size())), contents.size());
+}
+
+TEST_F(CrasherTest, non_zero_offset_in_library) {
+ int intercept_result;
+ unique_fd output_fd;
+ TemporaryFile tf;
+ CreateEmbeddedLibrary(tf.fd);
+ StartProcess([&tf]() {
+ android_dlextinfo extinfo{};
+ extinfo.flags = ANDROID_DLEXT_USE_LIBRARY_FD | ANDROID_DLEXT_USE_LIBRARY_FD_OFFSET;
+ extinfo.library_fd = tf.fd;
+ extinfo.library_fd_offset = 4 * getpagesize();
+ void* handle = android_dlopen_ext(tf.path, RTLD_NOW, &extinfo);
+ if (handle == nullptr) {
+ _exit(1);
+ }
+ void (*crash_func)() = reinterpret_cast<void (*)()>(dlsym(handle, "crash"));
+ if (crash_func == nullptr) {
+ _exit(1);
+ }
+ crash_func();
+ });
+
+ StartIntercept(&output_fd);
+ FinishCrasher();
+ AssertDeath(SIGSEGV);
+ FinishIntercept(&intercept_result);
+
+ ASSERT_EQ(1, intercept_result) << "tombstoned reported failure";
+
+ std::string result;
+ ConsumeFd(std::move(output_fd), &result);
+
+ // Verify the crash includes an offset value in the backtrace.
+ std::string match_str = android::base::StringPrintf("%s\\!libcrash_test.so \\(offset 0x%x\\)",
+ tf.path, 4 * getpagesize());
+ ASSERT_MATCH(result, match_str);
+}
+
+static bool CopySharedLibrary(const char* tmp_dir, std::string* tmp_so_name) {
+ std::string test_lib(GetTestLibraryPath());
*tmp_so_name = std::string(tmp_dir) + "/libcrash_test.so";
std::string cp_cmd = android::base::StringPrintf("cp %s %s", test_lib.c_str(), tmp_dir);
diff --git a/debuggerd/handler/debuggerd_handler.cpp b/debuggerd/handler/debuggerd_handler.cpp
index c64de0e..baa5bfb 100644
--- a/debuggerd/handler/debuggerd_handler.cpp
+++ b/debuggerd/handler/debuggerd_handler.cpp
@@ -187,27 +187,29 @@
* mutex is being held, so we don't want to use any libc functions that
* could allocate memory or hold a lock.
*/
-static void log_signal_summary(const siginfo_t* info) {
+static void log_signal_summary(const siginfo_t* si) {
char main_thread_name[MAX_TASK_NAME_LEN + 1];
if (!get_main_thread_name(main_thread_name, sizeof(main_thread_name))) {
strncpy(main_thread_name, "<unknown>", sizeof(main_thread_name));
}
- if (info->si_signo == BIONIC_SIGNAL_DEBUGGER) {
+ if (si->si_signo == BIONIC_SIGNAL_DEBUGGER) {
async_safe_format_log(ANDROID_LOG_INFO, "libc", "Requested dump for pid %d (%s)", __getpid(),
main_thread_name);
return;
}
- // Many signals don't have an address or sender.
- char addr_desc[32] = ""; // ", fault addr 0x1234"
- if (signal_has_si_addr(info)) {
- async_safe_format_buffer(addr_desc, sizeof(addr_desc), ", fault addr %p", info->si_addr);
- }
+ // Many signals don't have a sender or extra detail, but some do...
pid_t self_pid = __getpid();
char sender_desc[32] = {}; // " from pid 1234, uid 666"
- if (signal_has_sender(info, self_pid)) {
- get_signal_sender(sender_desc, sizeof(sender_desc), info);
+ if (signal_has_sender(si, self_pid)) {
+ get_signal_sender(sender_desc, sizeof(sender_desc), si);
+ }
+ char extra_desc[32] = {}; // ", fault addr 0x1234" or ", syscall 1234"
+ if (si->si_signo == SIGSYS && si->si_code == SYS_SECCOMP) {
+ async_safe_format_buffer(extra_desc, sizeof(extra_desc), ", syscall %d", si->si_syscall);
+ } else if (signal_has_si_addr(si)) {
+ async_safe_format_buffer(extra_desc, sizeof(extra_desc), ", fault addr %p", si->si_addr);
}
char thread_name[MAX_TASK_NAME_LEN + 1]; // one more for termination
@@ -221,8 +223,8 @@
async_safe_format_log(ANDROID_LOG_FATAL, "libc",
"Fatal signal %d (%s), code %d (%s%s)%s in tid %d (%s), pid %d (%s)",
- info->si_signo, get_signame(info), info->si_code, get_sigcode(info),
- sender_desc, addr_desc, __gettid(), thread_name, self_pid, main_thread_name);
+ si->si_signo, get_signame(si), si->si_code, get_sigcode(si), sender_desc,
+ extra_desc, __gettid(), thread_name, self_pid, main_thread_name);
}
/*
@@ -371,12 +373,31 @@
{.iov_base = thread_info->ucontext, .iov_len = sizeof(ucontext_t)},
};
+ constexpr size_t kHeaderSize = sizeof(version) + sizeof(siginfo_t) + sizeof(ucontext_t);
+
if (thread_info->process_info.fdsan_table) {
// Dynamic executables always use version 4. There is no need to increment the version number if
// the format changes, because the sender (linker) and receiver (crash_dump) are version locked.
version = 4;
expected = sizeof(CrashInfoHeader) + sizeof(CrashInfoDataDynamic);
+ static_assert(sizeof(CrashInfoHeader) + sizeof(CrashInfoDataDynamic) ==
+ kHeaderSize + sizeof(thread_info->process_info),
+ "Wire protocol structs do not match the data sent.");
+#define ASSERT_SAME_OFFSET(MEMBER1, MEMBER2) \
+ static_assert(sizeof(CrashInfoHeader) + offsetof(CrashInfoDataDynamic, MEMBER1) == \
+ kHeaderSize + offsetof(debugger_process_info, MEMBER2), \
+ "Wire protocol offset does not match data sent: " #MEMBER1);
+ ASSERT_SAME_OFFSET(fdsan_table_address, fdsan_table);
+ ASSERT_SAME_OFFSET(gwp_asan_state, gwp_asan_state);
+ ASSERT_SAME_OFFSET(gwp_asan_metadata, gwp_asan_metadata);
+ ASSERT_SAME_OFFSET(scudo_stack_depot, scudo_stack_depot);
+ ASSERT_SAME_OFFSET(scudo_region_info, scudo_region_info);
+ ASSERT_SAME_OFFSET(scudo_ring_buffer, scudo_ring_buffer);
+ ASSERT_SAME_OFFSET(scudo_ring_buffer_size, scudo_ring_buffer_size);
+ ASSERT_SAME_OFFSET(recoverable_gwp_asan_crash, recoverable_gwp_asan_crash);
+#undef ASSERT_SAME_OFFSET
+
iovs[3] = {.iov_base = &thread_info->process_info,
.iov_len = sizeof(thread_info->process_info)};
} else {
@@ -384,6 +405,10 @@
version = 1;
expected = sizeof(CrashInfoHeader) + sizeof(CrashInfoDataStatic);
+ static_assert(
+ sizeof(CrashInfoHeader) + sizeof(CrashInfoDataStatic) == kHeaderSize + sizeof(uintptr_t),
+ "Wire protocol structs do not match the data sent.");
+
iovs[3] = {.iov_base = &thread_info->process_info.abort_msg, .iov_len = sizeof(uintptr_t)};
}
errno = 0;
@@ -541,17 +566,37 @@
process_info = g_callbacks.get_process_info();
}
+ // GWP-ASan catches use-after-free and heap-buffer-overflow by using PROT_NONE
+ // guard pages, which lead to SEGV. Normally, debuggerd prints a bug report
+ // and the process terminates, but in some cases, we actually want to print
+ // the bug report and let the signal handler return, and restart the process.
+ // In order to do that, we need to disable GWP-ASan's guard pages. The
+ // following callbacks handle this case.
+ gwp_asan_callbacks_t gwp_asan_callbacks = g_callbacks.get_gwp_asan_callbacks();
+ if (signal_number == SIGSEGV && signal_has_si_addr(info) &&
+ gwp_asan_callbacks.debuggerd_needs_gwp_asan_recovery &&
+ gwp_asan_callbacks.debuggerd_gwp_asan_pre_crash_report &&
+ gwp_asan_callbacks.debuggerd_gwp_asan_post_crash_report &&
+ gwp_asan_callbacks.debuggerd_needs_gwp_asan_recovery(info->si_addr)) {
+ gwp_asan_callbacks.debuggerd_gwp_asan_pre_crash_report(info->si_addr);
+ process_info.recoverable_gwp_asan_crash = true;
+ }
+
// If sival_int is ~0, it means that the fallback handler has been called
// once before and this function is being called again to dump the stack
// of a specific thread. It is possible that the prctl call might return 1,
// then return 0 in subsequent calls, so check the sival_int to determine if
// the fallback handler should be called first.
- if (si_val == kDebuggerdFallbackSivalUintptrRequestDump ||
- prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0) == 1) {
+ bool no_new_privs = prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0) == 1;
+ if (si_val == kDebuggerdFallbackSivalUintptrRequestDump || no_new_privs) {
// This check might be racy if another thread sets NO_NEW_PRIVS, but this should be unlikely,
// you can only set NO_NEW_PRIVS to 1, and the effect should be at worst a single missing
// ANR trace.
debuggerd_fallback_handler(info, ucontext, process_info.abort_msg);
+ if (no_new_privs && process_info.recoverable_gwp_asan_crash) {
+ gwp_asan_callbacks.debuggerd_gwp_asan_post_crash_report(info->si_addr);
+ return;
+ }
resend_signal(info);
return;
}
@@ -625,6 +670,9 @@
// If the signal is fatal, don't unlock the mutex to prevent other crashing threads from
// starting to dump right before our death.
pthread_mutex_unlock(&crash_mutex);
+ } else if (process_info.recoverable_gwp_asan_crash) {
+ gwp_asan_callbacks.debuggerd_gwp_asan_post_crash_report(info->si_addr);
+ pthread_mutex_unlock(&crash_mutex);
}
#ifdef __aarch64__
else if (info->si_signo == SIGSEGV &&
@@ -703,3 +751,52 @@
debuggerd_register_handlers(&action);
}
+
+// When debuggerd's signal handler is the first handler called, it's great at
+// handling the recoverable GWP-ASan mode. For apps, sigchain (from libart) is
+// always the first signal handler, and so the following function is what
+// sigchain must call before processing the signal. This allows for processing
+// of a potentially recoverable GWP-ASan crash. If the signal requires GWP-ASan
+// recovery, then dump a report (via the regular debuggerd hanndler), and patch
+// up the allocator, and allow the process to continue (indicated by returning
+// 'true'). If the crash has nothing to do with GWP-ASan, or recovery isn't
+// possible, return 'false'.
+bool debuggerd_handle_signal(int signal_number, siginfo_t* info, void* context) {
+ if (signal_number != SIGSEGV || !signal_has_si_addr(info)) return false;
+
+ gwp_asan_callbacks_t gwp_asan_callbacks = g_callbacks.get_gwp_asan_callbacks();
+ if (gwp_asan_callbacks.debuggerd_needs_gwp_asan_recovery == nullptr ||
+ gwp_asan_callbacks.debuggerd_gwp_asan_pre_crash_report == nullptr ||
+ gwp_asan_callbacks.debuggerd_gwp_asan_post_crash_report == nullptr ||
+ !gwp_asan_callbacks.debuggerd_needs_gwp_asan_recovery(info->si_addr)) {
+ return false;
+ }
+
+ // Only dump a crash report for the first GWP-ASan crash. ActivityManager
+ // doesn't like it when an app crashes multiple times, and is even more strict
+ // about an app crashing multiple times in a short time period. While the app
+ // won't crash fully when we do GWP-ASan recovery, ActivityManager still gets
+ // the information about the crash through the DropBoxManager service. If an
+ // app has multiple back-to-back GWP-ASan crashes, this would lead to the app
+ // being killed, which defeats the purpose of having the recoverable mode. To
+ // mitigate against this, only generate a debuggerd crash report for the first
+ // GWP-ASan crash encountered. We still need to do the patching up of the
+ // allocator though, so do that.
+ static pthread_mutex_t first_crash_mutex = PTHREAD_MUTEX_INITIALIZER;
+ pthread_mutex_lock(&first_crash_mutex);
+ static bool first_crash = true;
+
+ if (first_crash) {
+ // `debuggerd_signal_handler` will call
+ // `debuggerd_gwp_asan_(pre|post)_crash_report`, so no need to manually call
+ // them here.
+ debuggerd_signal_handler(signal_number, info, context);
+ first_crash = false;
+ } else {
+ gwp_asan_callbacks.debuggerd_gwp_asan_pre_crash_report(info->si_addr);
+ gwp_asan_callbacks.debuggerd_gwp_asan_post_crash_report(info->si_addr);
+ }
+
+ pthread_mutex_unlock(&first_crash_mutex);
+ return true;
+}
diff --git a/debuggerd/include/debuggerd/handler.h b/debuggerd/include/debuggerd/handler.h
index 68b2e67..ebb5372 100644
--- a/debuggerd/include/debuggerd/handler.h
+++ b/debuggerd/include/debuggerd/handler.h
@@ -35,7 +35,7 @@
// When updating this data structure, CrashInfoDataDynamic and the code in
// ReadCrashInfo() must also be updated.
-struct debugger_process_info {
+struct __attribute__((packed)) debugger_process_info {
void* abort_msg;
void* fdsan_table;
const gwp_asan::AllocatorState* gwp_asan_state;
@@ -43,16 +43,29 @@
const char* scudo_stack_depot;
const char* scudo_region_info;
const char* scudo_ring_buffer;
+ size_t scudo_ring_buffer_size;
+ bool recoverable_gwp_asan_crash;
};
+// GWP-ASan calbacks to support the recoverable mode. Separate from the
+// debuggerd_callbacks_t because these values aren't available at debuggerd_init
+// time, and have to be synthesized on request.
+typedef struct {
+ bool (*debuggerd_needs_gwp_asan_recovery)(void* fault_addr);
+ void (*debuggerd_gwp_asan_pre_crash_report)(void* fault_addr);
+ void (*debuggerd_gwp_asan_post_crash_report)(void* fault_addr);
+} gwp_asan_callbacks_t;
+
// These callbacks are called in a signal handler, and thus must be async signal safe.
// If null, the callbacks will not be called.
typedef struct {
debugger_process_info (*get_process_info)();
+ gwp_asan_callbacks_t (*get_gwp_asan_callbacks)();
void (*post_dump)();
} debuggerd_callbacks_t;
void debuggerd_init(debuggerd_callbacks_t* callbacks);
+bool debuggerd_handle_signal(int signal_number, siginfo_t* info, void* context);
// DEBUGGER_ACTION_DUMP_TOMBSTONE and DEBUGGER_ACTION_DUMP_BACKTRACE are both
// triggered via BIONIC_SIGNAL_DEBUGGER. The debugger_action_t is sent via si_value
diff --git a/debuggerd/libdebuggerd/gwp_asan.cpp b/debuggerd/libdebuggerd/gwp_asan.cpp
index d8f74e0..26084dc 100644
--- a/debuggerd/libdebuggerd/gwp_asan.cpp
+++ b/debuggerd/libdebuggerd/gwp_asan.cpp
@@ -88,7 +88,7 @@
thread_id_ = thread_info.tid;
// Grab the internal error address, if it exists.
- uintptr_t internal_crash_address = __gwp_asan_get_internal_crash_address(&state_);
+ uintptr_t internal_crash_address = __gwp_asan_get_internal_crash_address(&state_, crash_address_);
if (internal_crash_address) {
crash_address_ = internal_crash_address;
}
diff --git a/debuggerd/libdebuggerd/include/libdebuggerd/types.h b/debuggerd/libdebuggerd/include/libdebuggerd/types.h
index a51e276..5a2a7ab 100644
--- a/debuggerd/libdebuggerd/include/libdebuggerd/types.h
+++ b/debuggerd/libdebuggerd/include/libdebuggerd/types.h
@@ -50,6 +50,7 @@
uintptr_t scudo_stack_depot = 0;
uintptr_t scudo_region_info = 0;
uintptr_t scudo_ring_buffer = 0;
+ size_t scudo_ring_buffer_size = 0;
bool has_fault_address = false;
uintptr_t untagged_fault_address = 0;
diff --git a/debuggerd/libdebuggerd/scudo.cpp b/debuggerd/libdebuggerd/scudo.cpp
index 5d861f8..5a62fe1 100644
--- a/debuggerd/libdebuggerd/scudo.cpp
+++ b/debuggerd/libdebuggerd/scudo.cpp
@@ -44,9 +44,12 @@
__scudo_get_stack_depot_size());
auto region_info = AllocAndReadFully(process_memory, process_info.scudo_region_info,
__scudo_get_region_info_size());
- auto ring_buffer = AllocAndReadFully(process_memory, process_info.scudo_ring_buffer,
- __scudo_get_ring_buffer_size());
- if (!stack_depot || !region_info || !ring_buffer) {
+ std::unique_ptr<char[]> ring_buffer;
+ if (process_info.scudo_ring_buffer_size != 0) {
+ ring_buffer = AllocAndReadFully(process_memory, process_info.scudo_ring_buffer,
+ process_info.scudo_ring_buffer_size);
+ }
+ if (!stack_depot || !region_info) {
return;
}
diff --git a/debuggerd/libdebuggerd/tombstone_proto_to_text.cpp b/debuggerd/libdebuggerd/tombstone_proto_to_text.cpp
index 28154a7..e4d68f8 100644
--- a/debuggerd/libdebuggerd/tombstone_proto_to_text.cpp
+++ b/debuggerd/libdebuggerd/tombstone_proto_to_text.cpp
@@ -176,8 +176,14 @@
build_id = StringPrintf(" (BuildId: %s)", frame.build_id().c_str());
}
- CB(should_log, " #%02d pc %0*" PRIx64 " %s%s%s", index++, pointer_width(tombstone) * 2,
- frame.rel_pc(), frame.file_name().c_str(), function.c_str(), build_id.c_str());
+ std::string line =
+ StringPrintf(" #%02d pc %0*" PRIx64 " %s", index++, pointer_width(tombstone) * 2,
+ frame.rel_pc(), frame.file_name().c_str());
+ if (frame.file_map_offset() != 0) {
+ line += StringPrintf(" (offset 0x%" PRIx64 ")", frame.file_map_offset());
+ }
+ line += function + build_id;
+ CB(should_log, "%s", line.c_str());
}
}
@@ -303,86 +309,8 @@
}
}
-static void print_main_thread(CallbackType callback, const Tombstone& tombstone,
- const Thread& thread) {
+static void print_memory_maps(CallbackType callback, const Tombstone& tombstone) {
int word_size = pointer_width(tombstone);
- print_thread_header(callback, tombstone, thread, true);
-
- const Signal& signal_info = tombstone.signal_info();
- std::string sender_desc;
-
- if (signal_info.has_sender()) {
- sender_desc =
- StringPrintf(" from pid %d, uid %d", signal_info.sender_pid(), signal_info.sender_uid());
- }
-
- if (!tombstone.has_signal_info()) {
- CBL("signal information missing");
- } else {
- std::string fault_addr_desc;
- if (signal_info.has_fault_address()) {
- fault_addr_desc = StringPrintf("0x%0*" PRIx64, 2 * word_size, signal_info.fault_address());
- } else {
- fault_addr_desc = "--------";
- }
-
- CBL("signal %d (%s), code %d (%s%s), fault addr %s", signal_info.number(),
- signal_info.name().c_str(), signal_info.code(), signal_info.code_name().c_str(),
- sender_desc.c_str(), fault_addr_desc.c_str());
- }
-
- if (tombstone.causes_size() == 1) {
- CBL("Cause: %s", tombstone.causes(0).human_readable().c_str());
- }
-
- if (!tombstone.abort_message().empty()) {
- CBL("Abort message: '%s'", tombstone.abort_message().c_str());
- }
-
- print_thread_registers(callback, tombstone, thread, true);
- print_thread_backtrace(callback, tombstone, thread, true);
-
- if (tombstone.causes_size() > 1) {
- CBS("");
- CBL("Note: multiple potential causes for this crash were detected, listing them in decreasing "
- "order of likelihood.");
- }
-
- for (const Cause& cause : tombstone.causes()) {
- if (tombstone.causes_size() > 1) {
- CBS("");
- CBL("Cause: %s", cause.human_readable().c_str());
- }
-
- if (cause.has_memory_error() && cause.memory_error().has_heap()) {
- const HeapObject& heap_object = cause.memory_error().heap();
-
- if (heap_object.deallocation_backtrace_size() != 0) {
- CBS("");
- CBL("deallocated by thread %" PRIu64 ":", heap_object.deallocation_tid());
- print_backtrace(callback, tombstone, heap_object.deallocation_backtrace(), true);
- }
-
- if (heap_object.allocation_backtrace_size() != 0) {
- CBS("");
- CBL("allocated by thread %" PRIu64 ":", heap_object.allocation_tid());
- print_backtrace(callback, tombstone, heap_object.allocation_backtrace(), true);
- }
- }
- }
-
- print_tag_dump(callback, tombstone);
-
- print_thread_memory_dump(callback, tombstone, thread);
-
- CBS("");
-
- // No memory maps to print.
- if (tombstone.memory_mappings().empty()) {
- CBS("No memory maps found");
- return;
- }
-
const auto format_pointer = [word_size](uint64_t ptr) -> std::string {
if (word_size == 8) {
uint64_t top = ptr >> 32;
@@ -397,6 +325,7 @@
StringPrintf("memory map (%d %s):", tombstone.memory_mappings().size(),
tombstone.memory_mappings().size() == 1 ? "entry" : "entries");
+ const Signal& signal_info = tombstone.signal_info();
bool has_fault_address = signal_info.has_fault_address();
uint64_t fault_address = untag_address(signal_info.fault_address());
bool preamble_printed = false;
@@ -456,6 +385,106 @@
}
}
+static void print_main_thread(CallbackType callback, const Tombstone& tombstone,
+ const Thread& thread) {
+ print_thread_header(callback, tombstone, thread, true);
+
+ const Signal& signal_info = tombstone.signal_info();
+ std::string sender_desc;
+
+ if (signal_info.has_sender()) {
+ sender_desc =
+ StringPrintf(" from pid %d, uid %d", signal_info.sender_pid(), signal_info.sender_uid());
+ }
+
+ bool is_async_mte_crash = false;
+ bool is_mte_crash = false;
+ if (!tombstone.has_signal_info()) {
+ CBL("signal information missing");
+ } else {
+ std::string fault_addr_desc;
+ if (signal_info.has_fault_address()) {
+ fault_addr_desc =
+ StringPrintf("0x%0*" PRIx64, 2 * pointer_width(tombstone), signal_info.fault_address());
+ } else {
+ fault_addr_desc = "--------";
+ }
+
+ CBL("signal %d (%s), code %d (%s%s), fault addr %s", signal_info.number(),
+ signal_info.name().c_str(), signal_info.code(), signal_info.code_name().c_str(),
+ sender_desc.c_str(), fault_addr_desc.c_str());
+#ifdef SEGV_MTEAERR
+ is_async_mte_crash = signal_info.number() == SIGSEGV && signal_info.code() == SEGV_MTEAERR;
+ is_mte_crash = is_async_mte_crash ||
+ (signal_info.number() == SIGSEGV && signal_info.code() == SEGV_MTESERR);
+#endif
+ }
+
+ if (tombstone.causes_size() == 1) {
+ CBL("Cause: %s", tombstone.causes(0).human_readable().c_str());
+ }
+
+ if (!tombstone.abort_message().empty()) {
+ CBL("Abort message: '%s'", tombstone.abort_message().c_str());
+ }
+
+ print_thread_registers(callback, tombstone, thread, true);
+ if (is_async_mte_crash) {
+ CBL("Note: This crash is a delayed async MTE crash. Memory corruption has occurred");
+ CBL(" in this process. The stack trace below is the first system call or context");
+ CBL(" switch that was executed after the memory corruption happened.");
+ }
+ print_thread_backtrace(callback, tombstone, thread, true);
+
+ if (tombstone.causes_size() > 1) {
+ CBS("");
+ CBL("Note: multiple potential causes for this crash were detected, listing them in decreasing "
+ "order of likelihood.");
+ }
+
+ for (const Cause& cause : tombstone.causes()) {
+ if (tombstone.causes_size() > 1) {
+ CBS("");
+ CBL("Cause: %s", cause.human_readable().c_str());
+ }
+
+ if (cause.has_memory_error() && cause.memory_error().has_heap()) {
+ const HeapObject& heap_object = cause.memory_error().heap();
+
+ if (heap_object.deallocation_backtrace_size() != 0) {
+ CBS("");
+ CBL("deallocated by thread %" PRIu64 ":", heap_object.deallocation_tid());
+ print_backtrace(callback, tombstone, heap_object.deallocation_backtrace(), true);
+ }
+
+ if (heap_object.allocation_backtrace_size() != 0) {
+ CBS("");
+ CBL("allocated by thread %" PRIu64 ":", heap_object.allocation_tid());
+ print_backtrace(callback, tombstone, heap_object.allocation_backtrace(), true);
+ }
+ }
+ }
+
+ print_tag_dump(callback, tombstone);
+
+ if (is_mte_crash) {
+ CBS("");
+ CBL("Learn more about MTE reports: "
+ "https://source.android.com/docs/security/test/memory-safety/mte-reports");
+ }
+
+ print_thread_memory_dump(callback, tombstone, thread);
+
+ CBS("");
+
+ // No memory maps to print.
+ if (!tombstone.memory_mappings().empty()) {
+ print_memory_maps(callback, tombstone);
+ } else {
+ CBS("No memory maps found");
+ }
+}
+
void print_logs(CallbackType callback, const Tombstone& tombstone, int tail) {
for (const auto& buffer : tombstone.log_buffers()) {
if (tail) {
diff --git a/debuggerd/protocol.h b/debuggerd/protocol.h
index f33b2f0..b60cf5b 100644
--- a/debuggerd/protocol.h
+++ b/debuggerd/protocol.h
@@ -98,6 +98,8 @@
uintptr_t scudo_stack_depot;
uintptr_t scudo_region_info;
uintptr_t scudo_ring_buffer;
+ size_t scudo_ring_buffer_size;
+ bool recoverable_gwp_asan_crash;
};
struct __attribute__((__packed__)) CrashInfo {
diff --git a/debuggerd/test_permissive_mte/Android.bp b/debuggerd/test_permissive_mte/Android.bp
index 1c09240..d3f7520 100644
--- a/debuggerd/test_permissive_mte/Android.bp
+++ b/debuggerd/test_permissive_mte/Android.bp
@@ -18,6 +18,7 @@
cc_binary {
name: "mte_crash",
+ tidy: false,
srcs: ["mte_crash.cpp"],
sanitize: {
memtag_heap: true,
diff --git a/fastboot/Android.bp b/fastboot/Android.bp
index 765174b..f66b01d 100644
--- a/fastboot/Android.bp
+++ b/fastboot/Android.bp
@@ -170,7 +170,7 @@
"android.hardware.fastboot@1.1",
"android.hardware.fastboot-V1-ndk",
"android.hardware.health@2.0",
- "android.hardware.health-V1-ndk",
+ "android.hardware.health-V2-ndk",
"libasyncio",
"libbase",
"libbinder_ndk",
@@ -286,6 +286,7 @@
"fastboot.cpp",
"fs.cpp",
"socket.cpp",
+ "super_flash_helper.cpp",
"tcp.cpp",
"udp.cpp",
"util.cpp",
@@ -390,6 +391,8 @@
enabled: false,
},
},
+
+ test_suites: ["general-tests"],
}
cc_test_host {
diff --git a/fastboot/TEST_MAPPING b/fastboot/TEST_MAPPING
new file mode 100644
index 0000000..10f3d82
--- /dev/null
+++ b/fastboot/TEST_MAPPING
@@ -0,0 +1,7 @@
+{
+ "presubmit": [
+ {
+ "name": "fastboot_test"
+ }
+ ]
+}
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp
index f1b82e9..e739404 100644
--- a/fastboot/fastboot.cpp
+++ b/fastboot/fastboot.cpp
@@ -53,6 +53,7 @@
#include <android-base/endian.h>
#include <android-base/file.h>
+#include <android-base/logging.h>
#include <android-base/macros.h>
#include <android-base/parseint.h>
#include <android-base/parsenetaddress.h>
@@ -62,6 +63,7 @@
#include <build/version.h>
#include <libavb/libavb.h>
#include <liblp/liblp.h>
+#include <liblp/super_layout_builder.h>
#include <platform_tools_version.h>
#include <sparse/sparse.h>
#include <ziparchive/zip_archive.h>
@@ -71,6 +73,8 @@
#include "diagnose_usb.h"
#include "fastboot_driver.h"
#include "fs.h"
+#include "super_flash_helper.h"
+#include "task.h"
#include "tcp.h"
#include "transport.h"
#include "udp.h"
@@ -113,7 +117,7 @@
struct fastboot_buffer {
enum fb_buffer_type type;
- void* data;
+ std::vector<SparsePtr> files;
int64_t sz;
unique_fd fd;
int64_t image_size;
@@ -246,14 +250,6 @@
fprintf(stderr, "(bootloader) %s\n", info.c_str());
}
-static int64_t get_file_size(borrowed_fd fd) {
- struct stat sb;
- if (fstat(fd.get(), &sb) == -1) {
- die("could not get file size");
- }
- return sb.st_size;
-}
-
bool ReadFileToVector(const std::string& file, std::vector<char>* out) {
out->clear();
@@ -824,27 +820,32 @@
fprintf(stderr, "--------------------------------------------\n");
}
-static struct sparse_file** load_sparse_files(int fd, int64_t max_size) {
- struct sparse_file* s = sparse_file_import_auto(fd, false, true);
- if (!s) die("cannot sparse read file");
-
+static std::vector<SparsePtr> resparse_file(sparse_file* s, int64_t max_size) {
if (max_size <= 0 || max_size > std::numeric_limits<uint32_t>::max()) {
die("invalid max size %" PRId64, max_size);
}
- int files = sparse_file_resparse(s, max_size, nullptr, 0);
+ const int files = sparse_file_resparse(s, max_size, nullptr, 0);
if (files < 0) die("Failed to resparse");
- sparse_file** out_s =
- reinterpret_cast<sparse_file**>(calloc(sizeof(struct sparse_file*), files + 1));
- if (!out_s) die("Failed to allocate sparse file array");
+ auto temp = std::make_unique<sparse_file*[]>(files);
+ const int rv = sparse_file_resparse(s, max_size, temp.get(), files);
+ if (rv < 0) die("Failed to resparse");
- files = sparse_file_resparse(s, max_size, out_s, files);
- if (files < 0) die("Failed to resparse");
-
+ std::vector<SparsePtr> out_s;
+ for (int i = 0; i < files; i++) {
+ out_s.emplace_back(temp[i], sparse_file_destroy);
+ }
return out_s;
}
+static std::vector<SparsePtr> load_sparse_files(int fd, int64_t max_size) {
+ SparsePtr s(sparse_file_import_auto(fd, false, true), sparse_file_destroy);
+ if (!s) die("cannot sparse read file");
+
+ return resparse_file(s.get(), max_size);
+}
+
static uint64_t get_uint_var(const char* var_name) {
std::string value_str;
if (fb->GetVar(var_name, &value_str) != fastboot::SUCCESS || value_str.empty()) {
@@ -903,15 +904,13 @@
int64_t limit = get_sparse_limit(sz);
buf->fd = std::move(fd);
if (limit) {
- sparse_file** s = load_sparse_files(buf->fd.get(), limit);
- if (s == nullptr) {
+ buf->files = load_sparse_files(buf->fd.get(), limit);
+ if (buf->files.empty()) {
return false;
}
buf->type = FB_BUFFER_SPARSE;
- buf->data = s;
} else {
buf->type = FB_BUFFER_FD;
- buf->data = nullptr;
buf->sz = sz;
}
@@ -996,6 +995,8 @@
fb->GetVar("partition-type:vbmeta_b", &partition_type) == fastboot::SUCCESS;
}
+// Note: this only works in userspace fastboot. In the bootloader, use
+// should_flash_in_userspace().
static bool is_logical(const std::string& partition) {
std::string value;
return fb->GetVar("is-logical:" + partition, &value) == fastboot::SUCCESS && value == "yes";
@@ -1078,11 +1079,19 @@
lseek(buf->fd.get(), 0, SEEK_SET);
}
-static void flash_buf(const std::string& partition, struct fastboot_buffer* buf) {
- sparse_file** s;
+static void flash_partition_files(const std::string& partition,
+ const std::vector<SparsePtr>& files) {
+ for (size_t i = 0; i < files.size(); i++) {
+ sparse_file* s = files[i].get();
+ int64_t sz = sparse_file_len(s, true, false);
+ fb->FlashPartition(partition, s, sz, i + 1, files.size());
+ }
+}
+static void flash_buf(const std::string& partition, struct fastboot_buffer* buf) {
if (partition == "boot" || partition == "boot_a" || partition == "boot_b" ||
- partition == "init_boot" || partition == "init_boot_a" || partition == "init_boot_b") {
+ partition == "init_boot" || partition == "init_boot_a" || partition == "init_boot_b" ||
+ partition == "recovery" || partition == "recovery_a" || partition == "recovery_b") {
copy_avb_footer(partition, buf);
}
@@ -1102,18 +1111,7 @@
switch (buf->type) {
case FB_BUFFER_SPARSE: {
- std::vector<std::pair<sparse_file*, int64_t>> sparse_files;
- s = reinterpret_cast<sparse_file**>(buf->data);
- while (*s) {
- int64_t sz = sparse_file_len(*s, true, false);
- sparse_files.emplace_back(*s, sz);
- ++s;
- }
-
- for (size_t i = 0; i < sparse_files.size(); ++i) {
- const auto& pair = sparse_files[i];
- fb->FlashPartition(partition, pair.first, pair.second, i + 1, sparse_files.size());
- }
+ flash_partition_files(partition, buf->files);
break;
}
case FB_BUFFER_FD:
@@ -1401,13 +1399,6 @@
}
}
-class ImageSource {
- public:
- virtual ~ImageSource(){};
- virtual bool ReadFile(const std::string& name, std::vector<char>* out) const = 0;
- virtual unique_fd OpenFile(const std::string& name) const = 0;
-};
-
class FlashAllTool {
public:
FlashAllTool(const ImageSource& source, const std::string& slot_override, bool skip_secondary,
@@ -1417,20 +1408,30 @@
private:
void CheckRequirements();
- void DetermineSecondarySlot();
+ void DetermineSlot();
void CollectImages();
void FlashImages(const std::vector<std::pair<const Image*, std::string>>& images);
void FlashImage(const Image& image, const std::string& slot, fastboot_buffer* buf);
void UpdateSuperPartition();
+ bool OptimizedFlashSuper();
+
+ // If the image uses the default slot, or the user specified "all", then
+ // the paired string will be empty. If the image requests a specific slot
+ // (for example, system_other) it is specified instead.
+ using ImageEntry = std::pair<const Image*, std::string>;
+
+ std::string GetPartitionName(const ImageEntry& entry);
const ImageSource& source_;
std::string slot_override_;
bool skip_secondary_;
bool wipe_;
bool force_flash_;
+ std::string current_slot_;
std::string secondary_slot_;
- std::vector<std::pair<const Image*, std::string>> boot_images_;
- std::vector<std::pair<const Image*, std::string>> os_images_;
+
+ std::vector<ImageEntry> boot_images_;
+ std::vector<ImageEntry> os_images_;
};
FlashAllTool::FlashAllTool(const ImageSource& source, const std::string& slot_override,
@@ -1453,7 +1454,7 @@
set_active(slot_override_);
}
- DetermineSecondarySlot();
+ DetermineSlot();
CollectImages();
CancelSnapshotIfNeeded();
@@ -1462,24 +1463,92 @@
// or in bootloader fastboot.
FlashImages(boot_images_);
- // Sync the super partition. This will reboot to userspace fastboot if needed.
- UpdateSuperPartition();
+ if (!OptimizedFlashSuper()) {
+ // Sync the super partition. This will reboot to userspace fastboot if needed.
+ UpdateSuperPartition();
- // Resize any logical partition to 0, so each partition is reset to 0
- // extents, and will achieve more optimal allocation.
- for (const auto& [image, slot] : os_images_) {
- auto resize_partition = [](const std::string& partition) -> void {
- if (is_logical(partition)) {
- fb->ResizePartition(partition, "0");
- }
- };
- do_for_partitions(image->part_name, slot, resize_partition, false);
+ // Resize any logical partition to 0, so each partition is reset to 0
+ // extents, and will achieve more optimal allocation.
+ for (const auto& [image, slot] : os_images_) {
+ auto resize_partition = [](const std::string& partition) -> void {
+ if (is_logical(partition)) {
+ fb->ResizePartition(partition, "0");
+ }
+ };
+ do_for_partitions(image->part_name, slot, resize_partition, false);
+ }
}
// Flash OS images, resizing logical partitions as needed.
FlashImages(os_images_);
}
+bool FlashAllTool::OptimizedFlashSuper() {
+ if (!supports_AB()) {
+ LOG(VERBOSE) << "Cannot optimize flashing super on non-AB device";
+ return false;
+ }
+ if (slot_override_ == "all") {
+ LOG(VERBOSE) << "Cannot optimize flashing super for all slots";
+ return false;
+ }
+
+ // Does this device use dynamic partitions at all?
+ unique_fd fd = source_.OpenFile("super_empty.img");
+ if (fd < 0) {
+ LOG(VERBOSE) << "could not open super_empty.img";
+ return false;
+ }
+
+ // Try to find whether there is a super partition.
+ std::string super_name;
+ if (fb->GetVar("super-partition-name", &super_name) != fastboot::SUCCESS) {
+ super_name = "super";
+ }
+ std::string partition_size_str;
+ if (fb->GetVar("partition-size:" + super_name, &partition_size_str) != fastboot::SUCCESS) {
+ LOG(VERBOSE) << "Cannot optimize super flashing: could not determine super partition";
+ return false;
+ }
+
+ SuperFlashHelper helper(source_);
+ if (!helper.Open(fd)) {
+ return false;
+ }
+
+ for (const auto& entry : os_images_) {
+ auto partition = GetPartitionName(entry);
+ auto image = entry.first;
+
+ if (!helper.AddPartition(partition, image->img_name, image->optional_if_no_image)) {
+ return false;
+ }
+ }
+
+ auto s = helper.GetSparseLayout();
+ if (!s) {
+ return false;
+ }
+
+ std::vector<SparsePtr> files;
+ if (int limit = get_sparse_limit(sparse_file_len(s.get(), false, false))) {
+ files = resparse_file(s.get(), limit);
+ } else {
+ files.emplace_back(std::move(s));
+ }
+
+ // Send the data to the device.
+ flash_partition_files(super_name, files);
+
+ // Remove images that we already flashed, just in case we have non-dynamic OS images.
+ auto remove_if_callback = [&, this](const ImageEntry& entry) -> bool {
+ return helper.WillFlash(GetPartitionName(entry));
+ };
+ os_images_.erase(std::remove_if(os_images_.begin(), os_images_.end(), remove_if_callback),
+ os_images_.end());
+ return true;
+}
+
void FlashAllTool::CheckRequirements() {
std::vector<char> contents;
if (!source_.ReadFile("android-info.txt", &contents)) {
@@ -1488,7 +1557,13 @@
::CheckRequirements({contents.data(), contents.size()}, force_flash_);
}
-void FlashAllTool::DetermineSecondarySlot() {
+void FlashAllTool::DetermineSlot() {
+ if (slot_override_.empty()) {
+ current_slot_ = get_current_slot();
+ } else {
+ current_slot_ = slot_override_;
+ }
+
if (skip_secondary_) {
return;
}
@@ -1587,6 +1662,20 @@
}
}
+std::string FlashAllTool::GetPartitionName(const ImageEntry& entry) {
+ auto slot = entry.second;
+ if (slot.empty()) {
+ slot = current_slot_;
+ }
+ if (slot.empty()) {
+ return entry.first->part_name;
+ }
+ if (slot == "all") {
+ LOG(FATAL) << "Cannot retrieve a singular name when using all slots";
+ }
+ return entry.first->part_name + "_" + slot;
+}
+
class ZipImageSource final : public ImageSource {
public:
explicit ZipImageSource(ZipArchiveHandle zip) : zip_(zip) {}
@@ -1781,20 +1870,7 @@
if (!metadata) {
return false;
}
- for (const auto& partition : metadata->partitions) {
- auto candidate = android::fs_mgr::GetPartitionName(partition);
- if (partition.attributes & LP_PARTITION_ATTR_SLOT_SUFFIXED) {
- // On retrofit devices, we don't know if, or whether, the A or B
- // slot has been flashed for dynamic partitions. Instead we add
- // both names to the list as a conservative guess.
- if (candidate + "_a" == partition_name || candidate + "_b" == partition_name) {
- return true;
- }
- } else if (candidate == partition_name) {
- return true;
- }
- }
- return false;
+ return should_flash_in_userspace(*metadata.get(), partition_name);
}
static bool wipe_super(const android::fs_mgr::LpMetadata& metadata, const std::string& slot,
@@ -1867,7 +1943,19 @@
}
}
+static void FastbootLogger(android::base::LogId /* id */, android::base::LogSeverity /* severity */,
+ const char* /* tag */, const char* /* file */, unsigned int /* line */,
+ const char* message) {
+ verbose("%s", message);
+}
+
+static void FastbootAborter(const char* message) {
+ die("%s", message);
+}
+
int FastBootTool::Main(int argc, char* argv[]) {
+ android::base::InitLogging(argv, FastbootLogger, FastbootAborter);
+
bool wants_wipe = false;
bool wants_reboot = false;
bool wants_reboot_bootloader = false;
diff --git a/fastboot/fastboot.h b/fastboot/fastboot.h
index c23793a..d7ad5df 100644
--- a/fastboot/fastboot.h
+++ b/fastboot/fastboot.h
@@ -25,6 +25,7 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
+#pragma once
#include <bootimg.h>
diff --git a/fastboot/fastboot_driver.h b/fastboot/fastboot_driver.h
index bccd668..b422c91 100644
--- a/fastboot/fastboot_driver.h
+++ b/fastboot/fastboot_driver.h
@@ -32,6 +32,7 @@
#include <string>
#include <vector>
+#include <android-base/endian.h>
#include <android-base/logging.h>
#include <android-base/stringprintf.h>
#include <android-base/unique_fd.h>
diff --git a/fastboot/super_flash_helper.cpp b/fastboot/super_flash_helper.cpp
new file mode 100644
index 0000000..b617ce8
--- /dev/null
+++ b/fastboot/super_flash_helper.cpp
@@ -0,0 +1,125 @@
+//
+// Copyright (C) 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+#include "super_flash_helper.h"
+
+#include <android-base/logging.h>
+
+#include "util.h"
+
+using android::base::borrowed_fd;
+using android::base::unique_fd;
+using android::fs_mgr::SuperImageExtent;
+
+SuperFlashHelper::SuperFlashHelper(const ImageSource& source) : source_(source) {}
+
+bool SuperFlashHelper::Open(borrowed_fd fd) {
+ if (!builder_.Open(fd)) {
+ LOG(VERBOSE) << "device does not support optimized super flashing";
+ return false;
+ }
+
+ base_metadata_ = builder_.Export();
+ return !!base_metadata_;
+}
+
+bool SuperFlashHelper::IncludeInSuper(const std::string& partition) {
+ return should_flash_in_userspace(*base_metadata_.get(), partition);
+}
+
+bool SuperFlashHelper::AddPartition(const std::string& partition, const std::string& image_name,
+ bool optional) {
+ if (!IncludeInSuper(partition)) {
+ return true;
+ }
+ auto iter = image_fds_.find(image_name);
+ if (iter == image_fds_.end()) {
+ unique_fd fd = source_.OpenFile(image_name);
+ if (fd < 0) {
+ if (!optional) {
+ LOG(VERBOSE) << "could not find partition image: " << image_name;
+ return false;
+ }
+ return true;
+ }
+ if (is_sparse_file(fd)) {
+ LOG(VERBOSE) << "cannot optimize dynamic partitions with sparse images";
+ return false;
+ }
+ iter = image_fds_.emplace(image_name, std::move(fd)).first;
+ }
+
+ if (!builder_.AddPartition(partition, image_name, get_file_size(iter->second))) {
+ return false;
+ }
+
+ will_flash_.emplace(partition);
+ return true;
+}
+
+SparsePtr SuperFlashHelper::GetSparseLayout() {
+ // Cache extents since the sparse ptr depends on data pointers.
+ if (extents_.empty()) {
+ extents_ = builder_.GetImageLayout();
+ if (extents_.empty()) {
+ LOG(VERBOSE) << "device does not support optimized super flashing";
+ return {nullptr, nullptr};
+ }
+ }
+
+ unsigned int block_size = base_metadata_->geometry.logical_block_size;
+ int64_t flashed_size = extents_.back().offset + extents_.back().size;
+ SparsePtr s(sparse_file_new(block_size, flashed_size), sparse_file_destroy);
+
+ for (const auto& extent : extents_) {
+ if (extent.offset / block_size > UINT_MAX) {
+ // Super image is too big to send via sparse files (>8TB).
+ LOG(VERBOSE) << "super image is too big to flash";
+ return {nullptr, nullptr};
+ }
+ unsigned int block = extent.offset / block_size;
+
+ int rv = 0;
+ switch (extent.type) {
+ case SuperImageExtent::Type::DONTCARE:
+ break;
+ case SuperImageExtent::Type::ZERO:
+ rv = sparse_file_add_fill(s.get(), 0, extent.size, block);
+ break;
+ case SuperImageExtent::Type::DATA:
+ rv = sparse_file_add_data(s.get(), extent.blob->data(), extent.size, block);
+ break;
+ case SuperImageExtent::Type::PARTITION: {
+ auto iter = image_fds_.find(extent.image_name);
+ if (iter == image_fds_.end()) {
+ LOG(FATAL) << "image added but not found: " << extent.image_name;
+ return {nullptr, nullptr};
+ }
+ rv = sparse_file_add_fd(s.get(), iter->second.get(), extent.image_offset,
+ extent.size, block);
+ break;
+ }
+ default:
+ LOG(VERBOSE) << "unrecognized extent type in super image layout";
+ return {nullptr, nullptr};
+ }
+ if (rv) {
+ LOG(VERBOSE) << "sparse failure building super image layout";
+ return {nullptr, nullptr};
+ }
+ }
+ return s;
+}
diff --git a/fastboot/super_flash_helper.h b/fastboot/super_flash_helper.h
new file mode 100644
index 0000000..29c15d0
--- /dev/null
+++ b/fastboot/super_flash_helper.h
@@ -0,0 +1,56 @@
+//
+// Copyright (C) 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+#pragma once
+
+#include <memory>
+#include <string>
+#include <unordered_map>
+#include <unordered_set>
+
+#include <android-base/unique_fd.h>
+#include <liblp/liblp.h>
+#include <liblp/super_layout_builder.h>
+
+#include "util.h"
+
+class SuperFlashHelper final {
+ public:
+ explicit SuperFlashHelper(const ImageSource& source);
+
+ bool Open(android::base::borrowed_fd fd);
+ bool IncludeInSuper(const std::string& partition);
+ bool AddPartition(const std::string& partition, const std::string& image_name, bool optional);
+
+ // Note: the SparsePtr if non-null should not outlive SuperFlashHelper, since
+ // it depends on open fds and data pointers.
+ SparsePtr GetSparseLayout();
+
+ bool WillFlash(const std::string& partition) const {
+ return will_flash_.find(partition) != will_flash_.end();
+ }
+
+ private:
+ const ImageSource& source_;
+ android::fs_mgr::SuperLayoutBuilder builder_;
+ std::unique_ptr<android::fs_mgr::LpMetadata> base_metadata_;
+ std::vector<android::fs_mgr::SuperImageExtent> extents_;
+
+ // Cache open image fds. This keeps them alive while we flash the sparse
+ // file.
+ std::unordered_map<std::string, android::base::unique_fd> image_fds_;
+ std::unordered_set<std::string> will_flash_;
+};
diff --git a/fastboot/task.h b/fastboot/task.h
new file mode 100644
index 0000000..8b3fce9
--- /dev/null
+++ b/fastboot/task.h
@@ -0,0 +1,31 @@
+//
+// Copyright (C) 2020 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+#pragma once
+
+#include <sstream>
+#include <string>
+
+#include "fastboot.h"
+#include "fastboot_driver.h"
+#include "util.h"
+
+class Task {
+ public:
+ Task() = default;
+ virtual void Run() = 0;
+ virtual bool Parse(const std::string& text) = 0;
+ virtual ~Task() = default;
+};
diff --git a/fastboot/usb_osx.cpp b/fastboot/usb_osx.cpp
index 610eebf..a4b9307 100644
--- a/fastboot/usb_osx.cpp
+++ b/fastboot/usb_osx.cpp
@@ -191,16 +191,30 @@
// Iterate over the endpoints for this interface and see if there
// are any that do bulk in/out.
- for (UInt8 endpoint = 1; endpoint <= interfaceNumEndpoints; endpoint++) {
+ for (UInt8 endpoint = 1; endpoint <= interfaceNumEndpoints; ++endpoint) {
UInt8 transferType;
- UInt16 maxPacketSize;
+ UInt16 endPointMaxPacketSize = 0;
UInt8 interval;
+
+ // Attempt to retrieve the 'true' packet-size from supported interface.
+ kr = (*interface)
+ ->GetEndpointProperties(interface, 0, endpoint,
+ kUSBOut,
+ &transferType,
+ &endPointMaxPacketSize, &interval);
+ if (kr == kIOReturnSuccess && !endPointMaxPacketSize) {
+ ERR("GetEndpointProperties() returned zero len packet-size");
+ }
+
+ UInt16 pipePropMaxPacketSize;
UInt8 number;
UInt8 direction;
+ // Proceed with extracting the transfer direction, so we can fill in the
+ // appropriate fields (bulkIn or bulkOut).
kr = (*interface)->GetPipeProperties(interface, endpoint,
&direction,
- &number, &transferType, &maxPacketSize, &interval);
+ &number, &transferType, &pipePropMaxPacketSize, &interval);
if (kr == 0) {
if (transferType != kUSBBulk) {
@@ -216,7 +230,8 @@
}
if (handle->info.ifc_protocol == 0x01) {
- handle->zero_mask = maxPacketSize - 1;
+ handle->zero_mask = (endPointMaxPacketSize == 0) ?
+ pipePropMaxPacketSize - 1 : endPointMaxPacketSize - 1;
}
} else {
ERR("could not get pipe properties for endpoint %u (%08x)\n", endpoint, kr);
diff --git a/fastboot/util.cpp b/fastboot/util.cpp
index 900d6ea..ded54a5 100644
--- a/fastboot/util.cpp
+++ b/fastboot/util.cpp
@@ -30,11 +30,13 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-
+#include <sys/stat.h>
#include <sys/time.h>
#include "util.h"
+using android::base::borrowed_fd;
+
static bool g_verbose = false;
double now() {
@@ -73,3 +75,34 @@
}
fprintf(stderr, "\n");
}
+
+bool should_flash_in_userspace(const android::fs_mgr::LpMetadata& metadata,
+ const std::string& partition_name) {
+ for (const auto& partition : metadata.partitions) {
+ auto candidate = android::fs_mgr::GetPartitionName(partition);
+ if (partition.attributes & LP_PARTITION_ATTR_SLOT_SUFFIXED) {
+ // On retrofit devices, we don't know if, or whether, the A or B
+ // slot has been flashed for dynamic partitions. Instead we add
+ // both names to the list as a conservative guess.
+ if (candidate + "_a" == partition_name || candidate + "_b" == partition_name) {
+ return true;
+ }
+ } else if (candidate == partition_name) {
+ return true;
+ }
+ }
+ return false;
+}
+
+bool is_sparse_file(borrowed_fd fd) {
+ SparsePtr s(sparse_file_import(fd.get(), false, false), sparse_file_destroy);
+ return !!s;
+}
+
+int64_t get_file_size(borrowed_fd fd) {
+ struct stat sb;
+ if (fstat(fd.get(), &sb) == -1) {
+ die("could not get file size");
+ }
+ return sb.st_size;
+}
diff --git a/fastboot/util.h b/fastboot/util.h
index c719df2..290d0d5 100644
--- a/fastboot/util.h
+++ b/fastboot/util.h
@@ -4,8 +4,14 @@
#include <stdlib.h>
#include <string>
+#include <vector>
+#include <android-base/unique_fd.h>
#include <bootimg.h>
+#include <liblp/liblp.h>
+#include <sparse/sparse.h>
+
+using SparsePtr = std::unique_ptr<sparse_file, decltype(&sparse_file_destroy)>;
/* util stuff */
double now();
@@ -19,3 +25,15 @@
void verbose(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
void die(const std::string& str) __attribute__((__noreturn__));
+
+bool should_flash_in_userspace(const android::fs_mgr::LpMetadata& metadata,
+ const std::string& partition_name);
+bool is_sparse_file(android::base::borrowed_fd fd);
+int64_t get_file_size(android::base::borrowed_fd fd);
+
+class ImageSource {
+ public:
+ virtual ~ImageSource(){};
+ virtual bool ReadFile(const std::string& name, std::vector<char>* out) const = 0;
+ virtual android::base::unique_fd OpenFile(const std::string& name) const = 0;
+};
diff --git a/fs_mgr/TEST_MAPPING b/fs_mgr/TEST_MAPPING
index 432aa4f..b6710d5 100644
--- a/fs_mgr/TEST_MAPPING
+++ b/fs_mgr/TEST_MAPPING
@@ -22,10 +22,33 @@
"name": "vts_libsnapshot_test"
},
{
+ "name": "vab_legacy_tests"
+ },
+ {
+ "name": "vabc_legacy_tests"
+ },
+ {
"name": "libsnapshot_fuzzer_test"
},
{
"name": "cow_api_test"
}
+ ],
+ "kernel-presubmit": [
+ {
+ "name": "vts_libdm_test"
+ },
+ {
+ "name": "vts_core_liblp_test"
+ },
+ {
+ "name": "vts_libsnapshot_test"
+ },
+ {
+ "name": "vab_legacy_tests"
+ },
+ {
+ "name": "vabc_legacy_tests"
+ }
]
}
diff --git a/fs_mgr/fs_mgr.cpp b/fs_mgr/fs_mgr.cpp
index 1c1ab48..742cdfa 100644
--- a/fs_mgr/fs_mgr.cpp
+++ b/fs_mgr/fs_mgr.cpp
@@ -1176,6 +1176,10 @@
return false;
}
+ // dm-bow will not load if size is not a multiple of 4096
+ // rounding down does not hurt, since ext4 will only use full blocks
+ size &= ~7;
+
android::dm::DmTable table;
auto bowTarget =
std::make_unique<android::dm::DmTargetBow>(0, size, entry->blk_device);
diff --git a/fs_mgr/fs_mgr_fstab.cpp b/fs_mgr/fs_mgr_fstab.cpp
index 7189a71..598a3d2 100644
--- a/fs_mgr/fs_mgr_fstab.cpp
+++ b/fs_mgr/fs_mgr_fstab.cpp
@@ -304,19 +304,16 @@
if (!ParseByteCount(arg, &entry->zram_backingdev_size)) {
LWARNING << "Warning: zram_backingdev_size= flag malformed: " << arg;
}
- } else if (StartsWith(flag, "zoned_device=")) {
- std::string zoned;
- if (ReadFileToString("/sys/class/block/" + arg + "/queue/zoned", &zoned) &&
- android::base::StartsWith(zoned, "host-managed")) {
- entry->zoned_device = "/dev/block/" + arg;
+ } else if (flag == "zoned_device") {
+ if (access("/dev/block/by-name/zoned_device", F_OK) == 0) {
+ entry->zoned_device = "/dev/block/by-name/zoned_device";
// atgc in f2fs does not support a zoned device
auto options = Split(entry->fs_options, ",");
options.erase(std::remove(options.begin(), options.end(), "atgc"), options.end());
entry->fs_options = android::base::Join(options, ",");
- LINFO << "Removed ATGC in fs_options as " << entry->fs_options;
- } else {
- LWARNING << "Warning: cannot find the zoned device: " << arg;
+ LINFO << "Removed ATGC in fs_options as " << entry->fs_options
+ << " for zoned device=" << entry->zoned_device;
}
} else {
LWARNING << "Warning: unknown flag: " << flag;
@@ -488,13 +485,21 @@
return boot_devices;
}
-template <typename Pred>
-std::vector<FstabEntry*> GetEntriesByPred(Fstab* fstab, const Pred& pred) {
+// Helper class that maps Fstab* -> FstabEntry; const Fstab* -> const FstabEntry.
+template <typename FstabPtr>
+struct FstabPtrEntry {
+ using is_const_fstab = std::is_const<std::remove_pointer_t<FstabPtr>>;
+ using type = std::conditional_t<is_const_fstab::value, const FstabEntry, FstabEntry>;
+};
+
+template <typename FstabPtr, typename FstabPtrEntryType = typename FstabPtrEntry<FstabPtr>::type,
+ typename Pred>
+std::vector<FstabPtrEntryType*> GetEntriesByPred(FstabPtr fstab, const Pred& pred) {
if (fstab == nullptr) {
return {};
}
- std::vector<FstabEntry*> entries;
- for (auto&& entry : *fstab) {
+ std::vector<FstabPtrEntryType*> entries;
+ for (FstabPtrEntryType& entry : *fstab) {
if (pred(entry)) {
entries.push_back(&entry);
}
@@ -835,25 +840,27 @@
return !fstab->empty();
}
-FstabEntry* GetEntryForMountPoint(Fstab* fstab, const std::string& path) {
- if (fstab == nullptr) {
- return nullptr;
- }
-
- for (auto& entry : *fstab) {
- if (entry.mount_point == path) {
- return &entry;
- }
- }
-
- return nullptr;
-}
-
std::vector<FstabEntry*> GetEntriesForMountPoint(Fstab* fstab, const std::string& path) {
return GetEntriesByPred(fstab,
[&path](const FstabEntry& entry) { return entry.mount_point == path; });
}
+std::vector<const FstabEntry*> GetEntriesForMountPoint(const Fstab* fstab,
+ const std::string& path) {
+ return GetEntriesByPred(fstab,
+ [&path](const FstabEntry& entry) { return entry.mount_point == path; });
+}
+
+FstabEntry* GetEntryForMountPoint(Fstab* fstab, const std::string& path) {
+ std::vector<FstabEntry*> entries = GetEntriesForMountPoint(fstab, path);
+ return entries.empty() ? nullptr : entries.front();
+}
+
+const FstabEntry* GetEntryForMountPoint(const Fstab* fstab, const std::string& path) {
+ std::vector<const FstabEntry*> entries = GetEntriesForMountPoint(fstab, path);
+ return entries.empty() ? nullptr : entries.front();
+}
+
std::set<std::string> GetBootDevices() {
// First check bootconfig, then kernel commandline, then the device tree
std::string dt_file_name = get_android_dt_dir() + "/boot_devices";
diff --git a/fs_mgr/fs_mgr_overlayfs.cpp b/fs_mgr/fs_mgr_overlayfs.cpp
index bb24abf..6349c20 100644
--- a/fs_mgr/fs_mgr_overlayfs.cpp
+++ b/fs_mgr/fs_mgr_overlayfs.cpp
@@ -116,8 +116,7 @@
// For non-A/B devices prefer cache backing storage if
// kPreferCacheBackingStorageProp property set.
- if (!IsABDevice() &&
- android::base::GetBoolProperty(kPreferCacheBackingStorageProp, false) &&
+ if (!IsABDevice() && android::base::GetBoolProperty(kPreferCacheBackingStorageProp, false) &&
android::base::GetIntProperty("ro.vendor.api_level", -1) < __ANDROID_API_T__) {
return {kCacheMountPoint, kScratchMountPoint};
}
@@ -332,8 +331,14 @@
return major > 5 || (major == 5 && minor >= 15);
}
+const std::string fs_mgr_mount_point(const std::string& mount_point) {
+ if ("/"s != mount_point) return mount_point;
+ return "/system";
+}
+
// default options for mount_point, returns empty string for none available.
-std::string fs_mgr_get_overlayfs_options(const std::string& mount_point) {
+std::string fs_mgr_get_overlayfs_options(const FstabEntry& entry) {
+ const auto mount_point = fs_mgr_mount_point(entry.mount_point);
auto candidate = fs_mgr_get_overlayfs_candidate(mount_point);
if (candidate.empty()) return "";
auto ret = kLowerdirOption + mount_point + "," + kUpperdirOption + candidate + kUpperName +
@@ -344,14 +349,14 @@
if (KernelSupportsUserXattrs()) {
ret += ",userxattr";
}
+ for (const auto& flag : android::base::Split(entry.fs_options, ",")) {
+ if (android::base::StartsWith(flag, "context=")) {
+ ret += "," + flag;
+ }
+ }
return ret;
}
-const std::string fs_mgr_mount_point(const std::string& mount_point) {
- if ("/"s != mount_point) return mount_point;
- return "/system";
-}
-
constexpr char kOverlayfsFileContext[] = "u:object_r:overlayfs_file:s0";
class AutoSetFsCreateCon final {
@@ -710,8 +715,9 @@
return info;
}
-bool fs_mgr_overlayfs_mount(const std::string& mount_point) {
- auto options = fs_mgr_get_overlayfs_options(mount_point);
+bool fs_mgr_overlayfs_mount(const FstabEntry& entry) {
+ const auto mount_point = fs_mgr_mount_point(entry.mount_point);
+ const auto options = fs_mgr_get_overlayfs_options(entry);
if (options.empty()) return false;
auto retval = true;
@@ -1346,12 +1352,13 @@
scratch_can_be_mounted = false;
TryMountScratch();
}
- ret &= fs_mgr_overlayfs_mount(mount_point);
+ ret &= fs_mgr_overlayfs_mount(entry);
}
return ret;
}
-bool fs_mgr_overlayfs_setup(const char* mount_point, bool* want_reboot, bool just_disabled_verity) {
+bool fs_mgr_overlayfs_setup(const Fstab& fstab, const char* mount_point, bool* want_reboot,
+ bool just_disabled_verity) {
if (!OverlayfsSetupAllowed(/*verbose=*/true)) {
return false;
}
@@ -1361,12 +1368,6 @@
return false;
}
- Fstab fstab;
- if (!ReadDefaultFstab(&fstab)) {
- LOG(ERROR) << "Could not read fstab";
- return false;
- }
-
auto candidates = fs_mgr_overlayfs_candidate_list(fstab);
for (auto it = candidates.begin(); it != candidates.end();) {
if (mount_point &&
diff --git a/fs_mgr/fs_mgr_priv.h b/fs_mgr/fs_mgr_priv.h
index 46f54cc..46cdb62 100644
--- a/fs_mgr/fs_mgr_priv.h
+++ b/fs_mgr/fs_mgr_priv.h
@@ -33,7 +33,7 @@
*/
#define FS_MGR_CHECK(x) CHECK(x) << "in libfs_mgr "
-#define FS_MGR_TAG "[libfs_mgr]"
+#define FS_MGR_TAG "[libfs_mgr] "
// Logs a message to kernel
#define LINFO LOG(INFO) << FS_MGR_TAG
diff --git a/fs_mgr/fs_mgr_priv_overlayfs.h b/fs_mgr/fs_mgr_priv_overlayfs.h
index 45b954d..2033701 100644
--- a/fs_mgr/fs_mgr_priv_overlayfs.h
+++ b/fs_mgr/fs_mgr_priv_overlayfs.h
@@ -29,8 +29,8 @@
//
// If |want_reboot| is non-null, and a reboot is needed to apply overlays, then
// it will be true on return. The caller is responsible for initializing it.
-bool fs_mgr_overlayfs_setup(const char* mount_point = nullptr, bool* want_reboot = nullptr,
- bool just_disabled_verity = true);
+bool fs_mgr_overlayfs_setup(const android::fs_mgr::Fstab& fstab, const char* mount_point = nullptr,
+ bool* want_reboot = nullptr, bool just_disabled_verity = true);
enum class OverlayfsTeardownResult {
Ok,
diff --git a/fs_mgr/fs_mgr_remount.cpp b/fs_mgr/fs_mgr_remount.cpp
index 23bc8e8..5a9f391 100644
--- a/fs_mgr/fs_mgr_remount.cpp
+++ b/fs_mgr/fs_mgr_remount.cpp
@@ -175,6 +175,8 @@
}
if (checkpointing) {
LOG(ERROR) << "Cannot use remount when a checkpoint is in progress.";
+ LOG(ERROR) << "To force end checkpointing, call 'vdc checkpoint commitChanges'";
+ LOG(ERROR) << "Warning: this can lead to data corruption if rolled back.";
return false;
}
return true;
@@ -289,7 +291,7 @@
if (fs_mgr_wants_overlayfs(&entry)) {
bool want_reboot = false;
bool force = result->disabled_verity;
- if (!fs_mgr_overlayfs_setup(mount_point.c_str(), &want_reboot, force)) {
+ if (!fs_mgr_overlayfs_setup(*partitions, mount_point.c_str(), &want_reboot, force)) {
LOG(ERROR) << "Overlayfs setup for " << mount_point << " failed, skipping";
ok = false;
it = partitions->erase(it);
@@ -442,7 +444,12 @@
bool SetupOrTeardownOverlayfs(bool enable) {
bool want_reboot = false;
if (enable) {
- if (!fs_mgr_overlayfs_setup(nullptr, &want_reboot)) {
+ Fstab fstab;
+ if (!ReadDefaultFstab(&fstab)) {
+ LOG(ERROR) << "Could not read fstab.";
+ return want_reboot;
+ }
+ if (!fs_mgr_overlayfs_setup(fstab, nullptr, &want_reboot)) {
LOG(ERROR) << "Overlayfs setup failed.";
return want_reboot;
}
diff --git a/fs_mgr/include_fstab/fstab/fstab.h b/fs_mgr/include_fstab/fstab/fstab.h
index 124f070..a914b53 100644
--- a/fs_mgr/include_fstab/fstab/fstab.h
+++ b/fs_mgr/include_fstab/fstab/fstab.h
@@ -105,10 +105,13 @@
bool ReadDefaultFstab(Fstab* fstab);
bool SkipMountingPartitions(Fstab* fstab, bool verbose = false);
-FstabEntry* GetEntryForMountPoint(Fstab* fstab, const std::string& path);
// The Fstab can contain multiple entries for the same mount point with different configurations.
std::vector<FstabEntry*> GetEntriesForMountPoint(Fstab* fstab, const std::string& path);
+// Like GetEntriesForMountPoint() but return only the first entry or nullptr if no entry is found.
+FstabEntry* GetEntryForMountPoint(Fstab* fstab, const std::string& path);
+const FstabEntry* GetEntryForMountPoint(const Fstab* fstab, const std::string& path);
+
// This method builds DSU fstab entries and transfer the fstab.
//
// fstab points to the unmodified fstab.
diff --git a/fs_mgr/libdm/Android.bp b/fs_mgr/libdm/Android.bp
index 2bb9035..5cc0346 100644
--- a/fs_mgr/libdm/Android.bp
+++ b/fs_mgr/libdm/Android.bp
@@ -90,19 +90,3 @@
min_shipping_api_level: 29,
},
}
-
-cc_fuzz {
- name: "dm_linear_table_fuzzer",
- defaults: ["fs_mgr_defaults"],
- srcs: [
- "dm_linear_fuzzer.cpp",
- "test_util.cpp",
- ],
- static_libs: [
- "libdm",
- "libbase",
- "libext2_uuid",
- "libfs_mgr",
- "liblog",
- ],
-}
diff --git a/fs_mgr/libdm/dm.cpp b/fs_mgr/libdm/dm.cpp
index 4034e30..deffae1 100644
--- a/fs_mgr/libdm/dm.cpp
+++ b/fs_mgr/libdm/dm.cpp
@@ -20,6 +20,7 @@
#include <sys/ioctl.h>
#include <sys/sysmacros.h>
#include <sys/types.h>
+#include <sys/utsname.h>
#include <chrono>
#include <functional>
@@ -289,7 +290,7 @@
return true;
}
-bool DeviceMapper::LoadTableAndActivate(const std::string& name, const DmTable& table) {
+bool DeviceMapper::LoadTable(const std::string& name, const DmTable& table) {
std::string ioctl_buffer(sizeof(struct dm_ioctl), 0);
ioctl_buffer += table.Serialize();
@@ -305,9 +306,17 @@
PLOG(ERROR) << "DM_TABLE_LOAD failed";
return false;
}
+ return true;
+}
- InitIo(io, name);
- if (ioctl(fd_, DM_DEV_SUSPEND, io)) {
+bool DeviceMapper::LoadTableAndActivate(const std::string& name, const DmTable& table) {
+ if (!LoadTable(name, table)) {
+ return false;
+ }
+
+ struct dm_ioctl io;
+ InitIo(&io, name);
+ if (ioctl(fd_, DM_DEV_SUSPEND, &io)) {
PLOG(ERROR) << "DM_TABLE_SUSPEND resume failed";
return false;
}
@@ -703,5 +712,28 @@
return dm_block_devices;
}
+bool DeviceMapper::CreatePlaceholderDevice(const std::string& name) {
+ if (!CreateEmptyDevice(name)) {
+ return false;
+ }
+
+ struct utsname uts;
+ unsigned int major, minor;
+ if (uname(&uts) != 0 || sscanf(uts.release, "%u.%u", &major, &minor) != 2) {
+ LOG(ERROR) << "Could not parse the kernel version from uname";
+ return true;
+ }
+
+ // On Linux 5.15+, there is no uevent until DM_TABLE_LOAD.
+ if (major > 5 || (major == 5 && minor >= 15)) {
+ DmTable table;
+ table.Emplace<DmTargetError>(0, 1);
+ if (!LoadTable(name, table)) {
+ return false;
+ }
+ }
+ return true;
+}
+
} // namespace dm
} // namespace android
diff --git a/fs_mgr/libdm/dm_linear_fuzzer.cpp b/fs_mgr/libdm/dm_linear_fuzzer.cpp
deleted file mode 100644
index 8462901..0000000
--- a/fs_mgr/libdm/dm_linear_fuzzer.cpp
+++ /dev/null
@@ -1,139 +0,0 @@
-/*
- * Copyright (C) 2019 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <stddef.h>
-#include <stdint.h>
-#include <string.h>
-
-#include <chrono>
-
-#include <android-base/file.h>
-#include <android-base/unique_fd.h>
-#include <libdm/dm_table.h>
-#include <libdm/loop_control.h>
-
-#include "test_util.h"
-
-using namespace android;
-using namespace android::base;
-using namespace android::dm;
-using namespace std;
-using namespace std::chrono_literals;
-
-/*
- * This test aims at making the library crash, so these functions are not
- * really useful.
- * Keeping them here for future use.
- */
-template <class T, class C>
-void ASSERT_EQ(const T& /*a*/, const C& /*b*/) {
- // if (a != b) {}
-}
-
-template <class T>
-void ASSERT_FALSE(const T& /*a*/) {
- // if (a) {}
-}
-
-template <class T, class C>
-void ASSERT_GE(const T& /*a*/, const C& /*b*/) {
- // if (a < b) {}
-}
-
-template <class T, class C>
-void ASSERT_NE(const T& /*a*/, const C& /*b*/) {
- // if (a == b) {}
-}
-
-template <class T>
-void ASSERT_TRUE(const T& /*a*/) {
- // if (!a) {}
-}
-
-template <class T, class C>
-void EXPECT_EQ(const T& a, const C& b) {
- ASSERT_EQ(a, b);
-}
-
-template <class T>
-void EXPECT_TRUE(const T& a) {
- ASSERT_TRUE(a);
-}
-
-extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
- uint64_t val[6];
-
- if (size != sizeof(val)) {
- return 0;
- }
-
- memcpy(&val, &data[0], sizeof(*val));
-
- unique_fd tmp1(CreateTempFile("file_1", 4096));
- ASSERT_GE(tmp1, 0);
- unique_fd tmp2(CreateTempFile("file_2", 4096));
- ASSERT_GE(tmp2, 0);
-
- LoopDevice loop_a(tmp1, 10s);
- ASSERT_TRUE(loop_a.valid());
- LoopDevice loop_b(tmp2, 10s);
- ASSERT_TRUE(loop_b.valid());
-
- // Define a 2-sector device, with each sector mapping to the first sector
- // of one of our loop devices.
- DmTable table;
- ASSERT_TRUE(table.Emplace<DmTargetLinear>(val[0], val[1], loop_a.device(), val[2]));
- ASSERT_TRUE(table.Emplace<DmTargetLinear>(val[3], val[4], loop_b.device(), val[5]));
- ASSERT_TRUE(table.valid());
- ASSERT_EQ(2u, table.num_sectors());
-
- TempDevice dev("libdm-test-dm-linear", table);
- ASSERT_TRUE(dev.valid());
- ASSERT_FALSE(dev.path().empty());
-
- auto& dm = DeviceMapper::Instance();
-
- dev_t dev_number;
- ASSERT_TRUE(dm.GetDeviceNumber(dev.name(), &dev_number));
- ASSERT_NE(dev_number, 0);
-
- std::string dev_string;
- ASSERT_TRUE(dm.GetDeviceString(dev.name(), &dev_string));
- ASSERT_FALSE(dev_string.empty());
-
- // Test GetTableStatus.
- vector<DeviceMapper::TargetInfo> targets;
- ASSERT_TRUE(dm.GetTableStatus(dev.name(), &targets));
- ASSERT_EQ(targets.size(), 2);
- EXPECT_EQ(strcmp(targets[0].spec.target_type, "linear"), 0);
- EXPECT_TRUE(targets[0].data.empty());
- EXPECT_EQ(targets[0].spec.sector_start, 0);
- EXPECT_EQ(targets[0].spec.length, 1);
- EXPECT_EQ(strcmp(targets[1].spec.target_type, "linear"), 0);
- EXPECT_TRUE(targets[1].data.empty());
- EXPECT_EQ(targets[1].spec.sector_start, 1);
- EXPECT_EQ(targets[1].spec.length, 1);
-
- // Test GetTargetType().
- EXPECT_EQ(DeviceMapper::GetTargetType(targets[0].spec), std::string{"linear"});
- EXPECT_EQ(DeviceMapper::GetTargetType(targets[1].spec), std::string{"linear"});
-
- // Normally the TestDevice destructor would delete this, but at least one
- // test should ensure that device deletion works.
- ASSERT_TRUE(dev.Destroy());
-
- return 0;
-}
diff --git a/fs_mgr/libdm/dm_test.cpp b/fs_mgr/libdm/dm_test.cpp
index 541f254..788cf51 100644
--- a/fs_mgr/libdm/dm_test.cpp
+++ b/fs_mgr/libdm/dm_test.cpp
@@ -19,6 +19,7 @@
#include <stdio.h>
#include <sys/ioctl.h>
#include <sys/types.h>
+#include <sys/utsname.h>
#include <time.h>
#include <unistd.h>
@@ -690,3 +691,33 @@
// Empty device should be in suspended state.
ASSERT_EQ(DmDeviceState::SUSPENDED, dm.GetState("empty-device"));
}
+
+TEST(libdm, UeventAfterLoadTable) {
+ static const char* kDeviceName = "libdm-test-uevent-load-table";
+
+ struct utsname u;
+ ASSERT_EQ(uname(&u), 0);
+
+ unsigned int major, minor;
+ ASSERT_EQ(sscanf(u.release, "%u.%u", &major, &minor), 2);
+
+ if (major < 5 || (major == 5 && minor < 15)) {
+ GTEST_SKIP() << "Skipping test on kernel < 5.15";
+ }
+
+ DeviceMapper& dm = DeviceMapper::Instance();
+ ASSERT_TRUE(dm.CreateEmptyDevice(kDeviceName));
+
+ DmTable table;
+ table.Emplace<DmTargetError>(0, 1);
+ ASSERT_TRUE(dm.LoadTable(kDeviceName, table));
+
+ std::string ignore_path;
+ ASSERT_TRUE(dm.WaitForDevice(kDeviceName, 5s, &ignore_path));
+
+ auto info = dm.GetDetailedInfo(kDeviceName);
+ ASSERT_TRUE(info.has_value());
+ ASSERT_TRUE(info->IsSuspended());
+
+ ASSERT_TRUE(dm.DeleteDevice(kDeviceName));
+}
diff --git a/fs_mgr/libdm/include/libdm/dm.h b/fs_mgr/libdm/include/libdm/dm.h
index 1057d7f..dbef8f9 100644
--- a/fs_mgr/libdm/include/libdm/dm.h
+++ b/fs_mgr/libdm/include/libdm/dm.h
@@ -75,6 +75,7 @@
const std::chrono::milliseconds& timeout_ms) = 0;
virtual DmDeviceState GetState(const std::string& name) const = 0;
virtual bool LoadTableAndActivate(const std::string& name, const DmTable& table) = 0;
+ virtual bool LoadTable(const std::string& name, const DmTable& table) = 0;
virtual bool GetTableInfo(const std::string& name, std::vector<TargetInfo>* table) = 0;
virtual bool GetTableStatus(const std::string& name, std::vector<TargetInfo>* table) = 0;
virtual bool GetDmDevicePathByName(const std::string& name, std::string* path) = 0;
@@ -116,7 +117,7 @@
bool IsBufferFull() const { return flags_ & DM_BUFFER_FULL_FLAG; }
bool IsInactiveTablePresent() const { return flags_ & DM_INACTIVE_PRESENT_FLAG; }
bool IsReadOnly() const { return flags_ & DM_READONLY_FLAG; }
- bool IsSuspended() const { return flags_ & DM_SUSPEND_FLAG; }
+ bool IsSuspended() const { return !IsActiveTablePresent() || (flags_ & DM_SUSPEND_FLAG); }
};
// Removes a device mapper device with the given name.
@@ -199,6 +200,12 @@
// Returns 'true' on success, false otherwise.
bool LoadTableAndActivate(const std::string& name, const DmTable& table) override;
+ // Same as LoadTableAndActivate, but there is no resume step. This puts the
+ // new table in the inactive slot.
+ //
+ // Returns 'true' on success, false otherwise.
+ bool LoadTable(const std::string& name, const DmTable& table) override;
+
// Returns true if a list of available device mapper targets registered in the kernel was
// successfully read and stored in 'targets'. Returns 'false' otherwise.
bool GetAvailableTargets(std::vector<DmTargetTypeInfo>* targets);
@@ -285,6 +292,12 @@
// Returns mapping <partition-name, /dev/block/dm-x>
std::map<std::string, std::string> FindDmPartitions();
+ // Create a placeholder device. This is useful for ensuring that a uevent is in the pipeline,
+ // to reduce the amount of time a future WaitForDevice will block. On kernels < 5.15, this
+ // simply calls CreateEmptyDevice. On 5.15 and higher, it also loads (but does not activate)
+ // a placeholder table containing dm-error.
+ bool CreatePlaceholderDevice(const std::string& name);
+
private:
// Maximum possible device mapper targets registered in the kernel.
// This is only used to read the list of targets from kernel so we allocate
diff --git a/fs_mgr/libdm/include/libdm/dm_table.h b/fs_mgr/libdm/include/libdm/dm_table.h
index ee66653..427f34d 100644
--- a/fs_mgr/libdm/include/libdm/dm_table.h
+++ b/fs_mgr/libdm/include/libdm/dm_table.h
@@ -31,6 +31,7 @@
class DmTable {
public:
DmTable() : num_sectors_(0), readonly_(false) {}
+ DmTable(DmTable&& other) = default;
// Adds a target to the device mapper table for a range specified in the target object.
// The function will return 'true' if the target was successfully added and doesn't overlap with
@@ -70,6 +71,8 @@
void set_readonly(bool readonly) { readonly_ = readonly; }
bool readonly() const { return readonly_; }
+ DmTable& operator=(DmTable&& other) = default;
+
~DmTable() = default;
private:
diff --git a/fs_mgr/libdm/include/libdm/dm_target.h b/fs_mgr/libdm/include/libdm/dm_target.h
index 9543058..09fe200 100644
--- a/fs_mgr/libdm/include/libdm/dm_target.h
+++ b/fs_mgr/libdm/include/libdm/dm_target.h
@@ -323,6 +323,14 @@
std::string control_device_;
};
+class DmTargetError final : public DmTarget {
+ public:
+ DmTargetError(uint64_t start, uint64_t length) : DmTarget(start, length) {}
+
+ std::string name() const override { return "error"; }
+ std::string GetParameterString() const override { return ""; }
+};
+
} // namespace dm
} // namespace android
diff --git a/fs_mgr/libfiemap/README.md b/fs_mgr/libfiemap/README.md
index 62d610a..cdc80b2 100644
--- a/fs_mgr/libfiemap/README.md
+++ b/fs_mgr/libfiemap/README.md
@@ -35,18 +35,18 @@
We break the problem down into three scenarios.
-### FDE and Metadata Encrypted Devices
+### Metadata Encrypted Devices
-When FDE or metadata encryption is used, `/data` is not mounted from
+When metadata encryption is used, `/data` is not mounted from
`/dev/block/by-name/data`. Instead, it is mounted from an intermediate
-`dm-crypt` or `dm-default-key` device. This means the underlying device is
-not marked in use, and we can create new dm-linear devices on top of it.
+`dm-default-key` device. This means the underlying device is not marked in use,
+and we can create new dm-linear devices on top of it.
On these devices, a block device for an image will consist of a single
device-mapper device with a `dm-linear` table entry for each extent in the
backing file.
-### Unencrypted and FBE-encrypted Devices
+### Unencrypted and FBE-only Devices
When a device is unencrypted, or is encrypted with FBE but not metadata
encryption, we instead use a loop device with `LOOP_SET_DIRECT_IO` enabled.
diff --git a/fs_mgr/libfiemap/metadata.cpp b/fs_mgr/libfiemap/metadata.cpp
index b0dfb5c..22b8afb 100644
--- a/fs_mgr/libfiemap/metadata.cpp
+++ b/fs_mgr/libfiemap/metadata.cpp
@@ -30,6 +30,7 @@
namespace fiemap {
using namespace android::fs_mgr;
+using android::base::unique_fd;
static constexpr uint32_t kMaxMetadataSize = 256 * 1024;
@@ -109,10 +110,18 @@
if (exported->partitions.empty() && android::base::RemoveFileIfExists(metadata_file)) {
return true;
}
- if (!WriteToImageFile(metadata_file, *exported.get())) {
+
+ unique_fd fd(open(metadata_file.c_str(), O_CREAT | O_RDWR | O_TRUNC | O_CLOEXEC | O_BINARY | O_SYNC, 0644));
+ if (fd < 0) {
+ LOG(ERROR) << "open failed: " << metadata_file;
+ return false;
+ }
+
+ if (!WriteToImageFile(fd, *exported.get())) {
LOG(ERROR) << "Unable to save new metadata";
return false;
}
+
return true;
}
diff --git a/fs_mgr/libfs_avb/avb_ops.cpp b/fs_mgr/libfs_avb/avb_ops.cpp
index 46072bb..a119bfc 100644
--- a/fs_mgr/libfs_avb/avb_ops.cpp
+++ b/fs_mgr/libfs_avb/avb_ops.cpp
@@ -26,8 +26,10 @@
#include <errno.h>
#include <fcntl.h>
+#include <linux/fs.h>
#include <stdlib.h>
#include <string.h>
+#include <sys/ioctl.h>
#include <sys/stat.h>
#include <string>
@@ -96,13 +98,11 @@
return AVB_IO_RESULT_OK;
}
-static AvbIOResult no_op_get_size_of_partition(AvbOps* ops ATTRIBUTE_UNUSED,
- const char* partition ATTRIBUTE_UNUSED,
- uint64_t* out_size_num_byte) {
- // The function is for bootloader to load entire content of AVB HASH partitions.
- // In user-space, returns 0 as we only need to set up AVB HASHTHREE partitions.
- *out_size_num_byte = 0;
- return AVB_IO_RESULT_OK;
+static AvbIOResult get_size_of_partition(AvbOps* ops ATTRIBUTE_UNUSED,
+ const char* partition ATTRIBUTE_UNUSED,
+ uint64_t* out_size_num_byte) {
+ return FsManagerAvbOps::GetInstanceFromAvbOps(ops)->GetSizeOfPartition(partition,
+ out_size_num_byte);
}
// Converts a partition name (with ab_suffix) to the corresponding mount point.
@@ -131,7 +131,7 @@
avb_ops_.validate_vbmeta_public_key = no_op_validate_vbmeta_public_key;
avb_ops_.read_is_device_unlocked = no_op_read_is_device_unlocked;
avb_ops_.get_unique_guid_for_partition = no_op_get_unique_guid_for_partition;
- avb_ops_.get_size_of_partition = no_op_get_size_of_partition;
+ avb_ops_.get_size_of_partition = get_size_of_partition;
// Sets user_data for GetInstanceFromAvbOps() to convert it back to FsManagerAvbOps.
avb_ops_.user_data = this;
@@ -167,13 +167,8 @@
return "";
}
-
-AvbIOResult FsManagerAvbOps::ReadFromPartition(const char* partition, int64_t offset,
- size_t num_bytes, void* buffer,
- size_t* out_num_read) {
+std::string FsManagerAvbOps::GetPartitionPath(const char* partition) {
std::string path = "/dev/block/by-name/"s + partition;
-
- // Ensures the device path (a symlink created by init) is ready to access.
if (!WaitForFile(path, 1s)) {
LERROR << "Device path not found: " << path;
// Falls back to logical path if the physical path is not found.
@@ -182,8 +177,36 @@
// the bootloader failed to read a physical partition, it will failed to boot
// the HLOS and we won't reach the code here.
path = GetLogicalPath(partition);
- if (path.empty() || !WaitForFile(path, 1s)) return AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION;
- LINFO << "Fallback to use logical device path: " << path;
+ if (path.empty() || !WaitForFile(path, 1s)) return "";
+ }
+ return path;
+}
+
+AvbIOResult FsManagerAvbOps::GetSizeOfPartition(const char* partition,
+ uint64_t* out_size_num_byte) {
+ const auto path = GetPartitionPath(partition);
+ if (path.empty()) {
+ return AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION;
+ }
+ android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(path.c_str(), O_RDONLY | O_CLOEXEC)));
+ if (fd < 0) {
+ PERROR << "Failed to open " << path;
+ return AVB_IO_RESULT_ERROR_IO;
+ }
+ int err = ioctl(fd, BLKGETSIZE64, out_size_num_byte);
+ if (err) {
+ *out_size_num_byte = 0;
+ return AVB_IO_RESULT_ERROR_IO;
+ }
+ return AVB_IO_RESULT_OK;
+}
+
+AvbIOResult FsManagerAvbOps::ReadFromPartition(const char* partition, int64_t offset,
+ size_t num_bytes, void* buffer,
+ size_t* out_num_read) {
+ std::string path = GetPartitionPath(partition);
+ if (path.empty()) {
+ return AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION;
}
android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(path.c_str(), O_RDONLY | O_CLOEXEC)));
diff --git a/fs_mgr/libfs_avb/avb_ops.h b/fs_mgr/libfs_avb/avb_ops.h
index b39812d..12686a6 100644
--- a/fs_mgr/libfs_avb/avb_ops.h
+++ b/fs_mgr/libfs_avb/avb_ops.h
@@ -56,12 +56,14 @@
AvbIOResult ReadFromPartition(const char* partition, int64_t offset, size_t num_bytes,
void* buffer, size_t* out_num_read);
+ AvbIOResult GetSizeOfPartition(const char* partition, uint64_t* out_size_num_byte);
AvbSlotVerifyResult AvbSlotVerify(const std::string& ab_suffix, AvbSlotVerifyFlags flags,
std::vector<VBMetaData>* out_vbmeta_images);
private:
std::string GetLogicalPath(const std::string& partition_name);
+ std::string GetPartitionPath(const char* partition_name);
AvbOps avb_ops_;
Fstab fstab_;
};
diff --git a/fs_mgr/libfs_avb/util.h b/fs_mgr/libfs_avb/util.h
index 427ab7c..29d1e9c 100644
--- a/fs_mgr/libfs_avb/util.h
+++ b/fs_mgr/libfs_avb/util.h
@@ -31,7 +31,7 @@
using android::base::ErrnoError;
using android::base::Result;
-#define FS_AVB_TAG "[libfs_avb]"
+#define FS_AVB_TAG "[libfs_avb] "
// Logs a message to kernel
#define LINFO LOG(INFO) << FS_AVB_TAG
diff --git a/fs_mgr/liblp/Android.bp b/fs_mgr/liblp/Android.bp
index 4b81c2c..996ffd7 100644
--- a/fs_mgr/liblp/Android.bp
+++ b/fs_mgr/liblp/Android.bp
@@ -39,6 +39,7 @@
],
srcs: [
"builder.cpp",
+ "super_layout_builder.cpp",
"images.cpp",
"partition_opener.cpp",
"property_fetcher.cpp",
@@ -62,17 +63,6 @@
export_include_dirs: ["include"],
}
-filegroup {
- name: "liblp_test_srcs",
- srcs: [
- "builder_test.cpp",
- "device_test.cpp",
- "io_test.cpp",
- "test_partition_opener.cpp",
- "utility_test.cpp",
- ],
-}
-
cc_defaults {
name: "liblp_test_defaults",
defaults: ["fs_mgr_defaults"],
@@ -82,22 +72,39 @@
static_libs: [
"libcutils",
"libgmock",
- "libfs_mgr",
"liblp",
"libcrypto_static",
] + liblp_lib_deps,
header_libs: [
"libstorage_literals_headers",
],
+ target: {
+ android: {
+ srcs: [
+ "device_test.cpp",
+ "io_test.cpp",
+ ],
+ static_libs: [
+ "libfs_mgr",
+ ],
+ }
+ },
stl: "libc++_static",
- srcs: [":liblp_test_srcs"],
+ srcs: [
+ "builder_test.cpp",
+ "super_layout_builder_test.cpp",
+ "test_partition_opener.cpp",
+ "utility_test.cpp",
+ ],
}
cc_test {
name: "liblp_test",
defaults: ["liblp_test_defaults"],
- test_config: "liblp_test.xml",
test_suites: ["device-tests"],
+ auto_gen_config: true,
+ require_root: true,
+ host_supported: true
}
cc_test {
diff --git a/fs_mgr/liblp/include/liblp/super_layout_builder.h b/fs_mgr/liblp/include/liblp/super_layout_builder.h
new file mode 100644
index 0000000..d920855
--- /dev/null
+++ b/fs_mgr/liblp/include/liblp/super_layout_builder.h
@@ -0,0 +1,104 @@
+//
+// Copyright (C) 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+#pragma once
+
+#include <stdint.h>
+
+#include <memory>
+#include <ostream>
+#include <string>
+#include <unordered_map>
+#include <utility>
+
+#include <android-base/unique_fd.h>
+#include <liblp/builder.h>
+
+namespace android {
+namespace fs_mgr {
+
+struct SuperImageExtent {
+ enum class Type { INVALID, DATA, PARTITION, ZERO, DONTCARE };
+
+ SuperImageExtent(const SuperImageExtent& other) = default;
+ SuperImageExtent(SuperImageExtent&& other) = default;
+ SuperImageExtent(uint64_t offset, uint64_t size, Type type)
+ : offset(offset), size(size), type(type) {}
+
+ SuperImageExtent(uint64_t offset, std::shared_ptr<std::string> blob)
+ : SuperImageExtent(offset, blob->size(), Type::DATA) {
+ this->blob = blob;
+ }
+
+ SuperImageExtent(uint64_t offset, uint64_t size, const std::string& image_name,
+ uint64_t image_offset)
+ : SuperImageExtent(offset, size, Type::PARTITION) {
+ this->image_name = image_name;
+ this->image_offset = image_offset;
+ }
+
+ SuperImageExtent& operator=(const SuperImageExtent& other) = default;
+ SuperImageExtent& operator=(SuperImageExtent&& other) = default;
+
+ bool operator<(const SuperImageExtent& other) const { return offset < other.offset; }
+ bool operator==(const SuperImageExtent& other) const;
+
+ // Location, size, and type of the extent.
+ uint64_t offset = 0;
+ uint64_t size = 0;
+ Type type = Type::INVALID;
+
+ // If type == DATA, this contains the bytes to write.
+ std::shared_ptr<std::string> blob;
+ // If type == PARTITION, this contains the partition image name and
+ // offset within that file.
+ std::string image_name;
+ uint64_t image_offset = 0;
+};
+
+// The SuperLayoutBuilder allows building a sparse view of a super image. This
+// is useful for efficient flashing, eg to bypass fastbootd and directly flash
+// super without physically building and storing the image.
+class SuperLayoutBuilder final {
+ public:
+ // Open a super_empty.img, return false on failure. This must be called to
+ // initialize the tool. If it returns false, either the image failed to
+ // parse, or the tool is not compatible with how the device is configured
+ // (in which case fastbootd should be preferred).
+ [[nodiscard]] bool Open(android::base::borrowed_fd fd);
+ [[nodiscard]] bool Open(const void* data, size_t bytes);
+ [[nodiscard]] bool Open(const LpMetadata& metadata);
+
+ // Add a partition's image and size to the work list. If false is returned,
+ // there was either a duplicate partition or not enough space in super.
+ bool AddPartition(const std::string& partition_name, const std::string& image_name,
+ uint64_t partition_size);
+
+ // Return the list of extents describing the super image. If this list is
+ // empty, then there was an unrecoverable error in building the list.
+ std::vector<SuperImageExtent> GetImageLayout();
+
+ // Return the current metadata.
+ std::unique_ptr<LpMetadata> Export() const { return builder_->Export(); }
+
+ private:
+ std::unique_ptr<MetadataBuilder> builder_;
+ std::unordered_map<std::string, std::string> image_map_;
+};
+
+std::ostream& operator<<(std::ostream& stream, const SuperImageExtent& extent);
+
+} // namespace fs_mgr
+} // namespace android
diff --git a/fs_mgr/liblp/liblp_test.xml b/fs_mgr/liblp/liblp_test.xml
deleted file mode 100644
index 98414b1..0000000
--- a/fs_mgr/liblp/liblp_test.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2019 The Android Open Source Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-<configuration description="Config for liblp_test">
- <target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer"/>
- <target_preparer class="com.android.tradefed.targetprep.PushFilePreparer">
- <option name="cleanup" value="true" />
- <option name="push" value="liblp_test->/data/local/tmp/liblp_test" />
- </target_preparer>
- <test class="com.android.tradefed.testtype.GTest" >
- <option name="native-test-device-path" value="/data/local/tmp" />
- <option name="module-name" value="liblp_test" />
- </test>
-</configuration>
diff --git a/fs_mgr/liblp/super_layout_builder.cpp b/fs_mgr/liblp/super_layout_builder.cpp
new file mode 100644
index 0000000..37f28e1
--- /dev/null
+++ b/fs_mgr/liblp/super_layout_builder.cpp
@@ -0,0 +1,241 @@
+//
+// Copyright (C) 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+#include <liblp/super_layout_builder.h>
+
+#include <liblp/liblp.h>
+
+#include "images.h"
+#include "utility.h"
+#include "writer.h"
+
+using android::base::borrowed_fd;
+using android::base::unique_fd;
+
+namespace android {
+namespace fs_mgr {
+
+bool SuperLayoutBuilder::Open(borrowed_fd fd) {
+ auto metadata = ReadFromImageFile(fd.get());
+ if (!metadata) {
+ return false;
+ }
+ return Open(*metadata.get());
+}
+
+bool SuperLayoutBuilder::Open(const void* data, size_t size) {
+ auto metadata = ReadFromImageBlob(data, size);
+ if (!metadata) {
+ return false;
+ }
+ return Open(*metadata.get());
+}
+
+bool SuperLayoutBuilder::Open(const LpMetadata& metadata) {
+ for (const auto& partition : metadata.partitions) {
+ if (partition.attributes & LP_PARTITION_ATTR_SLOT_SUFFIXED) {
+ // Retrofit devices are not supported.
+ return false;
+ }
+ if (!(partition.attributes & LP_PARTITION_ATTR_READONLY)) {
+ // Writable partitions are not supported.
+ return false;
+ }
+ }
+ if (!metadata.extents.empty()) {
+ // Partitions that already have extents are not supported (should
+ // never be true of super_empty.img).
+ return false;
+ }
+ if (metadata.block_devices.size() != 1) {
+ // Only one "super" is supported.
+ return false;
+ }
+
+ builder_ = MetadataBuilder::New(metadata);
+ return !!builder_;
+}
+
+bool SuperLayoutBuilder::AddPartition(const std::string& partition_name,
+ const std::string& image_name, uint64_t partition_size) {
+ auto p = builder_->FindPartition(partition_name);
+ if (!p) {
+ return false;
+ }
+ if (!builder_->ResizePartition(p, partition_size)) {
+ return false;
+ }
+ image_map_.emplace(partition_name, image_name);
+ return true;
+}
+
+// Fill the space between each extent, if any, with either a fill or dontcare
+// extent. The caller constructs a sample extent to re-use.
+static bool AddGapExtents(std::vector<SuperImageExtent>* extents, SuperImageExtent::Type gap_type) {
+ std::vector<SuperImageExtent> old = std::move(*extents);
+ std::sort(old.begin(), old.end());
+
+ *extents = {};
+
+ uint64_t current_offset = 0;
+ for (const auto& extent : old) {
+ // Check for overlapping extents - this would be a serious error.
+ if (current_offset > extent.offset) {
+ LOG(INFO) << "Overlapping extents detected; cannot layout temporary super image";
+ return false;
+ }
+
+ if (extent.offset != current_offset) {
+ uint64_t gap_size = extent.offset - current_offset;
+ extents->emplace_back(current_offset, gap_size, gap_type);
+ current_offset = extent.offset;
+ }
+
+ extents->emplace_back(extent);
+ current_offset += extent.size;
+ }
+ return true;
+}
+
+std::vector<SuperImageExtent> SuperLayoutBuilder::GetImageLayout() {
+ auto metadata = builder_->Export();
+ if (!metadata) {
+ return {};
+ }
+
+ std::vector<SuperImageExtent> extents;
+
+ // Write the primary and backup copies of geometry.
+ std::string geometry_bytes = SerializeGeometry(metadata->geometry);
+ auto blob = std::make_shared<std::string>(std::move(geometry_bytes));
+
+ extents.emplace_back(0, GetPrimaryGeometryOffset(), SuperImageExtent::Type::ZERO);
+ extents.emplace_back(GetPrimaryGeometryOffset(), blob);
+ extents.emplace_back(GetBackupGeometryOffset(), blob);
+
+ // Write the primary and backup copies of each metadata slot. When flashing,
+ // all metadata copies are the same, even for different slots.
+ std::string metadata_bytes = SerializeMetadata(*metadata.get());
+
+ // Align metadata size to 4KB. This makes the layout easily compatible with
+ // libsparse.
+ static constexpr size_t kSparseAlignment = 4096;
+ size_t metadata_aligned_bytes;
+ if (!AlignTo(metadata_bytes.size(), kSparseAlignment, &metadata_aligned_bytes)) {
+ LOG(ERROR) << "Unable to align metadata size " << metadata_bytes.size() << " to "
+ << kSparseAlignment;
+ return {};
+ }
+ metadata_bytes.resize(metadata_aligned_bytes, '\0');
+
+ // However, alignment can cause larger-than-supported metadata blocks. Fall
+ // back to fastbootd/update-super.
+ if (metadata_bytes.size() > metadata->geometry.metadata_max_size) {
+ LOG(VERBOSE) << "Aligned metadata size " << metadata_bytes.size()
+ << " is larger than maximum metadata size "
+ << metadata->geometry.metadata_max_size;
+ return {};
+ }
+
+ blob = std::make_shared<std::string>(std::move(metadata_bytes));
+ for (uint32_t i = 0; i < metadata->geometry.metadata_slot_count; i++) {
+ int64_t metadata_primary = GetPrimaryMetadataOffset(metadata->geometry, i);
+ int64_t metadata_backup = GetBackupMetadataOffset(metadata->geometry, i);
+ extents.emplace_back(metadata_primary, blob);
+ extents.emplace_back(metadata_backup, blob);
+ }
+
+ // Add extents for each partition.
+ for (const auto& partition : metadata->partitions) {
+ auto partition_name = GetPartitionName(partition);
+ auto image_name_iter = image_map_.find(partition_name);
+ if (image_name_iter == image_map_.end()) {
+ if (partition.num_extents != 0) {
+ LOG(ERROR) << "Partition " << partition_name
+ << " has extents but no image filename";
+ return {};
+ }
+ continue;
+ }
+ const auto& image_name = image_name_iter->second;
+
+ uint64_t image_offset = 0;
+ for (uint32_t i = 0; i < partition.num_extents; i++) {
+ const auto& e = metadata->extents[partition.first_extent_index + i];
+
+ if (e.target_type != LP_TARGET_TYPE_LINEAR) {
+ // Any type other than LINEAR isn't understood here. We don't even
+ // bother with ZERO, which is never generated.
+ LOG(INFO) << "Unknown extent type from liblp: " << e.target_type;
+ return {};
+ }
+
+ size_t size = e.num_sectors * LP_SECTOR_SIZE;
+ uint64_t super_offset = e.target_data * LP_SECTOR_SIZE;
+ extents.emplace_back(super_offset, size, image_name, image_offset);
+
+ image_offset += size;
+ }
+ }
+
+ if (!AddGapExtents(&extents, SuperImageExtent::Type::DONTCARE)) {
+ return {};
+ }
+ return extents;
+}
+
+bool SuperImageExtent::operator==(const SuperImageExtent& other) const {
+ if (offset != other.offset) {
+ return false;
+ }
+ if (size != other.size) {
+ return false;
+ }
+ if (type != other.type) {
+ return false;
+ }
+ switch (type) {
+ case Type::DATA:
+ return *blob == *other.blob;
+ case Type::PARTITION:
+ return image_name == other.image_name && image_offset == other.image_offset;
+ default:
+ return true;
+ }
+}
+
+std::ostream& operator<<(std::ostream& stream, const SuperImageExtent& extent) {
+ stream << "extent:" << extent.offset << ":" << extent.size << ":";
+ switch (extent.type) {
+ case SuperImageExtent::Type::DATA:
+ stream << "data";
+ break;
+ case SuperImageExtent::Type::PARTITION:
+ stream << "partition:" << extent.image_name << ":" << extent.image_offset;
+ break;
+ case SuperImageExtent::Type::ZERO:
+ stream << "zero";
+ break;
+ case SuperImageExtent::Type::DONTCARE:
+ stream << "dontcare";
+ break;
+ default:
+ stream << "invalid";
+ }
+ return stream;
+}
+
+} // namespace fs_mgr
+} // namespace android
diff --git a/fs_mgr/liblp/super_layout_builder_test.cpp b/fs_mgr/liblp/super_layout_builder_test.cpp
new file mode 100644
index 0000000..714b6b4
--- /dev/null
+++ b/fs_mgr/liblp/super_layout_builder_test.cpp
@@ -0,0 +1,141 @@
+//
+// Copyright (C) 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+#include <gmock/gmock.h>
+#include <gtest/gtest.h>
+#include <liblp/builder.h>
+#include <liblp/super_layout_builder.h>
+#include <storage_literals/storage_literals.h>
+
+#include "images.h"
+#include "writer.h"
+
+using namespace android::fs_mgr;
+using namespace android::storage_literals;
+
+TEST(SuperImageTool, Layout) {
+ auto builder = MetadataBuilder::New(4_MiB, 8_KiB, 2);
+ ASSERT_NE(builder, nullptr);
+
+ Partition* p = builder->AddPartition("system_a", LP_PARTITION_ATTR_READONLY);
+ ASSERT_NE(p, nullptr);
+
+ auto metadata = builder->Export();
+ ASSERT_NE(metadata, nullptr);
+
+ SuperLayoutBuilder tool;
+ ASSERT_TRUE(tool.Open(*metadata.get()));
+ ASSERT_TRUE(tool.AddPartition("system_a", "system.img", 16_KiB));
+
+ // Get a copy of the metadata we'd expect if flashing.
+ ASSERT_TRUE(builder->ResizePartition(p, 16_KiB));
+ metadata = builder->Export();
+ ASSERT_NE(metadata, nullptr);
+
+ auto geometry_blob = std::make_shared<std::string>(SerializeGeometry(metadata->geometry));
+ auto metadata_blob = std::make_shared<std::string>(SerializeMetadata(*metadata.get()));
+ metadata_blob->resize(4_KiB, '\0');
+
+ auto extents = tool.GetImageLayout();
+ ASSERT_EQ(extents.size(), 12);
+ EXPECT_EQ(extents[0], SuperImageExtent(0, 4096, SuperImageExtent::Type::ZERO));
+ EXPECT_EQ(extents[1], SuperImageExtent(4096, geometry_blob));
+ EXPECT_EQ(extents[2], SuperImageExtent(8192, geometry_blob));
+ EXPECT_EQ(extents[3], SuperImageExtent(12288, metadata_blob));
+ EXPECT_EQ(extents[4], SuperImageExtent(16384, 4096, SuperImageExtent::Type::DONTCARE));
+ EXPECT_EQ(extents[5], SuperImageExtent(20480, metadata_blob));
+ EXPECT_EQ(extents[6], SuperImageExtent(24576, 4096, SuperImageExtent::Type::DONTCARE));
+ EXPECT_EQ(extents[7], SuperImageExtent(28672, metadata_blob));
+ EXPECT_EQ(extents[8], SuperImageExtent(32768, 4096, SuperImageExtent::Type::DONTCARE));
+ EXPECT_EQ(extents[9], SuperImageExtent(36864, metadata_blob));
+ EXPECT_EQ(extents[10], SuperImageExtent(40960, 4096, SuperImageExtent::Type::DONTCARE));
+ EXPECT_EQ(extents[11], SuperImageExtent(45056, 16384, "system.img", 0));
+}
+
+TEST(SuperImageTool, NoWritablePartitions) {
+ auto builder = MetadataBuilder::New(4_MiB, 8_KiB, 2);
+ ASSERT_NE(builder, nullptr);
+
+ Partition* p = builder->AddPartition("system_a", 0);
+ ASSERT_NE(p, nullptr);
+
+ auto metadata = builder->Export();
+ ASSERT_NE(metadata, nullptr);
+
+ SuperLayoutBuilder tool;
+ ASSERT_FALSE(tool.Open(*metadata.get()));
+}
+
+TEST(SuperImageTool, NoRetrofit) {
+ auto builder = MetadataBuilder::New(4_MiB, 8_KiB, 2);
+ ASSERT_NE(builder, nullptr);
+
+ Partition* p = builder->AddPartition("system_a", LP_PARTITION_ATTR_READONLY);
+ ASSERT_NE(p, nullptr);
+
+ auto metadata = builder->Export();
+ ASSERT_NE(metadata, nullptr);
+
+ // Add an extra block device.
+ metadata->block_devices.emplace_back(metadata->block_devices[0]);
+
+ SuperLayoutBuilder tool;
+ ASSERT_FALSE(tool.Open(*metadata.get()));
+}
+
+TEST(SuperImageTool, NoRetrofit2) {
+ auto builder = MetadataBuilder::New(4_MiB, 8_KiB, 2);
+ ASSERT_NE(builder, nullptr);
+
+ Partition* p = builder->AddPartition(
+ "system_a", LP_PARTITION_ATTR_READONLY | LP_PARTITION_ATTR_SLOT_SUFFIXED);
+ ASSERT_NE(p, nullptr);
+
+ auto metadata = builder->Export();
+ ASSERT_NE(metadata, nullptr);
+
+ SuperLayoutBuilder tool;
+ ASSERT_FALSE(tool.Open(*metadata.get()));
+}
+
+TEST(SuperImageTool, NoFixedPartitions) {
+ auto builder = MetadataBuilder::New(4_MiB, 8_KiB, 2);
+ ASSERT_NE(builder, nullptr);
+
+ Partition* p = builder->AddPartition("system_a", LP_PARTITION_ATTR_READONLY);
+ ASSERT_NE(p, nullptr);
+ ASSERT_TRUE(builder->ResizePartition(p, 4_KiB));
+
+ auto metadata = builder->Export();
+ ASSERT_NE(metadata, nullptr);
+
+ SuperLayoutBuilder tool;
+ ASSERT_FALSE(tool.Open(*metadata.get()));
+}
+
+TEST(SuperImageTool, LargeAlignedMetadata) {
+ auto builder = MetadataBuilder::New(4_MiB, 512, 2);
+ ASSERT_NE(builder, nullptr);
+
+ auto metadata = builder->Export();
+ ASSERT_NE(metadata, nullptr);
+
+ SuperLayoutBuilder tool;
+ ASSERT_TRUE(tool.Open(*metadata.get()));
+
+ auto extents = tool.GetImageLayout();
+ ASSERT_TRUE(extents.empty());
+}
diff --git a/fs_mgr/liblp/utility.h b/fs_mgr/liblp/utility.h
index aa3a6a0..32a59a5 100644
--- a/fs_mgr/liblp/utility.h
+++ b/fs_mgr/liblp/utility.h
@@ -30,7 +30,7 @@
#include "liblp/liblp.h"
-#define LP_TAG "[liblp]"
+#define LP_TAG "[liblp] "
#define LWARN LOG(WARNING) << LP_TAG
#define LINFO LOG(INFO) << LP_TAG
#define LERROR LOG(ERROR) << LP_TAG
diff --git a/fs_mgr/libsnapshot/Android.bp b/fs_mgr/libsnapshot/Android.bp
index 2165961..c2f435f 100644
--- a/fs_mgr/libsnapshot/Android.bp
+++ b/fs_mgr/libsnapshot/Android.bp
@@ -269,14 +269,19 @@
defaults: ["libsnapshot_test_defaults", "libsnapshot_hal_deps"],
}
-sh_test {
- name: "run_snapshot_tests",
- src: "run_snapshot_tests.sh",
- test_suites: [
- "device-tests",
+cc_test {
+ name: "vab_legacy_tests",
+ defaults: ["libsnapshot_test_defaults", "libsnapshot_hal_deps"],
+ cppflags: [
+ "-DLIBSNAPSHOT_TEST_VAB_LEGACY",
],
- required: [
- "vts_libsnapshot_test",
+}
+
+cc_test {
+ name: "vabc_legacy_tests",
+ defaults: ["libsnapshot_test_defaults", "libsnapshot_hal_deps"],
+ cppflags: [
+ "-DLIBSNAPSHOT_TEST_VABC_LEGACY",
],
}
diff --git a/fs_mgr/libsnapshot/include/libsnapshot/cow_writer.h b/fs_mgr/libsnapshot/include/libsnapshot/cow_writer.h
index a9682a1..c7b83a8 100644
--- a/fs_mgr/libsnapshot/include/libsnapshot/cow_writer.h
+++ b/fs_mgr/libsnapshot/include/libsnapshot/cow_writer.h
@@ -16,10 +16,17 @@
#include <stdint.h>
+#include <condition_variable>
#include <cstdint>
+#include <future>
#include <memory>
+#include <mutex>
#include <optional>
+#include <queue>
#include <string>
+#include <thread>
+#include <utility>
+#include <vector>
#include <android-base/unique_fd.h>
#include <libsnapshot/cow_format.h>
@@ -42,6 +49,12 @@
// Preset the number of merged ops. Only useful for testing.
uint64_t num_merge_ops = 0;
+
+ // Number of threads for compression
+ int num_compress_threads = 0;
+
+ // Batch write cluster ops
+ bool batch_write = false;
};
// Interface for writing to a snapuserd COW. All operations are ordered; merges
@@ -100,9 +113,46 @@
CowOptions options_;
};
+class CompressWorker {
+ public:
+ CompressWorker(CowCompressionAlgorithm compression, uint32_t block_size);
+ bool RunThread();
+ void EnqueueCompressBlocks(const void* buffer, size_t num_blocks);
+ bool GetCompressedBuffers(std::vector<std::basic_string<uint8_t>>* compressed_buf);
+ void Finalize();
+ static std::basic_string<uint8_t> Compress(CowCompressionAlgorithm compression,
+ const void* data, size_t length);
+
+ static bool CompressBlocks(CowCompressionAlgorithm compression, size_t block_size,
+ const void* buffer, size_t num_blocks,
+ std::vector<std::basic_string<uint8_t>>* compressed_data);
+
+ private:
+ struct CompressWork {
+ const void* buffer;
+ size_t num_blocks;
+ bool compression_status = false;
+ std::vector<std::basic_string<uint8_t>> compressed_data;
+ };
+
+ CowCompressionAlgorithm compression_;
+ uint32_t block_size_;
+
+ std::queue<CompressWork> work_queue_;
+ std::queue<CompressWork> compressed_queue_;
+ std::mutex lock_;
+ std::condition_variable cv_;
+ bool stopped_ = false;
+
+ std::basic_string<uint8_t> Compress(const void* data, size_t length);
+ bool CompressBlocks(const void* buffer, size_t num_blocks,
+ std::vector<std::basic_string<uint8_t>>* compressed_data);
+};
+
class CowWriter : public ICowWriter {
public:
explicit CowWriter(const CowOptions& options);
+ ~CowWriter();
// Set up the writer.
// The file starts from the beginning.
@@ -138,6 +188,7 @@
bool EmitBlocks(uint64_t new_block_start, const void* data, size_t size, uint64_t old_block,
uint16_t offset, uint8_t type);
void SetupHeaders();
+ void SetupWriteOptions();
bool ParseOptions();
bool OpenForWrite();
bool OpenForAppend(uint64_t label);
@@ -145,9 +196,12 @@
bool WriteRawData(const void* data, size_t size);
bool WriteOperation(const CowOperation& op, const void* data = nullptr, size_t size = 0);
void AddOperation(const CowOperation& op);
- std::basic_string<uint8_t> Compress(const void* data, size_t length);
void InitPos();
+ void InitBatchWrites();
+ void InitWorkers();
+ bool FlushCluster();
+ bool CompressBlocks(size_t num_blocks, const void* data);
bool SetFd(android::base::borrowed_fd fd);
bool Sync();
bool Truncate(off_t length);
@@ -159,8 +213,11 @@
CowHeader header_{};
CowFooter footer_{};
CowCompressionAlgorithm compression_ = kCowCompressNone;
+ uint64_t current_op_pos_ = 0;
uint64_t next_op_pos_ = 0;
uint64_t next_data_pos_ = 0;
+ uint64_t current_data_pos_ = 0;
+ ssize_t total_data_written_ = 0;
uint32_t cluster_size_ = 0;
uint32_t current_cluster_size_ = 0;
uint64_t current_data_size_ = 0;
@@ -168,6 +225,21 @@
bool merge_in_progress_ = false;
bool is_block_device_ = false;
uint64_t cow_image_size_ = INT64_MAX;
+
+ int num_compress_threads_ = 1;
+ std::vector<std::unique_ptr<CompressWorker>> compress_threads_;
+ std::vector<std::future<bool>> threads_;
+ std::vector<std::basic_string<uint8_t>> compressed_buf_;
+ std::vector<std::basic_string<uint8_t>>::iterator buf_iter_;
+
+ std::vector<std::unique_ptr<CowOperation>> opbuffer_vec_;
+ std::vector<std::unique_ptr<uint8_t[]>> databuffer_vec_;
+ std::unique_ptr<struct iovec[]> cowop_vec_;
+ int op_vec_index_ = 0;
+
+ std::unique_ptr<struct iovec[]> data_vec_;
+ int data_vec_index_ = 0;
+ bool batch_write_ = false;
};
} // namespace snapshot
diff --git a/fs_mgr/libsnapshot/include/libsnapshot/snapshot.h b/fs_mgr/libsnapshot/include/libsnapshot/snapshot.h
index cdff06e..9eb89b6 100644
--- a/fs_mgr/libsnapshot/include/libsnapshot/snapshot.h
+++ b/fs_mgr/libsnapshot/include/libsnapshot/snapshot.h
@@ -395,6 +395,10 @@
// first-stage to decide whether to launch snapuserd.
bool IsSnapuserdRequired();
+ // This is primarily used to device reboot. If OTA update is in progress,
+ // init will avoid killing processes
+ bool IsUserspaceSnapshotUpdateInProgress();
+
enum class SnapshotDriver {
DM_SNAPSHOT,
DM_USER,
diff --git a/fs_mgr/libsnapshot/include_test/libsnapshot/test_helpers.h b/fs_mgr/libsnapshot/include_test/libsnapshot/test_helpers.h
index f850b94..24c91a8 100644
--- a/fs_mgr/libsnapshot/include_test/libsnapshot/test_helpers.h
+++ b/fs_mgr/libsnapshot/include_test/libsnapshot/test_helpers.h
@@ -143,6 +143,9 @@
virtual DmDeviceState GetState(const std::string& name) const override {
return impl_.GetState(name);
}
+ virtual bool LoadTable(const std::string& name, const DmTable& table) {
+ return impl_.LoadTable(name, table);
+ }
virtual bool LoadTableAndActivate(const std::string& name, const DmTable& table) {
return impl_.LoadTableAndActivate(name, table);
}
diff --git a/fs_mgr/libsnapshot/libsnapshot_cow/cow_api_test.cpp b/fs_mgr/libsnapshot/libsnapshot_cow/cow_api_test.cpp
index 2c1187f..862ce55 100644
--- a/fs_mgr/libsnapshot/libsnapshot_cow/cow_api_test.cpp
+++ b/fs_mgr/libsnapshot/libsnapshot_cow/cow_api_test.cpp
@@ -298,6 +298,150 @@
ASSERT_TRUE(iter->Done());
}
+class CompressionRWTest : public CowTest, public testing::WithParamInterface<const char*> {};
+
+TEST_P(CompressionRWTest, ThreadedBatchWrites) {
+ CowOptions options;
+ options.compression = GetParam();
+ options.num_compress_threads = 2;
+
+ CowWriter writer(options);
+
+ ASSERT_TRUE(writer.Initialize(cow_->fd));
+
+ std::string xor_data = "This is test data-1. Testing xor";
+ xor_data.resize(options.block_size, '\0');
+ ASSERT_TRUE(writer.AddXorBlocks(50, xor_data.data(), xor_data.size(), 24, 10));
+
+ std::string data = "This is test data-2. Testing replace ops";
+ data.resize(options.block_size * 2048, '\0');
+ ASSERT_TRUE(writer.AddRawBlocks(100, data.data(), data.size()));
+
+ std::string data2 = "This is test data-3. Testing replace ops";
+ data2.resize(options.block_size * 259, '\0');
+ ASSERT_TRUE(writer.AddRawBlocks(6000, data2.data(), data2.size()));
+
+ std::string data3 = "This is test data-4. Testing replace ops";
+ data3.resize(options.block_size, '\0');
+ ASSERT_TRUE(writer.AddRawBlocks(9000, data3.data(), data3.size()));
+
+ ASSERT_TRUE(writer.Finalize());
+
+ int expected_blocks = (1 + 2048 + 259 + 1);
+ ASSERT_EQ(lseek(cow_->fd, 0, SEEK_SET), 0);
+
+ CowReader reader;
+ ASSERT_TRUE(reader.Parse(cow_->fd));
+
+ auto iter = reader.GetOpIter();
+ ASSERT_NE(iter, nullptr);
+
+ int total_blocks = 0;
+ while (!iter->Done()) {
+ auto op = &iter->Get();
+
+ if (op->type == kCowXorOp) {
+ total_blocks += 1;
+ StringSink sink;
+ ASSERT_EQ(op->new_block, 50);
+ ASSERT_EQ(op->source, 98314); // 4096 * 24 + 10
+ ASSERT_TRUE(reader.ReadData(*op, &sink));
+ ASSERT_EQ(sink.stream(), xor_data);
+ }
+
+ if (op->type == kCowReplaceOp) {
+ total_blocks += 1;
+ if (op->new_block == 100) {
+ StringSink sink;
+ ASSERT_TRUE(reader.ReadData(*op, &sink));
+ data.resize(options.block_size);
+ ASSERT_EQ(sink.stream(), data);
+ }
+ if (op->new_block == 6000) {
+ StringSink sink;
+ ASSERT_TRUE(reader.ReadData(*op, &sink));
+ data2.resize(options.block_size);
+ ASSERT_EQ(sink.stream(), data2);
+ }
+ if (op->new_block == 9000) {
+ StringSink sink;
+ ASSERT_TRUE(reader.ReadData(*op, &sink));
+ ASSERT_EQ(sink.stream(), data3);
+ }
+ }
+
+ iter->Next();
+ }
+
+ ASSERT_EQ(total_blocks, expected_blocks);
+}
+
+TEST_P(CompressionRWTest, NoBatchWrites) {
+ CowOptions options;
+ options.compression = GetParam();
+ options.num_compress_threads = 1;
+ options.cluster_ops = 0;
+
+ CowWriter writer(options);
+
+ ASSERT_TRUE(writer.Initialize(cow_->fd));
+
+ std::string data = "Testing replace ops without batch writes";
+ data.resize(options.block_size * 1024, '\0');
+ ASSERT_TRUE(writer.AddRawBlocks(50, data.data(), data.size()));
+
+ std::string data2 = "Testing odd blocks without batch writes";
+ data2.resize(options.block_size * 111, '\0');
+ ASSERT_TRUE(writer.AddRawBlocks(3000, data2.data(), data2.size()));
+
+ std::string data3 = "Testing single 4k block";
+ data3.resize(options.block_size, '\0');
+ ASSERT_TRUE(writer.AddRawBlocks(5000, data3.data(), data3.size()));
+
+ ASSERT_TRUE(writer.Finalize());
+
+ int expected_blocks = (1024 + 111 + 1);
+ ASSERT_EQ(lseek(cow_->fd, 0, SEEK_SET), 0);
+
+ CowReader reader;
+ ASSERT_TRUE(reader.Parse(cow_->fd));
+
+ auto iter = reader.GetOpIter();
+ ASSERT_NE(iter, nullptr);
+
+ int total_blocks = 0;
+ while (!iter->Done()) {
+ auto op = &iter->Get();
+
+ if (op->type == kCowReplaceOp) {
+ total_blocks += 1;
+ if (op->new_block == 50) {
+ StringSink sink;
+ ASSERT_TRUE(reader.ReadData(*op, &sink));
+ data.resize(options.block_size);
+ ASSERT_EQ(sink.stream(), data);
+ }
+ if (op->new_block == 3000) {
+ StringSink sink;
+ ASSERT_TRUE(reader.ReadData(*op, &sink));
+ data2.resize(options.block_size);
+ ASSERT_EQ(sink.stream(), data2);
+ }
+ if (op->new_block == 5000) {
+ StringSink sink;
+ ASSERT_TRUE(reader.ReadData(*op, &sink));
+ ASSERT_EQ(sink.stream(), data3);
+ }
+ }
+
+ iter->Next();
+ }
+
+ ASSERT_EQ(total_blocks, expected_blocks);
+}
+
+INSTANTIATE_TEST_SUITE_P(CowApi, CompressionRWTest, testing::Values("none", "gz", "brotli", "lz4"));
+
TEST_F(CowTest, ClusterCompressGz) {
CowOptions options;
options.compression = "gz";
diff --git a/fs_mgr/libsnapshot/libsnapshot_cow/cow_compress.cpp b/fs_mgr/libsnapshot/libsnapshot_cow/cow_compress.cpp
index 0eb231b..9b50986 100644
--- a/fs_mgr/libsnapshot/libsnapshot_cow/cow_compress.cpp
+++ b/fs_mgr/libsnapshot/libsnapshot_cow/cow_compress.cpp
@@ -32,9 +32,13 @@
namespace android {
namespace snapshot {
+std::basic_string<uint8_t> CompressWorker::Compress(const void* data, size_t length) {
+ return Compress(compression_, data, length);
+}
-std::basic_string<uint8_t> CowWriter::Compress(const void* data, size_t length) {
- switch (compression_) {
+std::basic_string<uint8_t> CompressWorker::Compress(CowCompressionAlgorithm compression,
+ const void* data, size_t length) {
+ switch (compression) {
case kCowCompressGz: {
const auto bound = compressBound(length);
std::basic_string<uint8_t> buffer(bound, '\0');
@@ -94,11 +98,130 @@
return buffer;
}
default:
- LOG(ERROR) << "unhandled compression type: " << compression_;
+ LOG(ERROR) << "unhandled compression type: " << compression;
break;
}
return {};
}
+bool CompressWorker::CompressBlocks(const void* buffer, size_t num_blocks,
+ std::vector<std::basic_string<uint8_t>>* compressed_data) {
+ return CompressBlocks(compression_, block_size_, buffer, num_blocks, compressed_data);
+}
+
+bool CompressWorker::CompressBlocks(CowCompressionAlgorithm compression, size_t block_size,
+ const void* buffer, size_t num_blocks,
+ std::vector<std::basic_string<uint8_t>>* compressed_data) {
+ const uint8_t* iter = reinterpret_cast<const uint8_t*>(buffer);
+ while (num_blocks) {
+ auto data = Compress(compression, iter, block_size);
+ if (data.empty()) {
+ PLOG(ERROR) << "CompressBlocks: Compression failed";
+ return false;
+ }
+ if (data.size() > std::numeric_limits<uint16_t>::max()) {
+ LOG(ERROR) << "Compressed block is too large: " << data.size();
+ return false;
+ }
+
+ compressed_data->emplace_back(std::move(data));
+ num_blocks -= 1;
+ iter += block_size;
+ }
+ return true;
+}
+
+bool CompressWorker::RunThread() {
+ while (true) {
+ // Wait for work
+ CompressWork blocks;
+ {
+ std::unique_lock<std::mutex> lock(lock_);
+ while (work_queue_.empty() && !stopped_) {
+ cv_.wait(lock);
+ }
+
+ if (stopped_) {
+ return true;
+ }
+
+ blocks = std::move(work_queue_.front());
+ work_queue_.pop();
+ }
+
+ // Compress blocks
+ bool ret = CompressBlocks(blocks.buffer, blocks.num_blocks, &blocks.compressed_data);
+ blocks.compression_status = ret;
+ {
+ std::lock_guard<std::mutex> lock(lock_);
+ compressed_queue_.push(std::move(blocks));
+ }
+
+ // Notify completion
+ cv_.notify_all();
+
+ if (!ret) {
+ LOG(ERROR) << "CompressBlocks failed";
+ return false;
+ }
+ }
+
+ return true;
+}
+
+void CompressWorker::EnqueueCompressBlocks(const void* buffer, size_t num_blocks) {
+ {
+ std::lock_guard<std::mutex> lock(lock_);
+
+ CompressWork blocks = {};
+ blocks.buffer = buffer;
+ blocks.num_blocks = num_blocks;
+ work_queue_.push(std::move(blocks));
+ }
+ cv_.notify_all();
+}
+
+bool CompressWorker::GetCompressedBuffers(std::vector<std::basic_string<uint8_t>>* compressed_buf) {
+ {
+ std::unique_lock<std::mutex> lock(lock_);
+ while (compressed_queue_.empty() && !stopped_) {
+ cv_.wait(lock);
+ }
+
+ if (stopped_) {
+ return true;
+ }
+ }
+
+ {
+ std::lock_guard<std::mutex> lock(lock_);
+ while (compressed_queue_.size() > 0) {
+ CompressWork blocks = std::move(compressed_queue_.front());
+ compressed_queue_.pop();
+
+ if (blocks.compression_status) {
+ compressed_buf->insert(compressed_buf->end(),
+ std::make_move_iterator(blocks.compressed_data.begin()),
+ std::make_move_iterator(blocks.compressed_data.end()));
+ } else {
+ LOG(ERROR) << "Block compression failed";
+ return false;
+ }
+ }
+ }
+
+ return true;
+}
+
+void CompressWorker::Finalize() {
+ {
+ std::unique_lock<std::mutex> lock(lock_);
+ stopped_ = true;
+ }
+ cv_.notify_all();
+}
+
+CompressWorker::CompressWorker(CowCompressionAlgorithm compression, uint32_t block_size)
+ : compression_(compression), block_size_(block_size) {}
} // namespace snapshot
} // namespace android
diff --git a/fs_mgr/libsnapshot/libsnapshot_cow/cow_writer.cpp b/fs_mgr/libsnapshot/libsnapshot_cow/cow_writer.cpp
index 43c17a6..56b48f0 100644
--- a/fs_mgr/libsnapshot/libsnapshot_cow/cow_writer.cpp
+++ b/fs_mgr/libsnapshot/libsnapshot_cow/cow_writer.cpp
@@ -15,6 +15,7 @@
//
#include <sys/types.h>
+#include <sys/uio.h>
#include <unistd.h>
#include <limits>
@@ -22,6 +23,7 @@
#include <android-base/file.h>
#include <android-base/logging.h>
+#include <android-base/properties.h>
#include <android-base/unique_fd.h>
#include <brotli/encode.h>
#include <libsnapshot/cow_format.h>
@@ -132,6 +134,46 @@
CowWriter::CowWriter(const CowOptions& options) : ICowWriter(options), fd_(-1) {
SetupHeaders();
+ SetupWriteOptions();
+}
+
+CowWriter::~CowWriter() {
+ for (size_t i = 0; i < compress_threads_.size(); i++) {
+ CompressWorker* worker = compress_threads_[i].get();
+ if (worker) {
+ worker->Finalize();
+ }
+ }
+
+ bool ret = true;
+ for (auto& t : threads_) {
+ ret = t.get() && ret;
+ }
+
+ if (!ret) {
+ LOG(ERROR) << "Compression failed";
+ }
+ compress_threads_.clear();
+}
+
+void CowWriter::SetupWriteOptions() {
+ num_compress_threads_ = options_.num_compress_threads;
+
+ if (!num_compress_threads_) {
+ num_compress_threads_ = 1;
+ // We prefer not to have more than two threads as the overhead of additional
+ // threads is far greater than cutting down compression time.
+ if (header_.cluster_ops &&
+ android::base::GetBoolProperty("ro.virtual_ab.compression.threads", false)) {
+ num_compress_threads_ = 2;
+ }
+ }
+
+ if (header_.cluster_ops &&
+ (android::base::GetBoolProperty("ro.virtual_ab.batch_writes", false) ||
+ options_.batch_write)) {
+ batch_write_ = true;
+ }
}
void CowWriter::SetupHeaders() {
@@ -206,6 +248,46 @@
return true;
}
+void CowWriter::InitBatchWrites() {
+ if (batch_write_) {
+ cowop_vec_ = std::make_unique<struct iovec[]>(header_.cluster_ops);
+ data_vec_ = std::make_unique<struct iovec[]>(header_.cluster_ops);
+ struct iovec* cowop_ptr = cowop_vec_.get();
+ struct iovec* data_ptr = data_vec_.get();
+ for (size_t i = 0; i < header_.cluster_ops; i++) {
+ std::unique_ptr<CowOperation> op = std::make_unique<CowOperation>();
+ cowop_ptr[i].iov_base = op.get();
+ cowop_ptr[i].iov_len = sizeof(CowOperation);
+ opbuffer_vec_.push_back(std::move(op));
+
+ std::unique_ptr<uint8_t[]> buffer = std::make_unique<uint8_t[]>(header_.block_size * 2);
+ data_ptr[i].iov_base = buffer.get();
+ data_ptr[i].iov_len = header_.block_size * 2;
+ databuffer_vec_.push_back(std::move(buffer));
+ }
+
+ current_op_pos_ = next_op_pos_;
+ current_data_pos_ = next_data_pos_;
+ }
+
+ std::string batch_write = batch_write_ ? "enabled" : "disabled";
+ LOG(INFO) << "Batch writes: " << batch_write;
+}
+
+void CowWriter::InitWorkers() {
+ if (num_compress_threads_ <= 1) {
+ LOG(INFO) << "Not creating new threads for compression.";
+ return;
+ }
+ for (int i = 0; i < num_compress_threads_; i++) {
+ auto wt = std::make_unique<CompressWorker>(compression_, header_.block_size);
+ threads_.emplace_back(std::async(std::launch::async, &CompressWorker::RunThread, wt.get()));
+ compress_threads_.push_back(std::move(wt));
+ }
+
+ LOG(INFO) << num_compress_threads_ << " thread used for compression";
+}
+
bool CowWriter::Initialize(unique_fd&& fd) {
owned_fd_ = std::move(fd);
return Initialize(borrowed_fd{owned_fd_});
@@ -216,7 +298,12 @@
return false;
}
- return OpenForWrite();
+ if (!OpenForWrite()) {
+ return false;
+ }
+
+ InitWorkers();
+ return true;
}
bool CowWriter::InitializeAppend(android::base::unique_fd&& fd, uint64_t label) {
@@ -229,7 +316,13 @@
return false;
}
- return OpenForAppend(label);
+ bool ret = OpenForAppend(label);
+
+ if (ret && !compress_threads_.size()) {
+ InitWorkers();
+ }
+
+ return ret;
}
void CowWriter::InitPos() {
@@ -287,6 +380,7 @@
}
InitPos();
+ InitBatchWrites();
return true;
}
@@ -320,6 +414,9 @@
PLOG(ERROR) << "lseek failed";
return false;
}
+
+ InitBatchWrites();
+
return EmitClusterIfNeeded();
}
@@ -348,47 +445,111 @@
return EmitBlocks(new_block_start, data, size, old_block, offset, kCowXorOp);
}
+bool CowWriter::CompressBlocks(size_t num_blocks, const void* data) {
+ size_t num_threads = (num_blocks == 1) ? 1 : num_compress_threads_;
+ size_t num_blocks_per_thread = num_blocks / num_threads;
+ const uint8_t* iter = reinterpret_cast<const uint8_t*>(data);
+ compressed_buf_.clear();
+ if (num_threads <= 1) {
+ return CompressWorker::CompressBlocks(compression_, options_.block_size, data, num_blocks,
+ &compressed_buf_);
+ }
+
+ // Submit the blocks per thread. The retrieval of
+ // compressed buffers has to be done in the same order.
+ // We should not poll for completed buffers in a different order as the
+ // buffers are tightly coupled with block ordering.
+ for (size_t i = 0; i < num_threads; i++) {
+ CompressWorker* worker = compress_threads_[i].get();
+ if (i == num_threads - 1) {
+ num_blocks_per_thread = num_blocks;
+ }
+ worker->EnqueueCompressBlocks(iter, num_blocks_per_thread);
+ iter += (num_blocks_per_thread * header_.block_size);
+ num_blocks -= num_blocks_per_thread;
+ }
+
+ for (size_t i = 0; i < num_threads; i++) {
+ CompressWorker* worker = compress_threads_[i].get();
+ if (!worker->GetCompressedBuffers(&compressed_buf_)) {
+ return false;
+ }
+ }
+
+ return true;
+}
+
bool CowWriter::EmitBlocks(uint64_t new_block_start, const void* data, size_t size,
uint64_t old_block, uint16_t offset, uint8_t type) {
- const uint8_t* iter = reinterpret_cast<const uint8_t*>(data);
CHECK(!merge_in_progress_);
- for (size_t i = 0; i < size / header_.block_size; i++) {
- CowOperation op = {};
- op.new_block = new_block_start + i;
- op.type = type;
- if (type == kCowXorOp) {
- op.source = (old_block + i) * header_.block_size + offset;
- } else {
- op.source = next_data_pos_;
+ const uint8_t* iter = reinterpret_cast<const uint8_t*>(data);
+
+ // Update engine can potentially send 100MB of blocks at a time. We
+ // don't want to process all those blocks in one shot as it can
+ // stress the memory. Hence, process the blocks in chunks.
+ //
+ // 1024 blocks is reasonable given we will end up using max
+ // memory of ~4MB.
+ const size_t kProcessingBlocks = 1024;
+ size_t num_blocks = (size / header_.block_size);
+ size_t i = 0;
+
+ while (num_blocks) {
+ size_t pending_blocks = (std::min(kProcessingBlocks, num_blocks));
+
+ if (compression_ && num_compress_threads_ > 1) {
+ if (!CompressBlocks(pending_blocks, iter)) {
+ return false;
+ }
+ buf_iter_ = compressed_buf_.begin();
+ CHECK(pending_blocks == compressed_buf_.size());
}
- if (compression_) {
- auto data = Compress(iter, header_.block_size);
- if (data.empty()) {
- PLOG(ERROR) << "AddRawBlocks: compression failed";
- return false;
- }
- if (data.size() > std::numeric_limits<uint16_t>::max()) {
- LOG(ERROR) << "Compressed block is too large: " << data.size() << " bytes";
- return false;
- }
- op.compression = compression_;
- op.data_length = static_cast<uint16_t>(data.size());
+ num_blocks -= pending_blocks;
- if (!WriteOperation(op, data.data(), data.size())) {
- PLOG(ERROR) << "AddRawBlocks: write failed, bytes requested: " << size
- << ", bytes written: " << i * header_.block_size;
- return false;
+ while (i < size / header_.block_size && pending_blocks) {
+ CowOperation op = {};
+ op.new_block = new_block_start + i;
+ op.type = type;
+ if (type == kCowXorOp) {
+ op.source = (old_block + i) * header_.block_size + offset;
+ } else {
+ op.source = next_data_pos_;
}
- } else {
- op.data_length = static_cast<uint16_t>(header_.block_size);
- if (!WriteOperation(op, iter, header_.block_size)) {
- PLOG(ERROR) << "AddRawBlocks: write failed";
- return false;
+
+ if (compression_) {
+ auto data = [&, this]() {
+ if (num_compress_threads_ > 1) {
+ auto data = std::move(*buf_iter_);
+ buf_iter_++;
+ return data;
+ } else {
+ auto data =
+ CompressWorker::Compress(compression_, iter, header_.block_size);
+ return data;
+ }
+ }();
+ op.compression = compression_;
+ op.data_length = static_cast<uint16_t>(data.size());
+
+ if (!WriteOperation(op, data.data(), data.size())) {
+ PLOG(ERROR) << "AddRawBlocks: write failed";
+ return false;
+ }
+ } else {
+ op.data_length = static_cast<uint16_t>(header_.block_size);
+ if (!WriteOperation(op, iter, header_.block_size)) {
+ PLOG(ERROR) << "AddRawBlocks: write failed";
+ return false;
+ }
}
+ iter += header_.block_size;
+
+ i += 1;
+ pending_blocks -= 1;
}
- iter += header_.block_size;
+ CHECK(pending_blocks == 0);
}
return true;
}
@@ -416,7 +577,7 @@
bool CowWriter::EmitSequenceData(size_t num_ops, const uint32_t* data) {
CHECK(!merge_in_progress_);
size_t to_add = 0;
- size_t max_ops = std::numeric_limits<uint16_t>::max() / sizeof(uint32_t);
+ size_t max_ops = (header_.block_size * 2) / sizeof(uint32_t);
while (num_ops > 0) {
CowOperation op = {};
op.type = kCowSequenceOp;
@@ -461,6 +622,11 @@
}
bool CowWriter::Finalize() {
+ if (!FlushCluster()) {
+ LOG(ERROR) << "Finalize: FlushCluster() failed";
+ return false;
+ }
+
auto continue_cluster_size = current_cluster_size_;
auto continue_data_size = current_data_size_;
auto continue_data_pos = next_data_pos_;
@@ -525,6 +691,9 @@
next_op_pos_ = continue_op_pos;
footer_.op.num_ops = continue_num_ops;
}
+
+ FlushCluster();
+
return Sync();
}
@@ -556,6 +725,35 @@
return true;
}
+bool CowWriter::FlushCluster() {
+ ssize_t ret;
+
+ if (op_vec_index_) {
+ ret = pwritev(fd_.get(), cowop_vec_.get(), op_vec_index_, current_op_pos_);
+ if (ret != (op_vec_index_ * sizeof(CowOperation))) {
+ PLOG(ERROR) << "pwritev failed for CowOperation. Expected: "
+ << (op_vec_index_ * sizeof(CowOperation));
+ return false;
+ }
+ }
+
+ if (data_vec_index_) {
+ ret = pwritev(fd_.get(), data_vec_.get(), data_vec_index_, current_data_pos_);
+ if (ret != total_data_written_) {
+ PLOG(ERROR) << "pwritev failed for data. Expected: " << total_data_written_;
+ return false;
+ }
+ }
+
+ total_data_written_ = 0;
+ op_vec_index_ = 0;
+ data_vec_index_ = 0;
+ current_op_pos_ = next_op_pos_;
+ current_data_pos_ = next_data_pos_;
+
+ return true;
+}
+
bool CowWriter::WriteOperation(const CowOperation& op, const void* data, size_t size) {
if (!EnsureSpaceAvailable(next_op_pos_ + sizeof(op))) {
return false;
@@ -564,14 +762,43 @@
return false;
}
- if (!android::base::WriteFullyAtOffset(fd_, reinterpret_cast<const uint8_t*>(&op), sizeof(op),
- next_op_pos_)) {
- return false;
+ if (batch_write_) {
+ CowOperation* cow_op = reinterpret_cast<CowOperation*>(cowop_vec_[op_vec_index_].iov_base);
+ std::memcpy(cow_op, &op, sizeof(CowOperation));
+ op_vec_index_ += 1;
+
+ if (data != nullptr && size > 0) {
+ struct iovec* data_ptr = data_vec_.get();
+ std::memcpy(data_ptr[data_vec_index_].iov_base, data, size);
+ data_ptr[data_vec_index_].iov_len = size;
+ data_vec_index_ += 1;
+ total_data_written_ += size;
+ }
+ } else {
+ if (lseek(fd_.get(), next_op_pos_, SEEK_SET) < 0) {
+ PLOG(ERROR) << "lseek failed for writing operation.";
+ return false;
+ }
+ if (!android::base::WriteFully(fd_, reinterpret_cast<const uint8_t*>(&op), sizeof(op))) {
+ return false;
+ }
+ if (data != nullptr && size > 0) {
+ if (!WriteRawData(data, size)) return false;
+ }
}
- if (data != nullptr && size > 0) {
- if (!WriteRawData(data, size)) return false;
- }
+
AddOperation(op);
+
+ if (batch_write_) {
+ if (op_vec_index_ == header_.cluster_ops || data_vec_index_ == header_.cluster_ops ||
+ op.type == kCowLabelOp || op.type == kCowClusterOp) {
+ if (!FlushCluster()) {
+ LOG(ERROR) << "Failed to flush cluster data";
+ return false;
+ }
+ }
+ }
+
return EmitClusterIfNeeded();
}
diff --git a/fs_mgr/libsnapshot/run_snapshot_tests.sh b/fs_mgr/libsnapshot/run_snapshot_tests.sh
deleted file mode 100644
index b03a4e0..0000000
--- a/fs_mgr/libsnapshot/run_snapshot_tests.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/system/bin/sh
-
-# Detect host or AOSP.
-getprop ro.build.version.sdk > /dev/null 2>&1
-if [ $? -eq 0 ]; then
- cmd_prefix=""
- local_root=""
-else
- cmd_prefix="adb shell"
- local_root="${ANDROID_PRODUCT_OUT}"
- set -e
- set -x
- adb root
- adb sync data
- set +x
- set +e
-fi
-
-testpath64="/data/nativetest64/vts_libsnapshot_test/vts_libsnapshot_test"
-testpath32="/data/nativetest/vts_libsnapshot_test/vts_libsnapshot_test"
-if [ -f "${local_root}/${testpath64}" ]; then
- testpath="${testpath64}"
-elif [ -f "${local_root}/${testpath32}" ]; then
- testpath="${testpath32}"
-else
- echo "ERROR: vts_libsnapshot_test not found." 1>&2
- echo "Make sure to build vts_libsnapshot_test or snapshot_tests first." 1>&2
- exit 1
-fi
-
-# Verbose, error on failure.
-set -x
-set -e
-
-time ${cmd_prefix} ${testpath}
diff --git a/fs_mgr/libsnapshot/snapshot.cpp b/fs_mgr/libsnapshot/snapshot.cpp
index 6fed09c..961db02 100644
--- a/fs_mgr/libsnapshot/snapshot.cpp
+++ b/fs_mgr/libsnapshot/snapshot.cpp
@@ -1498,6 +1498,7 @@
if (UpdateUsesUserSnapshots(lock) && !device()->IsTestDevice()) {
if (snapuserd_client_) {
snapuserd_client_->DetachSnapuserd();
+ snapuserd_client_->RemoveTransitionedDaemonIndicator();
snapuserd_client_ = nullptr;
}
}
@@ -4349,5 +4350,16 @@
return status.source_build_fingerprint();
}
+bool SnapshotManager::IsUserspaceSnapshotUpdateInProgress() {
+ auto slot = GetCurrentSlot();
+ if (slot == Slot::Target) {
+ if (IsSnapuserdRequired()) {
+ return true;
+ }
+ }
+
+ return false;
+}
+
} // namespace snapshot
} // namespace android
diff --git a/fs_mgr/libsnapshot/snapshot_test.cpp b/fs_mgr/libsnapshot/snapshot_test.cpp
index 2c01cf6..13314da 100644
--- a/fs_mgr/libsnapshot/snapshot_test.cpp
+++ b/fs_mgr/libsnapshot/snapshot_test.cpp
@@ -53,7 +53,15 @@
#include <libsnapshot/mock_device_info.h>
#include <libsnapshot/mock_snapshot.h>
-DEFINE_string(force_mode, "",
+#if defined(LIBSNAPSHOT_TEST_VAB_LEGACY)
+#define DEFAULT_MODE "vab-legacy"
+#elif defined(LIBSNAPSHOT_TEST_VABC_LEGACY)
+#define DEFAULT_MODE "vabc-legacy"
+#else
+#define DEFAULT_MODE ""
+#endif
+
+DEFINE_string(force_mode, DEFAULT_MODE,
"Force testing older modes (vab-legacy, vabc-legacy) ignoring device config.");
DEFINE_string(force_iouring_disable, "",
"Force testing mode (iouring_disabled) - disable io_uring");
@@ -2661,44 +2669,46 @@
"Merge"s;
});
-// Test behavior of ImageManager::Create on low space scenario. These tests assumes image manager
-// uses /data as backup device.
-class ImageManagerTest : public SnapshotTest, public WithParamInterface<uint64_t> {
+class ImageManagerTest : public SnapshotTest {
protected:
void SetUp() override {
SKIP_IF_NON_VIRTUAL_AB();
SnapshotTest::SetUp();
- userdata_ = std::make_unique<LowSpaceUserdata>();
- ASSERT_TRUE(userdata_->Init(GetParam()));
}
void TearDown() override {
RETURN_IF_NON_VIRTUAL_AB();
-
+ CleanUp();
+ }
+ void CleanUp() {
EXPECT_TRUE(!image_manager_->BackingImageExists(kImageName) ||
image_manager_->DeleteBackingImage(kImageName));
}
+
static constexpr const char* kImageName = "my_image";
- std::unique_ptr<LowSpaceUserdata> userdata_;
};
-TEST_P(ImageManagerTest, CreateImageNoSpace) {
- uint64_t to_allocate = userdata_->free_space() + userdata_->bsize();
- auto res = image_manager_->CreateBackingImage(kImageName, to_allocate,
- IImageManager::CREATE_IMAGE_DEFAULT);
- ASSERT_FALSE(res) << "Should not be able to create image with size = " << to_allocate
- << " bytes because only " << userdata_->free_space() << " bytes are free";
- ASSERT_EQ(FiemapStatus::ErrorCode::NO_SPACE, res.error_code()) << res.string();
-}
-
-std::vector<uint64_t> ImageManagerTestParams() {
- std::vector<uint64_t> ret;
+TEST_F(ImageManagerTest, CreateImageNoSpace) {
+ bool at_least_one_failure = false;
for (uint64_t size = 1_MiB; size <= 512_MiB; size *= 2) {
- ret.push_back(size);
- }
- return ret;
-}
+ auto userdata = std::make_unique<LowSpaceUserdata>();
+ ASSERT_TRUE(userdata->Init(size));
-INSTANTIATE_TEST_SUITE_P(ImageManagerTest, ImageManagerTest, ValuesIn(ImageManagerTestParams()));
+ uint64_t to_allocate = userdata->free_space() + userdata->bsize();
+
+ auto res = image_manager_->CreateBackingImage(kImageName, to_allocate,
+ IImageManager::CREATE_IMAGE_DEFAULT);
+ if (!res) {
+ at_least_one_failure = true;
+ } else {
+ ASSERT_EQ(res.error_code(), FiemapStatus::ErrorCode::NO_SPACE) << res.string();
+ }
+
+ CleanUp();
+ }
+
+ ASSERT_TRUE(at_least_one_failure)
+ << "We should have failed to allocate at least one over-sized image";
+}
bool Mkdir(const std::string& path) {
if (mkdir(path.c_str(), 0700) && errno != EEXIST) {
diff --git a/fs_mgr/libsnapshot/snapshot_writer_test.cpp b/fs_mgr/libsnapshot/snapshot_writer_test.cpp
index da48eb9..a03632b 100644
--- a/fs_mgr/libsnapshot/snapshot_writer_test.cpp
+++ b/fs_mgr/libsnapshot/snapshot_writer_test.cpp
@@ -33,8 +33,8 @@
TemporaryFile cow_device_file{};
android::snapshot::CowOptions options{.block_size = BLOCK_SIZE};
android::snapshot::CompressedSnapshotWriter snapshot_writer{options};
- snapshot_writer.SetCowDevice(android::base::unique_fd{cow_device_file.fd});
- snapshot_writer.Initialize();
+ ASSERT_TRUE(snapshot_writer.SetCowDevice(android::base::unique_fd{cow_device_file.fd}));
+ ASSERT_TRUE(snapshot_writer.Initialize());
std::vector<unsigned char> buffer;
buffer.resize(BLOCK_SIZE);
std::fill(buffer.begin(), buffer.end(), 123);
diff --git a/fs_mgr/libsnapshot/snapuserd/Android.bp b/fs_mgr/libsnapshot/snapuserd/Android.bp
index 64e0b8a..a67e37c 100644
--- a/fs_mgr/libsnapshot/snapuserd/Android.bp
+++ b/fs_mgr/libsnapshot/snapuserd/Android.bp
@@ -37,11 +37,13 @@
cc_library_static {
name: "libsnapshot_snapuserd",
defaults: [
+ "fs_mgr_defaults",
"libsnapshot_snapuserd_defaults",
],
recovery_available: true,
static_libs: [
"libcutils_sockets",
+ "libfs_mgr",
],
shared_libs: [
"libbase",
@@ -49,6 +51,7 @@
],
export_include_dirs: ["include"],
ramdisk_available: true,
+ vendor_ramdisk_available: true,
}
cc_defaults {
@@ -86,6 +89,7 @@
"libgflags",
"liblog",
"libsnapshot_cow",
+ "libsnapshot_snapuserd",
"libz",
"liblz4",
"libext4_utils",
diff --git a/fs_mgr/libsnapshot/snapuserd/include/snapuserd/snapuserd_client.h b/fs_mgr/libsnapshot/snapuserd/include/snapuserd/snapuserd_client.h
index 4b62b20..fb2251e 100644
--- a/fs_mgr/libsnapshot/snapuserd/include/snapuserd/snapuserd_client.h
+++ b/fs_mgr/libsnapshot/snapuserd/include/snapuserd/snapuserd_client.h
@@ -32,6 +32,7 @@
static constexpr char kSnapuserdSocket[] = "snapuserd";
static constexpr char kSnapuserdSocketProxy[] = "snapuserd_proxy";
+static constexpr char kDaemonAliveIndicator[] = "daemon-alive-indicator";
// Ensure that the second-stage daemon for snapuserd is running.
bool EnsureSnapuserdStarted();
@@ -44,9 +45,11 @@
std::string Receivemsg();
bool ValidateConnection();
+ std::string GetDaemonAliveIndicatorPath();
public:
explicit SnapuserdClient(android::base::unique_fd&& sockfd);
+ SnapuserdClient(){};
static std::unique_ptr<SnapuserdClient> Connect(const std::string& socket_name,
std::chrono::milliseconds timeout_ms);
@@ -91,6 +94,17 @@
// Check the update verification status - invoked by update_verifier during
// boot
bool QueryUpdateVerification();
+
+ // Check if Snapuser daemon is ready post selinux transition after OTA boot
+ // This is invoked only by init as there is no sockets setup yet during
+ // selinux transition
+ bool IsTransitionedDaemonReady();
+
+ // Remove the daemon-alive-indicator path post snapshot merge
+ bool RemoveTransitionedDaemonIndicator();
+
+ // Notify init that snapuserd daemon is ready post selinux transition
+ void NotifyTransitionDaemonIsReady();
};
} // namespace snapshot
diff --git a/fs_mgr/libsnapshot/snapuserd/snapuserd_client.cpp b/fs_mgr/libsnapshot/snapuserd/snapuserd_client.cpp
index e08cf9b..695b581 100644
--- a/fs_mgr/libsnapshot/snapuserd/snapuserd_client.cpp
+++ b/fs_mgr/libsnapshot/snapuserd/snapuserd_client.cpp
@@ -29,10 +29,12 @@
#include <chrono>
#include <sstream>
+#include <android-base/file.h>
#include <android-base/logging.h>
#include <android-base/parseint.h>
#include <android-base/properties.h>
#include <android-base/strings.h>
+#include <fs_mgr/file_wait.h>
#include <snapuserd/snapuserd_client.h>
namespace android {
@@ -279,5 +281,42 @@
return response == "success";
}
+std::string SnapuserdClient::GetDaemonAliveIndicatorPath() {
+ return "/metadata/ota/" + std::string(kDaemonAliveIndicator);
+}
+
+bool SnapuserdClient::IsTransitionedDaemonReady() {
+ if (!android::fs_mgr::WaitForFile(GetDaemonAliveIndicatorPath(), 10s)) {
+ LOG(ERROR) << "Timed out waiting for daemon indicator path: "
+ << GetDaemonAliveIndicatorPath();
+ return false;
+ }
+
+ return true;
+}
+
+bool SnapuserdClient::RemoveTransitionedDaemonIndicator() {
+ std::string error;
+ std::string filePath = GetDaemonAliveIndicatorPath();
+ if (!android::base::RemoveFileIfExists(filePath, &error)) {
+ LOG(ERROR) << "Failed to remove DaemonAliveIndicatorPath - error: " << error;
+ return false;
+ }
+
+ if (!android::fs_mgr::WaitForFileDeleted(filePath, 5s)) {
+ LOG(ERROR) << "Timed out waiting for " << filePath << " to unlink";
+ return false;
+ }
+
+ return true;
+}
+
+void SnapuserdClient::NotifyTransitionDaemonIsReady() {
+ if (!android::base::WriteStringToFile("1", GetDaemonAliveIndicatorPath())) {
+ PLOG(ERROR) << "Unable to write daemon alive indicator path: "
+ << GetDaemonAliveIndicatorPath();
+ }
+}
+
} // namespace snapshot
} // namespace android
diff --git a/fs_mgr/libsnapshot/snapuserd/snapuserd_daemon.cpp b/fs_mgr/libsnapshot/snapuserd/snapuserd_daemon.cpp
index 2f7775c..bfe93eb 100644
--- a/fs_mgr/libsnapshot/snapuserd/snapuserd_daemon.cpp
+++ b/fs_mgr/libsnapshot/snapuserd/snapuserd_daemon.cpp
@@ -119,6 +119,12 @@
}
}
+ // We reach this point only during selinux transition during device boot.
+ // At this point, all threads are spin up and are ready to serve the I/O
+ // requests for dm-user. Lets inform init.
+ auto client = std::make_unique<SnapuserdClient>();
+ client->NotifyTransitionDaemonIsReady();
+
// Skip the accept() call to avoid spurious log spam. The server will still
// run until all handlers have completed.
return user_server_.WaitForSocket();
diff --git a/fs_mgr/libsnapshot/test_helpers.cpp b/fs_mgr/libsnapshot/test_helpers.cpp
index b05123a..9f1d676 100644
--- a/fs_mgr/libsnapshot/test_helpers.cpp
+++ b/fs_mgr/libsnapshot/test_helpers.cpp
@@ -227,7 +227,7 @@
return AssertionFailure() << "Temp file allocated to " << big_file_->path << ", not in "
<< kUserDataDevice;
}
- uint64_t next_consume = std::min(available_space_ - max_free_space,
+ uint64_t next_consume = std::min(std::max(available_space_, max_free_space) - max_free_space,
(uint64_t)std::numeric_limits<off_t>::max());
off_t allocated = 0;
while (next_consume > 0 && free_space_ > max_free_space) {
diff --git a/fs_mgr/libvbmeta/utility.h b/fs_mgr/libvbmeta/utility.h
index 91db0ad..ab9828d 100644
--- a/fs_mgr/libvbmeta/utility.h
+++ b/fs_mgr/libvbmeta/utility.h
@@ -19,7 +19,7 @@
#include <android-base/logging.h>
#include <android-base/result.h>
-#define VBMETA_TAG "[libvbmeta]"
+#define VBMETA_TAG "[libvbmeta] "
#define LWARN LOG(WARNING) << VBMETA_TAG
#define LINFO LOG(INFO) << VBMETA_TAG
#define LERROR LOG(ERROR) << VBMETA_TAG
diff --git a/fs_mgr/tests/vts_fs_test.cpp b/fs_mgr/tests/vts_fs_test.cpp
index b8b34e2..bb2ceb9 100644
--- a/fs_mgr/tests/vts_fs_test.cpp
+++ b/fs_mgr/tests/vts_fs_test.cpp
@@ -66,6 +66,14 @@
int vsr_level = GetVsrLevel();
+ std::vector<std::string> must_be_f2fs;
+ if (vsr_level >= __ANDROID_API_T__) {
+ must_be_f2fs.emplace_back("/data");
+ }
+ if (vsr_level >= __ANDROID_API_U__) {
+ must_be_f2fs.emplace_back("/metadata");
+ }
+
for (const auto& entry : fstab) {
std::string parent_bdev = entry.blk_device;
while (true) {
@@ -99,15 +107,15 @@
}
if (entry.flags & MS_RDONLY) {
- std::vector<std::string> allowed = {"erofs", "ext4"};
- if (vsr_level == __ANDROID_API_T__) {
- allowed.emplace_back("f2fs");
- }
+ std::vector<std::string> allowed = {"erofs", "ext4", "f2fs"};
EXPECT_NE(std::find(allowed.begin(), allowed.end(), entry.fs_type), allowed.end())
<< entry.mount_point;
} else {
- EXPECT_NE(entry.fs_type, "ext4") << entry.mount_point;
+ if (std::find(must_be_f2fs.begin(), must_be_f2fs.end(), entry.mount_point) !=
+ must_be_f2fs.end()) {
+ EXPECT_EQ(entry.fs_type, "f2fs") << entry.mount_point;
+ }
}
}
}
diff --git a/fs_mgr/tools/dmctl.cpp b/fs_mgr/tools/dmctl.cpp
index 62ca162..10efd0c 100644
--- a/fs_mgr/tools/dmctl.cpp
+++ b/fs_mgr/tools/dmctl.cpp
@@ -33,6 +33,7 @@
#include <ios>
#include <iostream>
#include <map>
+#include <optional>
#include <sstream>
#include <string>
#include <vector>
@@ -183,6 +184,8 @@
}
std::string control_device = NextArg();
return std::make_unique<DmTargetUser>(start_sector, num_sectors, control_device);
+ } else if (target_type == "error") {
+ return std::make_unique<DmTargetError>(start_sector, num_sectors);
} else {
std::cerr << "Unrecognized target type: " << target_type << std::endl;
return nullptr;
@@ -206,16 +209,26 @@
char** argv_;
};
-static bool parse_table_args(DmTable* table, int argc, char** argv) {
+struct TableArgs {
+ DmTable table;
+ bool suspended = false;
+};
+
+static std::optional<TableArgs> parse_table_args(int argc, char** argv) {
+ TableArgs out;
+
// Parse extended options first.
int arg_index = 1;
while (arg_index < argc && argv[arg_index][0] == '-') {
if (strcmp(argv[arg_index], "-ro") == 0) {
- table->set_readonly(true);
+ out.table.set_readonly(true);
+ arg_index++;
+ } else if (strcmp(argv[arg_index], "-suspended") == 0) {
+ out.suspended = true;
arg_index++;
} else {
std::cerr << "Unrecognized option: " << argv[arg_index] << std::endl;
- return -EINVAL;
+ return {};
}
}
@@ -223,37 +236,44 @@
TargetParser parser(argc - arg_index, argv + arg_index);
while (parser.More()) {
std::unique_ptr<DmTarget> target = parser.Next();
- if (!target || !table->AddTarget(std::move(target))) {
- return -EINVAL;
+ if (!target || !out.table.AddTarget(std::move(target))) {
+ return {};
}
}
- if (table->num_targets() == 0) {
+ if (out.table.num_targets() == 0) {
std::cerr << "Must define at least one target." << std::endl;
- return -EINVAL;
+ return {};
}
- return 0;
+ return {std::move(out)};
}
static int DmCreateCmdHandler(int argc, char** argv) {
if (argc < 1) {
- std::cerr << "Usage: dmctl create <dm-name> [-ro] <targets...>" << std::endl;
+ std::cerr << "Usage: dmctl create <dm-name> [--suspended] [-ro] <targets...>" << std::endl;
return -EINVAL;
}
std::string name = argv[0];
- DmTable table;
- int ret = parse_table_args(&table, argc, argv);
- if (ret) {
- return ret;
+ auto table_args = parse_table_args(argc, argv);
+ if (!table_args) {
+ return -EINVAL;
}
std::string ignore_path;
DeviceMapper& dm = DeviceMapper::Instance();
- if (!dm.CreateDevice(name, table, &ignore_path, 5s)) {
+ if (!dm.CreateEmptyDevice(name)) {
std::cerr << "Failed to create device-mapper device with name: " << name << std::endl;
return -EIO;
}
+ if (!dm.LoadTable(name, table_args->table)) {
+ std::cerr << "Failed to load table for dm device: " << name << std::endl;
+ return -EIO;
+ }
+ if (!table_args->suspended && !dm.ChangeState(name, DmDeviceState::ACTIVE)) {
+ std::cerr << "Failed to activate table for " << name << std::endl;
+ return -EIO;
+ }
return 0;
}
@@ -269,7 +289,6 @@
std::cerr << "Failed to delete [" << name << "]" << std::endl;
return -EIO;
}
-
return 0;
}
@@ -280,17 +299,20 @@
}
std::string name = argv[0];
- DmTable table;
- int ret = parse_table_args(&table, argc, argv);
- if (ret) {
- return ret;
+ auto table_args = parse_table_args(argc, argv);
+ if (!table_args) {
+ return -EINVAL;
}
DeviceMapper& dm = DeviceMapper::Instance();
- if (!dm.LoadTableAndActivate(name, table)) {
+ if (!dm.LoadTable(name, table_args->table)) {
std::cerr << "Failed to replace device-mapper table to: " << name << std::endl;
return -EIO;
}
+ if (!table_args->suspended && !dm.ChangeState(name, DmDeviceState::ACTIVE)) {
+ std::cerr << "Failed to activate table for " << name << std::endl;
+ return -EIO;
+ }
return 0;
}
diff --git a/healthd/Android.bp b/healthd/Android.bp
index a090b74..235303f 100644
--- a/healthd/Android.bp
+++ b/healthd/Android.bp
@@ -2,18 +2,8 @@
default_applicable_licenses: ["Android-Apache-2.0"],
}
-cc_library_headers {
- name: "libhealthd_headers",
- vendor_available: true,
- recovery_available: true,
- export_include_dirs: ["include"],
- header_libs: ["libbatteryservice_headers"],
- export_header_lib_headers: ["libbatteryservice_headers"],
-}
-
-cc_library_static {
- name: "libbatterymonitor",
- srcs: ["BatteryMonitor.cpp"],
+cc_defaults {
+ name: "libbatterymonitor_defaults",
cflags: ["-Wall", "-Werror"],
vendor_available: true,
recovery_available: true,
@@ -25,15 +15,89 @@
// Need HealthInfo definition from headers of these shared
// libraries. Clients don't need to link to these.
"android.hardware.health@2.1",
- "android.hardware.health-V1-ndk",
+ ],
+ header_libs: ["libhealthd_headers"],
+ export_header_lib_headers: ["libhealthd_headers"],
+}
+
+cc_defaults {
+ name: "libhealthd_charger_ui_defaults",
+ vendor_available: true,
+ export_include_dirs: [
+ "include",
+ "include_charger",
+ ],
+
+ static_libs: [
+ "libcharger_sysprop",
+ "libhealthd_draw",
+ "libhealthloop",
+ "libminui",
+ ],
+
+ shared_libs: [
+ "libbase",
+ "libcutils",
+ "liblog",
+ "libpng",
+ "libsuspend",
+ "libutils",
+ ],
+
+ header_libs: [
+ "libhealthd_headers",
+ ],
+
+ srcs: [
+ "healthd_mode_charger.cpp",
+ "AnimationParser.cpp",
+ ],
+
+ target: {
+ vendor: {
+ exclude_static_libs: [
+ "libcharger_sysprop",
+ ],
+ },
+ },
+}
+
+cc_library_headers {
+ name: "libhealthd_headers",
+ vendor_available: true,
+ recovery_available: true,
+ export_include_dirs: ["include"],
+ header_libs: ["libbatteryservice_headers"],
+ export_header_lib_headers: ["libbatteryservice_headers"],
+}
+
+cc_library_static {
+ name: "libbatterymonitor",
+ defaults: ["libbatterymonitor_defaults"],
+ srcs: ["BatteryMonitor.cpp"],
+ static_libs: [
+ "android.hardware.health-V2-ndk",
],
whole_static_libs: [
// Need to translate HIDL to AIDL to support legacy APIs in
// BatteryMonitor.
"android.hardware.health-translate-ndk",
],
- header_libs: ["libhealthd_headers"],
- export_header_lib_headers: ["libhealthd_headers"],
+}
+
+// TODO(b/251425963): remove when android.hardware.health is upgraded to V2.
+cc_library_static {
+ name: "libbatterymonitor-V1",
+ defaults: ["libbatterymonitor_defaults"],
+ srcs: ["BatteryMonitor_v1.cpp"],
+ static_libs: [
+ "android.hardware.health-V1-ndk",
+ ],
+ whole_static_libs: [
+ // Need to translate HIDL to AIDL to support legacy APIs in
+ // BatteryMonitor.
+ "android.hardware.health-translate-V1-ndk",
+ ],
}
cc_defaults {
@@ -136,50 +200,31 @@
cc_library_static {
name: "libhealthd_charger_ui",
- vendor_available: true,
- export_include_dirs: [
- "include",
- "include_charger",
+ defaults: ["libhealthd_charger_ui_defaults"],
+
+ static_libs: [
+ "android.hardware.health-V2-ndk",
+ "android.hardware.health-translate-ndk",
],
+ export_static_lib_headers: [
+ "android.hardware.health-V2-ndk",
+ ],
+}
+
+// TODO(b/251425963): remove when android.hardware.health is upgraded to V2.
+cc_library_static {
+ name: "libhealthd_charger_ui-V1",
+ defaults: ["libhealthd_charger_ui_defaults"],
+
static_libs: [
"android.hardware.health-V1-ndk",
- "android.hardware.health-translate-ndk",
- "libcharger_sysprop",
- "libhealthd_draw",
- "libhealthloop",
- "libminui",
- ],
-
- shared_libs: [
- "libbase",
- "libcutils",
- "liblog",
- "libpng",
- "libsuspend",
- "libutils",
- ],
-
- header_libs: [
- "libhealthd_headers",
+ "android.hardware.health-translate-V1-ndk",
],
export_static_lib_headers: [
"android.hardware.health-V1-ndk",
],
-
- srcs: [
- "healthd_mode_charger.cpp",
- "AnimationParser.cpp",
- ],
-
- target: {
- vendor: {
- exclude_static_libs: [
- "libcharger_sysprop",
- ],
- },
- },
}
cc_library_static {
@@ -235,7 +280,7 @@
static_libs: [
// common
"android.hardware.health@1.0-convert",
- "android.hardware.health-V1-ndk",
+ "android.hardware.health-V2-ndk",
"libbatterymonitor",
"libcharger_sysprop",
"libhealthd_charger_nops",
diff --git a/healthd/BatteryMonitor.cpp b/healthd/BatteryMonitor.cpp
index a7571a2..4ea452a 100644
--- a/healthd/BatteryMonitor.cpp
+++ b/healthd/BatteryMonitor.cpp
@@ -55,7 +55,10 @@
using HealthInfo_2_0 = android::hardware::health::V2_0::HealthInfo;
using HealthInfo_2_1 = android::hardware::health::V2_1::HealthInfo;
using aidl::android::hardware::health::BatteryCapacityLevel;
+using aidl::android::hardware::health::BatteryChargingPolicy;
+using aidl::android::hardware::health::BatteryChargingState;
using aidl::android::hardware::health::BatteryHealth;
+using aidl::android::hardware::health::BatteryHealthData;
using aidl::android::hardware::health::BatteryStatus;
using aidl::android::hardware::health::HealthInfo;
@@ -227,6 +230,37 @@
return *ret;
}
+BatteryChargingPolicy getBatteryChargingPolicy(const char* chargingPolicy) {
+ static SysfsStringEnumMap<BatteryChargingPolicy> batteryChargingPolicyMap[] = {
+ {"0", BatteryChargingPolicy::INVALID}, {"1", BatteryChargingPolicy::DEFAULT},
+ {"2", BatteryChargingPolicy::LONG_LIFE}, {"3", BatteryChargingPolicy::ADAPTIVE},
+ {NULL, BatteryChargingPolicy::DEFAULT},
+ };
+
+ auto ret = mapSysfsString(chargingPolicy, batteryChargingPolicyMap);
+ if (!ret) {
+ *ret = BatteryChargingPolicy::DEFAULT;
+ }
+
+ return *ret;
+}
+
+BatteryChargingState getBatteryChargingState(const char* chargingState) {
+ static SysfsStringEnumMap<BatteryChargingState> batteryChargingStateMap[] = {
+ {"0", BatteryChargingState::INVALID}, {"1", BatteryChargingState::NORMAL},
+ {"2", BatteryChargingState::TOO_COLD}, {"3", BatteryChargingState::TOO_HOT},
+ {"4", BatteryChargingState::LONG_LIFE}, {"5", BatteryChargingState::ADAPTIVE},
+ {NULL, BatteryChargingState::NORMAL},
+ };
+
+ auto ret = mapSysfsString(chargingState, batteryChargingStateMap);
+ if (!ret) {
+ *ret = BatteryChargingState::NORMAL;
+ }
+
+ return *ret;
+}
+
static int readFromFile(const String8& path, std::string* buf) {
buf->clear();
if (android::base::ReadFileToString(path.c_str(), buf)) {
@@ -235,6 +269,10 @@
return buf->length();
}
+static bool writeToFile(const String8& path, int32_t in_value) {
+ return android::base::WriteStringToFile(std::to_string(in_value), path.c_str());
+}
+
static BatteryMonitor::PowerSupplyType readPowerSupplyType(const String8& path) {
static SysfsStringEnumMap<int> supplyTypeMap[] = {
{"Unknown", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_UNKNOWN},
@@ -336,6 +374,17 @@
mHealthInfo->batteryFullChargeDesignCapacityUah =
getIntField(mHealthdConfig->batteryFullChargeDesignCapacityUahPath);
+ if (!mHealthdConfig->batteryStateOfHealthPath.isEmpty())
+ mHealthInfo->batteryStateOfHealth = getIntField(mHealthdConfig->batteryStateOfHealthPath);
+
+ if (!mHealthdConfig->batteryManufacturingDatePath.isEmpty())
+ mHealthInfo->batteryHealthData->batteryManufacturingDateSeconds =
+ getIntField(mHealthdConfig->batteryManufacturingDatePath);
+
+ if (!mHealthdConfig->batteryFirstUsageDatePath.isEmpty())
+ mHealthInfo->batteryHealthData->batteryFirstUsageSeconds =
+ getIntField(mHealthdConfig->batteryFirstUsageDatePath);
+
mHealthInfo->batteryTemperatureTenthsCelsius =
mBatteryFixedTemperature ? mBatteryFixedTemperature
: getIntField(mHealthdConfig->batteryTemperaturePath);
@@ -354,6 +403,12 @@
if (readFromFile(mHealthdConfig->batteryTechnologyPath, &buf) > 0)
mHealthInfo->batteryTechnology = String8(buf.c_str());
+ if (readFromFile(mHealthdConfig->chargingPolicyPath, &buf) > 0)
+ mHealthInfo->chargingPolicy = getBatteryChargingPolicy(buf.c_str());
+
+ if (readFromFile(mHealthdConfig->chargingStatePath, &buf) > 0)
+ mHealthInfo->chargingState = getBatteryChargingState(buf.c_str());
+
double MaxPower = 0;
for (size_t i = 0; i < mChargerNames.size(); i++) {
@@ -476,6 +531,43 @@
return static_cast<int>(result);
}
+status_t BatteryMonitor::setChargingPolicy(int value) {
+ status_t ret = NAME_NOT_FOUND;
+ bool result;
+ if (!mHealthdConfig->chargingPolicyPath.isEmpty()) {
+ result = writeToFile(mHealthdConfig->chargingPolicyPath, value);
+ if (!result) {
+ KLOG_WARNING(LOG_TAG, "setChargingPolicy fail\n");
+ ret = BAD_VALUE;
+ } else {
+ ret = OK;
+ }
+ }
+ return ret;
+}
+
+int BatteryMonitor::getChargingPolicy() {
+ BatteryChargingPolicy result = BatteryChargingPolicy::DEFAULT;
+ if (!mHealthdConfig->chargingPolicyPath.isEmpty()) {
+ std::string buf;
+ if (readFromFile(mHealthdConfig->chargingPolicyPath, &buf) > 0)
+ result = getBatteryChargingPolicy(buf.c_str());
+ }
+ return static_cast<int>(result);
+}
+
+int BatteryMonitor::getBatteryHealthData(int id) {
+ if (id == BATTERY_PROP_MANUFACTURING_DATE) {
+ if (!mHealthdConfig->batteryManufacturingDatePath.isEmpty())
+ return getIntField(mHealthdConfig->batteryManufacturingDatePath);
+ }
+ if (id == BATTERY_PROP_FIRST_USAGE_DATE) {
+ if (!mHealthdConfig->batteryFirstUsageDatePath.isEmpty())
+ return getIntField(mHealthdConfig->batteryFirstUsageDatePath);
+ }
+ return 0;
+}
+
status_t BatteryMonitor::getProperty(int id, struct BatteryProperty *val) {
status_t ret = BAD_VALUE;
std::string buf;
@@ -536,6 +628,21 @@
ret = OK;
break;
+ case BATTERY_PROP_CHARGING_POLICY:
+ val->valueInt64 = getChargingPolicy();
+ ret = OK;
+ break;
+
+ case BATTERY_PROP_MANUFACTURING_DATE:
+ val->valueInt64 = getBatteryHealthData(BATTERY_PROP_MANUFACTURING_DATE);
+ ret = OK;
+ break;
+
+ case BATTERY_PROP_FIRST_USAGE_DATE:
+ val->valueInt64 = getBatteryHealthData(BATTERY_PROP_FIRST_USAGE_DATE);
+ ret = OK;
+ break;
+
default:
break;
}
@@ -758,6 +865,44 @@
mHealthdConfig->batteryTechnologyPath = path;
}
+ if (mHealthdConfig->batteryStateOfHealthPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/state_of_health", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0) {
+ mHealthdConfig->batteryStateOfHealthPath = path;
+ } else {
+ path.clear();
+ path.appendFormat("%s/%s/health_index", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryStateOfHealthPath = path;
+ }
+ }
+
+ if (mHealthdConfig->batteryManufacturingDatePath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/manufacturing_date", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryManufacturingDatePath = path;
+ }
+
+ if (mHealthdConfig->batteryFirstUsageDatePath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/first_usage_date", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0) mHealthdConfig->batteryFirstUsageDatePath = path;
+ }
+
+ if (mHealthdConfig->chargingStatePath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/charging_state", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0) mHealthdConfig->chargingStatePath = path;
+ }
+
+ if (mHealthdConfig->chargingPolicyPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/charging_policy", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0) mHealthdConfig->chargingPolicyPath = path;
+ }
+
break;
case ANDROID_POWER_SUPPLY_TYPE_UNKNOWN:
@@ -810,6 +955,16 @@
KLOG_WARNING(LOG_TAG, "batteryChargeTimeToFullNowPath. not found\n");
if (mHealthdConfig->batteryFullChargeDesignCapacityUahPath.isEmpty())
KLOG_WARNING(LOG_TAG, "batteryFullChargeDesignCapacityUahPath. not found\n");
+ if (mHealthdConfig->batteryStateOfHealthPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "batteryStateOfHealthPath not found\n");
+ if (mHealthdConfig->batteryManufacturingDatePath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "batteryManufacturingDatePath not found\n");
+ if (mHealthdConfig->batteryFirstUsageDatePath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "batteryFirstUsageDatePath not found\n");
+ if (mHealthdConfig->chargingStatePath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "chargingStatePath not found\n");
+ if (mHealthdConfig->chargingPolicyPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "chargingPolicyPath not found\n");
}
if (property_get("ro.boot.fake_battery", pval, NULL) > 0
diff --git a/healthd/BatteryMonitor_v1.cpp b/healthd/BatteryMonitor_v1.cpp
new file mode 100644
index 0000000..b87c493
--- /dev/null
+++ b/healthd/BatteryMonitor_v1.cpp
@@ -0,0 +1,822 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#define LOG_TAG "healthd"
+
+#include <healthd/healthd.h>
+#include <healthd/BatteryMonitor_v1.h>
+
+#include <dirent.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <unistd.h>
+
+#include <algorithm>
+#include <memory>
+#include <optional>
+
+#include <aidl/android/hardware/health/HealthInfo.h>
+#include <android-base/file.h>
+#include <android-base/parseint.h>
+#include <android-base/strings.h>
+#include <android/hardware/health/2.1/types.h>
+#include <android/hardware/health/translate-ndk.h>
+#include <batteryservice/BatteryService.h>
+#include <cutils/klog.h>
+#include <cutils/properties.h>
+#include <utils/Errors.h>
+#include <utils/String8.h>
+#include <utils/Vector.h>
+
+#define POWER_SUPPLY_SUBSYSTEM "power_supply"
+#define POWER_SUPPLY_SYSFS_PATH "/sys/class/" POWER_SUPPLY_SUBSYSTEM
+#define FAKE_BATTERY_CAPACITY 42
+#define FAKE_BATTERY_TEMPERATURE 424
+#define MILLION 1.0e6
+#define DEFAULT_VBUS_VOLTAGE 5000000
+
+using HealthInfo_1_0 = android::hardware::health::V1_0::HealthInfo;
+using HealthInfo_2_0 = android::hardware::health::V2_0::HealthInfo;
+using HealthInfo_2_1 = android::hardware::health::V2_1::HealthInfo;
+using aidl::android::hardware::health::BatteryCapacityLevel;
+using aidl::android::hardware::health::BatteryHealth;
+using aidl::android::hardware::health::BatteryStatus;
+using aidl::android::hardware::health::HealthInfo;
+
+namespace {
+
+// Translate from AIDL back to HIDL definition for getHealthInfo_*_* calls.
+// Skips storageInfo and diskStats.
+void translateToHidl(const ::aidl::android::hardware::health::HealthInfo& in,
+ ::android::hardware::health::V1_0::HealthInfo* out) {
+ out->chargerAcOnline = in.chargerAcOnline;
+ out->chargerUsbOnline = in.chargerUsbOnline;
+ out->chargerWirelessOnline = in.chargerWirelessOnline;
+ out->maxChargingCurrent = in.maxChargingCurrentMicroamps;
+ out->maxChargingVoltage = in.maxChargingVoltageMicrovolts;
+ out->batteryStatus =
+ static_cast<::android::hardware::health::V1_0::BatteryStatus>(in.batteryStatus);
+ out->batteryHealth =
+ static_cast<::android::hardware::health::V1_0::BatteryHealth>(in.batteryHealth);
+ out->batteryPresent = in.batteryPresent;
+ out->batteryLevel = in.batteryLevel;
+ out->batteryVoltage = in.batteryVoltageMillivolts;
+ out->batteryTemperature = in.batteryTemperatureTenthsCelsius;
+ out->batteryCurrent = in.batteryCurrentMicroamps;
+ out->batteryCycleCount = in.batteryCycleCount;
+ out->batteryFullCharge = in.batteryFullChargeUah;
+ out->batteryChargeCounter = in.batteryChargeCounterUah;
+ out->batteryTechnology = in.batteryTechnology;
+}
+
+void translateToHidl(const ::aidl::android::hardware::health::HealthInfo& in,
+ ::android::hardware::health::V2_0::HealthInfo* out) {
+ translateToHidl(in, &out->legacy);
+ out->batteryCurrentAverage = in.batteryCurrentAverageMicroamps;
+ // Skip storageInfo and diskStats
+}
+
+void translateToHidl(const ::aidl::android::hardware::health::HealthInfo& in,
+ ::android::hardware::health::V2_1::HealthInfo* out) {
+ translateToHidl(in, &out->legacy);
+ out->batteryCapacityLevel = static_cast<android::hardware::health::V2_1::BatteryCapacityLevel>(
+ in.batteryCapacityLevel);
+ out->batteryChargeTimeToFullNowSeconds = in.batteryChargeTimeToFullNowSeconds;
+ out->batteryFullChargeDesignCapacityUah = in.batteryFullChargeDesignCapacityUah;
+}
+
+} // namespace
+
+namespace android {
+
+template <typename T>
+struct SysfsStringEnumMap {
+ const char* s;
+ T val;
+};
+
+template <typename T>
+static std::optional<T> mapSysfsString(const char* str, SysfsStringEnumMap<T> map[]) {
+ for (int i = 0; map[i].s; i++)
+ if (!strcmp(str, map[i].s))
+ return map[i].val;
+
+ return std::nullopt;
+}
+
+static void initHealthInfo(HealthInfo* health_info) {
+ *health_info = {
+ .batteryCapacityLevel = BatteryCapacityLevel::UNSUPPORTED,
+ .batteryChargeTimeToFullNowSeconds =
+ (int64_t)HealthInfo::BATTERY_CHARGE_TIME_TO_FULL_NOW_SECONDS_UNSUPPORTED,
+ .batteryStatus = BatteryStatus::UNKNOWN,
+ .batteryHealth = BatteryHealth::UNKNOWN,
+ };
+}
+
+BatteryMonitor::BatteryMonitor()
+ : mHealthdConfig(nullptr),
+ mBatteryDevicePresent(false),
+ mBatteryFixedCapacity(0),
+ mBatteryFixedTemperature(0),
+ mHealthInfo(std::make_unique<HealthInfo>()) {
+ initHealthInfo(mHealthInfo.get());
+}
+
+BatteryMonitor::~BatteryMonitor() {}
+
+HealthInfo_1_0 BatteryMonitor::getHealthInfo_1_0() const {
+ HealthInfo_1_0 health_info_1_0;
+ translateToHidl(*mHealthInfo, &health_info_1_0);
+ return health_info_1_0;
+}
+
+HealthInfo_2_0 BatteryMonitor::getHealthInfo_2_0() const {
+ HealthInfo_2_0 health_info_2_0;
+ translateToHidl(*mHealthInfo, &health_info_2_0);
+ return health_info_2_0;
+}
+
+HealthInfo_2_1 BatteryMonitor::getHealthInfo_2_1() const {
+ HealthInfo_2_1 health_info_2_1;
+ translateToHidl(*mHealthInfo, &health_info_2_1);
+ return health_info_2_1;
+}
+
+const HealthInfo& BatteryMonitor::getHealthInfo() const {
+ return *mHealthInfo;
+}
+
+BatteryStatus getBatteryStatus(const char* status) {
+ static SysfsStringEnumMap<BatteryStatus> batteryStatusMap[] = {
+ {"Unknown", BatteryStatus::UNKNOWN},
+ {"Charging", BatteryStatus::CHARGING},
+ {"Discharging", BatteryStatus::DISCHARGING},
+ {"Not charging", BatteryStatus::NOT_CHARGING},
+ {"Full", BatteryStatus::FULL},
+ {NULL, BatteryStatus::UNKNOWN},
+ };
+
+ auto ret = mapSysfsString(status, batteryStatusMap);
+ if (!ret) {
+ KLOG_WARNING(LOG_TAG, "Unknown battery status '%s'\n", status);
+ *ret = BatteryStatus::UNKNOWN;
+ }
+
+ return *ret;
+}
+
+BatteryCapacityLevel getBatteryCapacityLevel(const char* capacityLevel) {
+ static SysfsStringEnumMap<BatteryCapacityLevel> batteryCapacityLevelMap[] = {
+ {"Unknown", BatteryCapacityLevel::UNKNOWN},
+ {"Critical", BatteryCapacityLevel::CRITICAL},
+ {"Low", BatteryCapacityLevel::LOW},
+ {"Normal", BatteryCapacityLevel::NORMAL},
+ {"High", BatteryCapacityLevel::HIGH},
+ {"Full", BatteryCapacityLevel::FULL},
+ {NULL, BatteryCapacityLevel::UNSUPPORTED},
+ };
+
+ auto ret = mapSysfsString(capacityLevel, batteryCapacityLevelMap);
+ if (!ret) {
+ KLOG_WARNING(LOG_TAG, "Unsupported battery capacity level '%s'\n", capacityLevel);
+ *ret = BatteryCapacityLevel::UNSUPPORTED;
+ }
+
+ return *ret;
+}
+
+BatteryHealth getBatteryHealth(const char* status) {
+ static SysfsStringEnumMap<BatteryHealth> batteryHealthMap[] = {
+ {"Unknown", BatteryHealth::UNKNOWN},
+ {"Good", BatteryHealth::GOOD},
+ {"Overheat", BatteryHealth::OVERHEAT},
+ {"Dead", BatteryHealth::DEAD},
+ {"Over voltage", BatteryHealth::OVER_VOLTAGE},
+ {"Unspecified failure", BatteryHealth::UNSPECIFIED_FAILURE},
+ {"Cold", BatteryHealth::COLD},
+ // battery health values from JEITA spec
+ {"Warm", BatteryHealth::GOOD},
+ {"Cool", BatteryHealth::GOOD},
+ {"Hot", BatteryHealth::OVERHEAT},
+ {NULL, BatteryHealth::UNKNOWN},
+ };
+
+ auto ret = mapSysfsString(status, batteryHealthMap);
+ if (!ret) {
+ KLOG_WARNING(LOG_TAG, "Unknown battery health '%s'\n", status);
+ *ret = BatteryHealth::UNKNOWN;
+ }
+
+ return *ret;
+}
+
+static int readFromFile(const String8& path, std::string* buf) {
+ buf->clear();
+ if (android::base::ReadFileToString(path.c_str(), buf)) {
+ *buf = android::base::Trim(*buf);
+ }
+ return buf->length();
+}
+
+static BatteryMonitor::PowerSupplyType readPowerSupplyType(const String8& path) {
+ static SysfsStringEnumMap<int> supplyTypeMap[] = {
+ {"Unknown", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_UNKNOWN},
+ {"Battery", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_BATTERY},
+ {"UPS", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_AC},
+ {"Mains", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_AC},
+ {"USB", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_USB},
+ {"USB_DCP", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_AC},
+ {"USB_HVDCP", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_AC},
+ {"USB_CDP", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_AC},
+ {"USB_ACA", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_AC},
+ {"USB_C", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_AC},
+ {"USB_PD", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_AC},
+ {"USB_PD_DRP", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_USB},
+ {"Wireless", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_WIRELESS},
+ {"Dock", BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_DOCK},
+ {NULL, 0},
+ };
+ std::string buf;
+
+ if (readFromFile(path, &buf) <= 0) {
+ return BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_UNKNOWN;
+ }
+
+ auto ret = mapSysfsString(buf.c_str(), supplyTypeMap);
+ if (!ret) {
+ KLOG_WARNING(LOG_TAG, "Unknown power supply type '%s'\n", buf.c_str());
+ *ret = BatteryMonitor::ANDROID_POWER_SUPPLY_TYPE_UNKNOWN;
+ }
+
+ return static_cast<BatteryMonitor::PowerSupplyType>(*ret);
+}
+
+static bool getBooleanField(const String8& path) {
+ std::string buf;
+ bool value = false;
+
+ if (readFromFile(path, &buf) > 0)
+ if (buf[0] != '0')
+ value = true;
+
+ return value;
+}
+
+static int getIntField(const String8& path) {
+ std::string buf;
+ int value = 0;
+
+ if (readFromFile(path, &buf) > 0)
+ android::base::ParseInt(buf, &value);
+
+ return value;
+}
+
+static bool isScopedPowerSupply(const char* name) {
+ constexpr char kScopeDevice[] = "Device";
+
+ String8 path;
+ path.appendFormat("%s/%s/scope", POWER_SUPPLY_SYSFS_PATH, name);
+ std::string scope;
+ return (readFromFile(path, &scope) > 0 && scope == kScopeDevice);
+}
+
+void BatteryMonitor::updateValues(void) {
+ initHealthInfo(mHealthInfo.get());
+
+ if (!mHealthdConfig->batteryPresentPath.isEmpty())
+ mHealthInfo->batteryPresent = getBooleanField(mHealthdConfig->batteryPresentPath);
+ else
+ mHealthInfo->batteryPresent = mBatteryDevicePresent;
+
+ mHealthInfo->batteryLevel = mBatteryFixedCapacity
+ ? mBatteryFixedCapacity
+ : getIntField(mHealthdConfig->batteryCapacityPath);
+ mHealthInfo->batteryVoltageMillivolts = getIntField(mHealthdConfig->batteryVoltagePath) / 1000;
+
+ if (!mHealthdConfig->batteryCurrentNowPath.isEmpty())
+ mHealthInfo->batteryCurrentMicroamps = getIntField(mHealthdConfig->batteryCurrentNowPath);
+
+ if (!mHealthdConfig->batteryFullChargePath.isEmpty())
+ mHealthInfo->batteryFullChargeUah = getIntField(mHealthdConfig->batteryFullChargePath);
+
+ if (!mHealthdConfig->batteryCycleCountPath.isEmpty())
+ mHealthInfo->batteryCycleCount = getIntField(mHealthdConfig->batteryCycleCountPath);
+
+ if (!mHealthdConfig->batteryChargeCounterPath.isEmpty())
+ mHealthInfo->batteryChargeCounterUah =
+ getIntField(mHealthdConfig->batteryChargeCounterPath);
+
+ if (!mHealthdConfig->batteryCurrentAvgPath.isEmpty())
+ mHealthInfo->batteryCurrentAverageMicroamps =
+ getIntField(mHealthdConfig->batteryCurrentAvgPath);
+
+ if (!mHealthdConfig->batteryChargeTimeToFullNowPath.isEmpty())
+ mHealthInfo->batteryChargeTimeToFullNowSeconds =
+ getIntField(mHealthdConfig->batteryChargeTimeToFullNowPath);
+
+ if (!mHealthdConfig->batteryFullChargeDesignCapacityUahPath.isEmpty())
+ mHealthInfo->batteryFullChargeDesignCapacityUah =
+ getIntField(mHealthdConfig->batteryFullChargeDesignCapacityUahPath);
+
+ mHealthInfo->batteryTemperatureTenthsCelsius =
+ mBatteryFixedTemperature ? mBatteryFixedTemperature
+ : getIntField(mHealthdConfig->batteryTemperaturePath);
+
+ std::string buf;
+
+ if (readFromFile(mHealthdConfig->batteryCapacityLevelPath, &buf) > 0)
+ mHealthInfo->batteryCapacityLevel = getBatteryCapacityLevel(buf.c_str());
+
+ if (readFromFile(mHealthdConfig->batteryStatusPath, &buf) > 0)
+ mHealthInfo->batteryStatus = getBatteryStatus(buf.c_str());
+
+ if (readFromFile(mHealthdConfig->batteryHealthPath, &buf) > 0)
+ mHealthInfo->batteryHealth = getBatteryHealth(buf.c_str());
+
+ if (readFromFile(mHealthdConfig->batteryTechnologyPath, &buf) > 0)
+ mHealthInfo->batteryTechnology = String8(buf.c_str());
+
+ double MaxPower = 0;
+
+ for (size_t i = 0; i < mChargerNames.size(); i++) {
+ String8 path;
+ path.appendFormat("%s/%s/online", POWER_SUPPLY_SYSFS_PATH,
+ mChargerNames[i].string());
+ if (getIntField(path)) {
+ path.clear();
+ path.appendFormat("%s/%s/type", POWER_SUPPLY_SYSFS_PATH,
+ mChargerNames[i].string());
+ switch(readPowerSupplyType(path)) {
+ case ANDROID_POWER_SUPPLY_TYPE_AC:
+ mHealthInfo->chargerAcOnline = true;
+ break;
+ case ANDROID_POWER_SUPPLY_TYPE_USB:
+ mHealthInfo->chargerUsbOnline = true;
+ break;
+ case ANDROID_POWER_SUPPLY_TYPE_WIRELESS:
+ mHealthInfo->chargerWirelessOnline = true;
+ break;
+ case ANDROID_POWER_SUPPLY_TYPE_DOCK:
+ mHealthInfo->chargerDockOnline = true;
+ break;
+ default:
+ path.clear();
+ path.appendFormat("%s/%s/is_dock", POWER_SUPPLY_SYSFS_PATH,
+ mChargerNames[i].string());
+ if (access(path.string(), R_OK) == 0)
+ mHealthInfo->chargerDockOnline = true;
+ else
+ KLOG_WARNING(LOG_TAG, "%s: Unknown power supply type\n",
+ mChargerNames[i].string());
+ }
+ path.clear();
+ path.appendFormat("%s/%s/current_max", POWER_SUPPLY_SYSFS_PATH,
+ mChargerNames[i].string());
+ int ChargingCurrent =
+ (access(path.string(), R_OK) == 0) ? getIntField(path) : 0;
+
+ path.clear();
+ path.appendFormat("%s/%s/voltage_max", POWER_SUPPLY_SYSFS_PATH,
+ mChargerNames[i].string());
+
+ int ChargingVoltage =
+ (access(path.string(), R_OK) == 0) ? getIntField(path) :
+ DEFAULT_VBUS_VOLTAGE;
+
+ double power = ((double)ChargingCurrent / MILLION) *
+ ((double)ChargingVoltage / MILLION);
+ if (MaxPower < power) {
+ mHealthInfo->maxChargingCurrentMicroamps = ChargingCurrent;
+ mHealthInfo->maxChargingVoltageMicrovolts = ChargingVoltage;
+ MaxPower = power;
+ }
+ }
+ }
+}
+
+static void doLogValues(const HealthInfo& props, const struct healthd_config& healthd_config) {
+ char dmesgline[256];
+ size_t len;
+ if (props.batteryPresent) {
+ snprintf(dmesgline, sizeof(dmesgline), "battery l=%d v=%d t=%s%d.%d h=%d st=%d",
+ props.batteryLevel, props.batteryVoltageMillivolts,
+ props.batteryTemperatureTenthsCelsius < 0 ? "-" : "",
+ abs(props.batteryTemperatureTenthsCelsius / 10),
+ abs(props.batteryTemperatureTenthsCelsius % 10), props.batteryHealth,
+ props.batteryStatus);
+
+ len = strlen(dmesgline);
+ if (!healthd_config.batteryCurrentNowPath.isEmpty()) {
+ len += snprintf(dmesgline + len, sizeof(dmesgline) - len, " c=%d",
+ props.batteryCurrentMicroamps);
+ }
+
+ if (!healthd_config.batteryFullChargePath.isEmpty()) {
+ len += snprintf(dmesgline + len, sizeof(dmesgline) - len, " fc=%d",
+ props.batteryFullChargeUah);
+ }
+
+ if (!healthd_config.batteryCycleCountPath.isEmpty()) {
+ len += snprintf(dmesgline + len, sizeof(dmesgline) - len, " cc=%d",
+ props.batteryCycleCount);
+ }
+ } else {
+ len = snprintf(dmesgline, sizeof(dmesgline), "battery none");
+ }
+
+ snprintf(dmesgline + len, sizeof(dmesgline) - len, " chg=%s%s%s%s",
+ props.chargerAcOnline ? "a" : "", props.chargerUsbOnline ? "u" : "",
+ props.chargerWirelessOnline ? "w" : "", props.chargerDockOnline ? "d" : "");
+
+ KLOG_WARNING(LOG_TAG, "%s\n", dmesgline);
+}
+
+void BatteryMonitor::logValues(const HealthInfo_2_1& health_info,
+ const struct healthd_config& healthd_config) {
+ HealthInfo aidl_health_info;
+ (void)android::h2a::translate(health_info, &aidl_health_info);
+ doLogValues(aidl_health_info, healthd_config);
+}
+
+void BatteryMonitor::logValues(void) {
+ doLogValues(*mHealthInfo, *mHealthdConfig);
+}
+
+bool BatteryMonitor::isChargerOnline() {
+ const HealthInfo& props = *mHealthInfo;
+ return props.chargerAcOnline | props.chargerUsbOnline | props.chargerWirelessOnline |
+ props.chargerDockOnline;
+}
+
+int BatteryMonitor::getChargeStatus() {
+ BatteryStatus result = BatteryStatus::UNKNOWN;
+ if (!mHealthdConfig->batteryStatusPath.isEmpty()) {
+ std::string buf;
+ if (readFromFile(mHealthdConfig->batteryStatusPath, &buf) > 0)
+ result = getBatteryStatus(buf.c_str());
+ }
+ return static_cast<int>(result);
+}
+
+status_t BatteryMonitor::getProperty(int id, struct BatteryProperty *val) {
+ status_t ret = BAD_VALUE;
+ std::string buf;
+
+ val->valueInt64 = LONG_MIN;
+
+ switch(id) {
+ case BATTERY_PROP_CHARGE_COUNTER:
+ if (!mHealthdConfig->batteryChargeCounterPath.isEmpty()) {
+ val->valueInt64 =
+ getIntField(mHealthdConfig->batteryChargeCounterPath);
+ ret = OK;
+ } else {
+ ret = NAME_NOT_FOUND;
+ }
+ break;
+
+ case BATTERY_PROP_CURRENT_NOW:
+ if (!mHealthdConfig->batteryCurrentNowPath.isEmpty()) {
+ val->valueInt64 =
+ getIntField(mHealthdConfig->batteryCurrentNowPath);
+ ret = OK;
+ } else {
+ ret = NAME_NOT_FOUND;
+ }
+ break;
+
+ case BATTERY_PROP_CURRENT_AVG:
+ if (!mHealthdConfig->batteryCurrentAvgPath.isEmpty()) {
+ val->valueInt64 =
+ getIntField(mHealthdConfig->batteryCurrentAvgPath);
+ ret = OK;
+ } else {
+ ret = NAME_NOT_FOUND;
+ }
+ break;
+
+ case BATTERY_PROP_CAPACITY:
+ if (!mHealthdConfig->batteryCapacityPath.isEmpty()) {
+ val->valueInt64 =
+ getIntField(mHealthdConfig->batteryCapacityPath);
+ ret = OK;
+ } else {
+ ret = NAME_NOT_FOUND;
+ }
+ break;
+
+ case BATTERY_PROP_ENERGY_COUNTER:
+ if (mHealthdConfig->energyCounter) {
+ ret = mHealthdConfig->energyCounter(&val->valueInt64);
+ } else {
+ ret = NAME_NOT_FOUND;
+ }
+ break;
+
+ case BATTERY_PROP_BATTERY_STATUS:
+ val->valueInt64 = getChargeStatus();
+ ret = OK;
+ break;
+
+ default:
+ break;
+ }
+
+ return ret;
+}
+
+void BatteryMonitor::dumpState(int fd) {
+ int v;
+ char vs[128];
+ const HealthInfo& props = *mHealthInfo;
+
+ snprintf(vs, sizeof(vs),
+ "ac: %d usb: %d wireless: %d dock: %d current_max: %d voltage_max: %d\n",
+ props.chargerAcOnline, props.chargerUsbOnline, props.chargerWirelessOnline,
+ props.chargerDockOnline, props.maxChargingCurrentMicroamps,
+ props.maxChargingVoltageMicrovolts);
+ write(fd, vs, strlen(vs));
+ snprintf(vs, sizeof(vs), "status: %d health: %d present: %d\n",
+ props.batteryStatus, props.batteryHealth, props.batteryPresent);
+ write(fd, vs, strlen(vs));
+ snprintf(vs, sizeof(vs), "level: %d voltage: %d temp: %d\n", props.batteryLevel,
+ props.batteryVoltageMillivolts, props.batteryTemperatureTenthsCelsius);
+ write(fd, vs, strlen(vs));
+
+ if (!mHealthdConfig->batteryCurrentNowPath.isEmpty()) {
+ v = getIntField(mHealthdConfig->batteryCurrentNowPath);
+ snprintf(vs, sizeof(vs), "current now: %d\n", v);
+ write(fd, vs, strlen(vs));
+ }
+
+ if (!mHealthdConfig->batteryCurrentAvgPath.isEmpty()) {
+ v = getIntField(mHealthdConfig->batteryCurrentAvgPath);
+ snprintf(vs, sizeof(vs), "current avg: %d\n", v);
+ write(fd, vs, strlen(vs));
+ }
+
+ if (!mHealthdConfig->batteryChargeCounterPath.isEmpty()) {
+ v = getIntField(mHealthdConfig->batteryChargeCounterPath);
+ snprintf(vs, sizeof(vs), "charge counter: %d\n", v);
+ write(fd, vs, strlen(vs));
+ }
+
+ if (!mHealthdConfig->batteryCurrentNowPath.isEmpty()) {
+ snprintf(vs, sizeof(vs), "current now: %d\n", props.batteryCurrentMicroamps);
+ write(fd, vs, strlen(vs));
+ }
+
+ if (!mHealthdConfig->batteryCycleCountPath.isEmpty()) {
+ snprintf(vs, sizeof(vs), "cycle count: %d\n", props.batteryCycleCount);
+ write(fd, vs, strlen(vs));
+ }
+
+ if (!mHealthdConfig->batteryFullChargePath.isEmpty()) {
+ snprintf(vs, sizeof(vs), "Full charge: %d\n", props.batteryFullChargeUah);
+ write(fd, vs, strlen(vs));
+ }
+}
+
+void BatteryMonitor::init(struct healthd_config *hc) {
+ String8 path;
+ char pval[PROPERTY_VALUE_MAX];
+
+ mHealthdConfig = hc;
+ std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(POWER_SUPPLY_SYSFS_PATH), closedir);
+ if (dir == NULL) {
+ KLOG_ERROR(LOG_TAG, "Could not open %s\n", POWER_SUPPLY_SYSFS_PATH);
+ } else {
+ struct dirent* entry;
+
+ while ((entry = readdir(dir.get()))) {
+ const char* name = entry->d_name;
+
+ if (!strcmp(name, ".") || !strcmp(name, ".."))
+ continue;
+
+ std::vector<String8>::iterator itIgnoreName =
+ find(hc->ignorePowerSupplyNames.begin(), hc->ignorePowerSupplyNames.end(),
+ String8(name));
+ if (itIgnoreName != hc->ignorePowerSupplyNames.end())
+ continue;
+
+ // Look for "type" file in each subdirectory
+ path.clear();
+ path.appendFormat("%s/%s/type", POWER_SUPPLY_SYSFS_PATH, name);
+ switch(readPowerSupplyType(path)) {
+ case ANDROID_POWER_SUPPLY_TYPE_AC:
+ case ANDROID_POWER_SUPPLY_TYPE_USB:
+ case ANDROID_POWER_SUPPLY_TYPE_WIRELESS:
+ case ANDROID_POWER_SUPPLY_TYPE_DOCK:
+ path.clear();
+ path.appendFormat("%s/%s/online", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path.string(), R_OK) == 0)
+ mChargerNames.add(String8(name));
+ break;
+
+ case ANDROID_POWER_SUPPLY_TYPE_BATTERY:
+ // Some devices expose the battery status of sub-component like
+ // stylus. Such a device-scoped battery info needs to be skipped
+ // in BatteryMonitor, which is intended to report the status of
+ // the battery supplying the power to the whole system.
+ if (isScopedPowerSupply(name)) continue;
+ mBatteryDevicePresent = true;
+
+ if (mHealthdConfig->batteryStatusPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/status", POWER_SUPPLY_SYSFS_PATH,
+ name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryStatusPath = path;
+ }
+
+ if (mHealthdConfig->batteryHealthPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/health", POWER_SUPPLY_SYSFS_PATH,
+ name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryHealthPath = path;
+ }
+
+ if (mHealthdConfig->batteryPresentPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/present", POWER_SUPPLY_SYSFS_PATH,
+ name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryPresentPath = path;
+ }
+
+ if (mHealthdConfig->batteryCapacityPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/capacity", POWER_SUPPLY_SYSFS_PATH,
+ name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryCapacityPath = path;
+ }
+
+ if (mHealthdConfig->batteryVoltagePath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/voltage_now",
+ POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0) {
+ mHealthdConfig->batteryVoltagePath = path;
+ }
+ }
+
+ if (mHealthdConfig->batteryFullChargePath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/charge_full",
+ POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryFullChargePath = path;
+ }
+
+ if (mHealthdConfig->batteryCurrentNowPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/current_now",
+ POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryCurrentNowPath = path;
+ }
+
+ if (mHealthdConfig->batteryCycleCountPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/cycle_count",
+ POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryCycleCountPath = path;
+ }
+
+ if (mHealthdConfig->batteryCapacityLevelPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/capacity_level", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0) mHealthdConfig->batteryCapacityLevelPath = path;
+ }
+
+ if (mHealthdConfig->batteryChargeTimeToFullNowPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/time_to_full_now", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryChargeTimeToFullNowPath = path;
+ }
+
+ if (mHealthdConfig->batteryFullChargeDesignCapacityUahPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/charge_full_design", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryFullChargeDesignCapacityUahPath = path;
+ }
+
+ if (mHealthdConfig->batteryCurrentAvgPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/current_avg",
+ POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryCurrentAvgPath = path;
+ }
+
+ if (mHealthdConfig->batteryChargeCounterPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/charge_counter",
+ POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryChargeCounterPath = path;
+ }
+
+ if (mHealthdConfig->batteryTemperaturePath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/temp", POWER_SUPPLY_SYSFS_PATH,
+ name);
+ if (access(path, R_OK) == 0) {
+ mHealthdConfig->batteryTemperaturePath = path;
+ }
+ }
+
+ if (mHealthdConfig->batteryTechnologyPath.isEmpty()) {
+ path.clear();
+ path.appendFormat("%s/%s/technology",
+ POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path, R_OK) == 0)
+ mHealthdConfig->batteryTechnologyPath = path;
+ }
+
+ break;
+
+ case ANDROID_POWER_SUPPLY_TYPE_UNKNOWN:
+ break;
+ }
+
+ // Look for "is_dock" file
+ path.clear();
+ path.appendFormat("%s/%s/is_dock", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path.string(), R_OK) == 0) {
+ path.clear();
+ path.appendFormat("%s/%s/online", POWER_SUPPLY_SYSFS_PATH, name);
+ if (access(path.string(), R_OK) == 0)
+ mChargerNames.add(String8(name));
+
+ }
+ }
+ }
+
+ // Typically the case for devices which do not have a battery and
+ // and are always plugged into AC mains.
+ if (!mBatteryDevicePresent) {
+ KLOG_WARNING(LOG_TAG, "No battery devices found\n");
+ hc->periodic_chores_interval_fast = -1;
+ hc->periodic_chores_interval_slow = -1;
+ } else {
+ if (mHealthdConfig->batteryStatusPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "BatteryStatusPath not found\n");
+ if (mHealthdConfig->batteryHealthPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "BatteryHealthPath not found\n");
+ if (mHealthdConfig->batteryPresentPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "BatteryPresentPath not found\n");
+ if (mHealthdConfig->batteryCapacityPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "BatteryCapacityPath not found\n");
+ if (mHealthdConfig->batteryVoltagePath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "BatteryVoltagePath not found\n");
+ if (mHealthdConfig->batteryTemperaturePath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "BatteryTemperaturePath not found\n");
+ if (mHealthdConfig->batteryTechnologyPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "BatteryTechnologyPath not found\n");
+ if (mHealthdConfig->batteryCurrentNowPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "BatteryCurrentNowPath not found\n");
+ if (mHealthdConfig->batteryFullChargePath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "BatteryFullChargePath not found\n");
+ if (mHealthdConfig->batteryCycleCountPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "BatteryCycleCountPath not found\n");
+ if (mHealthdConfig->batteryCapacityLevelPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "batteryCapacityLevelPath not found\n");
+ if (mHealthdConfig->batteryChargeTimeToFullNowPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "batteryChargeTimeToFullNowPath. not found\n");
+ if (mHealthdConfig->batteryFullChargeDesignCapacityUahPath.isEmpty())
+ KLOG_WARNING(LOG_TAG, "batteryFullChargeDesignCapacityUahPath. not found\n");
+ }
+
+ if (property_get("ro.boot.fake_battery", pval, NULL) > 0
+ && strtol(pval, NULL, 10) != 0) {
+ mBatteryFixedCapacity = FAKE_BATTERY_CAPACITY;
+ mBatteryFixedTemperature = FAKE_BATTERY_TEMPERATURE;
+ }
+}
+
+}; // namespace android
diff --git a/healthd/include/healthd/BatteryMonitor.h b/healthd/include/healthd/BatteryMonitor.h
index 8cbf5ea..4af2a87 100644
--- a/healthd/include/healthd/BatteryMonitor.h
+++ b/healthd/include/healthd/BatteryMonitor.h
@@ -72,6 +72,10 @@
void logValues(void);
bool isChargerOnline();
+ int setChargingPolicy(int value);
+ int getChargingPolicy();
+ int getBatteryHealthData(int id);
+
static void logValues(const android::hardware::health::V2_1::HealthInfo& health_info,
const struct healthd_config& healthd_config);
diff --git a/healthd/include/healthd/BatteryMonitor_v1.h b/healthd/include/healthd/BatteryMonitor_v1.h
new file mode 100644
index 0000000..49f6f9d
--- /dev/null
+++ b/healthd/include/healthd/BatteryMonitor_v1.h
@@ -0,0 +1,89 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef HEALTHD_BATTERYMONITOR_V1_H
+#define HEALTHD_BATTERYMONITOR_V1_H
+
+#include <memory>
+
+#include <batteryservice/BatteryService.h>
+#include <utils/String8.h>
+#include <utils/Vector.h>
+
+#include <healthd/healthd.h>
+
+namespace aidl::android::hardware::health {
+class HealthInfo;
+} // namespace aidl::android::hardware::health
+
+namespace android {
+namespace hardware {
+namespace health {
+namespace V1_0 {
+struct HealthInfo;
+} // namespace V1_0
+namespace V2_0 {
+struct HealthInfo;
+} // namespace V2_0
+namespace V2_1 {
+struct HealthInfo;
+} // namespace V2_1
+} // namespace health
+} // namespace hardware
+
+class BatteryMonitor {
+ public:
+
+ enum PowerSupplyType {
+ ANDROID_POWER_SUPPLY_TYPE_UNKNOWN = 0,
+ ANDROID_POWER_SUPPLY_TYPE_AC,
+ ANDROID_POWER_SUPPLY_TYPE_USB,
+ ANDROID_POWER_SUPPLY_TYPE_WIRELESS,
+ ANDROID_POWER_SUPPLY_TYPE_BATTERY,
+ ANDROID_POWER_SUPPLY_TYPE_DOCK
+ };
+
+ BatteryMonitor();
+ ~BatteryMonitor();
+ void init(struct healthd_config *hc);
+ int getChargeStatus();
+ status_t getProperty(int id, struct BatteryProperty *val);
+ void dumpState(int fd);
+
+ android::hardware::health::V1_0::HealthInfo getHealthInfo_1_0() const;
+ android::hardware::health::V2_0::HealthInfo getHealthInfo_2_0() const;
+ android::hardware::health::V2_1::HealthInfo getHealthInfo_2_1() const;
+ const aidl::android::hardware::health::HealthInfo& getHealthInfo() const;
+
+ void updateValues(void);
+ void logValues(void);
+ bool isChargerOnline();
+
+ static void logValues(const android::hardware::health::V2_1::HealthInfo& health_info,
+ const struct healthd_config& healthd_config);
+
+ private:
+ struct healthd_config *mHealthdConfig;
+ Vector<String8> mChargerNames;
+ bool mBatteryDevicePresent;
+ int mBatteryFixedCapacity;
+ int mBatteryFixedTemperature;
+ std::unique_ptr<aidl::android::hardware::health::HealthInfo> mHealthInfo;
+};
+
+}; // namespace android
+
+#endif // HEALTHD_BATTERYMONITOR_V1_H
diff --git a/healthd/include/healthd/healthd.h b/healthd/include/healthd/healthd.h
index 706c332..e1c357c 100644
--- a/healthd/include/healthd/healthd.h
+++ b/healthd/include/healthd/healthd.h
@@ -72,6 +72,11 @@
android::String8 batteryCapacityLevelPath;
android::String8 batteryChargeTimeToFullNowPath;
android::String8 batteryFullChargeDesignCapacityUahPath;
+ android::String8 batteryStateOfHealthPath;
+ android::String8 batteryManufacturingDatePath;
+ android::String8 batteryFirstUsageDatePath;
+ android::String8 chargingStatePath;
+ android::String8 chargingPolicyPath;
int (*energyCounter)(int64_t *);
int boot_min_cap;
diff --git a/init/Android.bp b/init/Android.bp
index c7e7de8..1aba4b3 100644
--- a/init/Android.bp
+++ b/init/Android.bp
@@ -454,15 +454,7 @@
defaults: ["init_defaults"],
require_root: true,
- compile_multilib: "both",
- multilib: {
- lib32: {
- suffix: "32",
- },
- lib64: {
- suffix: "64",
- },
- },
+ compile_multilib: "first",
srcs: [
"devices_test.cpp",
diff --git a/init/AndroidTest.xml b/init/AndroidTest.xml
index 6f22ab7..8b05484 100644
--- a/init/AndroidTest.xml
+++ b/init/AndroidTest.xml
@@ -22,7 +22,6 @@
<target_preparer class="com.android.compatibility.common.tradefed.targetprep.FilePusher">
<option name="cleanup" value="true" />
<option name="push" value="CtsInitTestCases->/data/local/tmp/CtsInitTestCases" />
- <option name="append-bitness" value="true" />
</target_preparer>
<target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer">
<option name="throw-on-error" value="false" />
diff --git a/init/OWNERS b/init/OWNERS
index 4604d06..68b9396 100644
--- a/init/OWNERS
+++ b/init/OWNERS
@@ -1,2 +1,3 @@
+# Bug component: 1312227
dvander@google.com
jiyong@google.com
diff --git a/init/README.md b/init/README.md
index 6596528..b006365 100644
--- a/init/README.md
+++ b/init/README.md
@@ -162,6 +162,28 @@
setprop e 1
setprop f 2
+If the property `true` wasn't `true` when the `boot` was triggered, then the
+order of the commands executed will be:
+
+ setprop a 1
+ setprop b 2
+ setprop e 1
+ setprop f 2
+
+If the property `true` becomes `true` *AFTER* `boot` was triggered, nothing will
+be executed. The condition `boot && property:true=true` will be evaluated to
+false because the `boot` trigger is a past event.
+
+Note that when `ro.property_service.async_persist_writes` is `true`, there is no
+defined ordering between persistent setprops and non-persistent setprops. For
+example:
+
+ on boot
+ setprop a 1
+ setprop persist.b 2
+
+When `ro.property_service.async_persist_writes` is `true`, triggers for these
+two properties may execute in any order.
Services
--------
@@ -184,8 +206,10 @@
capability without the "CAP\_" prefix, like "NET\_ADMIN" or "SETPCAP". See
http://man7.org/linux/man-pages/man7/capabilities.7.html for a list of Linux
capabilities.
- If no capabilities are provided, then all capabilities are removed from this service, even if it
- runs as root.
+ If no capabilities are provided, then behaviour depends on the user the service runs under:
+ * if it's root, then the service will run with all the capabitilies (note: whether the
+ service can actually use them is controlled by selinux);
+ * otherwise all capabilities will be dropped.
`class <name> [ <name>\* ]`
> Specify class names for the service. All services in a
@@ -231,6 +255,10 @@
"r", "w" or "rw". For native executables see libcutils
android\_get\_control\_file().
+`gentle_kill`
+> This service will be sent SIGTERM instead of SIGKILL when stopped. After a 200 ms timeout, it will
+ be sent SIGKILL.
+
`group <groupname> [ <groupname>\* ]`
> Change to 'groupname' before exec'ing this service. Additional
groupnames beyond the (required) first one are used to set the
@@ -399,7 +427,7 @@
using this new mechanism, processes can use the user option to
select their desired uid without ever running as root.
As of Android O, processes can also request capabilities directly in their .rc
- files. See the "capabilities" option below.
+ files. See the "capabilities" option above.
`writepid <file> [ <file>\* ]`
> Write the child's pid to the given files when it forks. Meant for
@@ -433,7 +461,9 @@
For example:
`on boot && property:a=b` defines an action that is only executed when
-the 'boot' event trigger happens and the property a equals b.
+the 'boot' event trigger happens and the property a equals b at the moment. This
+will NOT be executed when the property a transitions to value b after the `boot`
+event was triggered.
`on property:a=b && property:c=d` defines an action that is executed
at three times:
diff --git a/init/apex_init_util.cpp b/init/apex_init_util.cpp
index d618a6e..c818f8f 100644
--- a/init/apex_init_util.cpp
+++ b/init/apex_init_util.cpp
@@ -18,7 +18,6 @@
#include <glob.h>
-#include <map>
#include <vector>
#include <android-base/logging.h>
@@ -66,18 +65,20 @@
}
static Result<void> ParseConfigs(const std::vector<std::string>& configs) {
- Parser parser = CreateApexConfigParser(ActionManager::GetInstance(),
- ServiceList::GetInstance());
- bool success = true;
+ Parser parser =
+ CreateApexConfigParser(ActionManager::GetInstance(), ServiceList::GetInstance());
+ std::vector<std::string> errors;
for (const auto& c : configs) {
- success &= parser.ParseConfigFile(c);
+ auto result = parser.ParseConfigFile(c);
+ // We should handle other config files even when there's an error.
+ if (!result.ok()) {
+ errors.push_back(result.error().message());
+ }
}
-
- if (success) {
- return {};
- } else {
- return Error() << "Unable to parse apex configs";
+ if (!errors.empty()) {
+ return Error() << "Unable to parse apex configs: " << base::Join(errors, "|");
}
+ return {};
}
Result<void> ParseApexConfigs(const std::string& apex_name) {
diff --git a/init/devices.cpp b/init/devices.cpp
index 28406f6..39442a0 100644
--- a/init/devices.cpp
+++ b/init/devices.cpp
@@ -431,6 +431,12 @@
}
}
+ std::string model;
+ if (ReadFileToString("/sys/class/block/" + uevent.device_name + "/queue/zoned", &model) &&
+ !StartsWith(model, "none")) {
+ links.emplace_back("/dev/block/by-name/zoned_device");
+ }
+
auto last_slash = uevent.path.rfind('/');
links.emplace_back(link_path + "/" + uevent.path.substr(last_slash + 1));
@@ -470,7 +476,11 @@
MakeDevice(devpath, block, major, minor, links);
}
- // We don't have full device-mapper information until a change event is fired.
+ // Handle device-mapper nodes.
+ // On kernels <= 5.10, the "add" event is fired on DM_DEV_CREATE, but does not contain name
+ // information until DM_TABLE_LOAD - thus, we wait for a "change" event.
+ // On kernels >= 5.15, the "add" event is fired on DM_TABLE_LOAD, followed by a "change"
+ // event.
if (action == "add" || (action == "change" && StartsWith(devpath, "/dev/block/dm-"))) {
for (const auto& link : links) {
if (!mkdir_recursive(Dirname(link), 0755)) {
diff --git a/init/init.cpp b/init/init.cpp
index 4262191..f964c60 100644
--- a/init/init.cpp
+++ b/init/init.cpp
@@ -952,6 +952,8 @@
InitKernelLogging(argv);
LOG(INFO) << "init second stage started!";
+ SelinuxSetupKernelLogging();
+
// Update $PATH in the case the second stage init is newer than first stage init, where it is
// first set.
if (setenv("PATH", _PATH_DEFPATH, 1) != 0) {
@@ -1012,7 +1014,6 @@
MountExtraFilesystems();
// Now set up SELinux for second stage.
- SelinuxSetupKernelLogging();
SelabelInitialize();
SelinuxRestoreContext();
diff --git a/init/init_test.cpp b/init/init_test.cpp
index aea1cb3..7bb5c90 100644
--- a/init/init_test.cpp
+++ b/init/init_test.cpp
@@ -16,13 +16,16 @@
#include <functional>
#include <string_view>
+#include <thread>
#include <type_traits>
#include <android-base/file.h>
#include <android-base/logging.h>
#include <android-base/properties.h>
+#include <android/api-level.h>
#include <gtest/gtest.h>
#include <selinux/selinux.h>
+#include <sys/resource.h>
#include "action.h"
#include "action_manager.h"
@@ -194,13 +197,14 @@
}
TEST(init, StartConsole) {
- if (access("/dev/console", F_OK) < 0) {
- GTEST_SKIP() << "/dev/console not found";
+ if (GetProperty("ro.build.type", "") == "user") {
+ GTEST_SKIP() << "Must run on userdebug/eng builds. b/262090304";
+ return;
}
std::string init_script = R"init(
service console /system/bin/sh
class core
- console console
+ console null
disabled
user root
group root shell log readproc
@@ -625,6 +629,109 @@
ASSERT_EQ(1u, parser.parse_error_count());
}
+TEST(init, MemLockLimit) {
+ // Test is enforced only for U+ devices
+ if (android::base::GetIntProperty("ro.vendor.api_level", 0) < __ANDROID_API_U__) {
+ GTEST_SKIP();
+ }
+
+ // Verify we are running memlock at, or under, 64KB
+ const unsigned long max_limit = 65536;
+ struct rlimit curr_limit;
+ ASSERT_EQ(getrlimit(RLIMIT_MEMLOCK, &curr_limit), 0);
+ ASSERT_LE(curr_limit.rlim_cur, max_limit);
+ ASSERT_LE(curr_limit.rlim_max, max_limit);
+}
+
+static std::vector<const char*> ConvertToArgv(const std::vector<std::string>& args) {
+ std::vector<const char*> argv;
+ argv.reserve(args.size() + 1);
+ for (const auto& arg : args) {
+ if (argv.empty()) {
+ LOG(DEBUG) << arg;
+ } else {
+ LOG(DEBUG) << " " << arg;
+ }
+ argv.emplace_back(arg.data());
+ }
+ argv.emplace_back(nullptr);
+ return argv;
+}
+
+pid_t ForkExecvpAsync(const std::vector<std::string>& args) {
+ auto argv = ConvertToArgv(args);
+
+ pid_t pid = fork();
+ if (pid == 0) {
+ close(STDIN_FILENO);
+ close(STDOUT_FILENO);
+ close(STDERR_FILENO);
+
+ execvp(argv[0], const_cast<char**>(argv.data()));
+ PLOG(ERROR) << "exec in ForkExecvpAsync init test";
+ _exit(EXIT_FAILURE);
+ }
+ if (pid == -1) {
+ PLOG(ERROR) << "fork in ForkExecvpAsync init test";
+ return -1;
+ }
+ return pid;
+}
+
+TEST(init, GentleKill) {
+ if (getuid() != 0) {
+ GTEST_SKIP() << "Must be run as root.";
+ return;
+ }
+ std::string init_script = R"init(
+service test_gentle_kill /system/bin/sleep 1000
+ disabled
+ oneshot
+ gentle_kill
+ user root
+ group root
+ seclabel u:r:toolbox:s0
+)init";
+
+ ActionManager action_manager;
+ ServiceList service_list;
+ TestInitText(init_script, BuiltinFunctionMap(), {}, &action_manager, &service_list);
+ ASSERT_EQ(std::distance(service_list.begin(), service_list.end()), 1);
+
+ auto service = service_list.begin()->get();
+ ASSERT_NE(service, nullptr);
+ ASSERT_RESULT_OK(service->Start());
+ const pid_t pid = service->pid();
+ ASSERT_GT(pid, 0);
+ EXPECT_NE(getsid(pid), 0);
+
+ TemporaryFile logfile;
+ logfile.DoNotRemove();
+ ASSERT_TRUE(logfile.fd != -1);
+
+ std::vector<std::string> cmd;
+ cmd.push_back("system/bin/strace");
+ cmd.push_back("-o");
+ cmd.push_back(logfile.path);
+ cmd.push_back("-e");
+ cmd.push_back("signal");
+ cmd.push_back("-p");
+ cmd.push_back(std::to_string(pid));
+ pid_t strace_pid = ForkExecvpAsync(cmd);
+
+ // Give strace a moment to connect
+ std::this_thread::sleep_for(1s);
+ service->Stop();
+
+ int status;
+ waitpid(strace_pid, &status, 0);
+
+ std::string logs;
+ android::base::ReadFdToString(logfile.fd, &logs);
+ int pos = logs.find("killed by SIGTERM");
+ ASSERT_NE(pos, (int)std::string::npos);
+}
+
class TestCaseLogger : public ::testing::EmptyTestEventListener {
void OnTestStart(const ::testing::TestInfo& test_info) override {
#ifdef __ANDROID__
diff --git a/init/parser.cpp b/init/parser.cpp
index 0a388db..adb41ad 100644
--- a/init/parser.cpp
+++ b/init/parser.cpp
@@ -141,19 +141,19 @@
return true;
}
-bool Parser::ParseConfigFile(const std::string& path) {
+Result<void> Parser::ParseConfigFile(const std::string& path) {
LOG(INFO) << "Parsing file " << path << "...";
android::base::Timer t;
auto config_contents = ReadFile(path);
if (!config_contents.ok()) {
- LOG(INFO) << "Unable to read config file '" << path << "': " << config_contents.error();
- return false;
+ return Error() << "Unable to read config file '" << path
+ << "': " << config_contents.error();
}
ParseData(path, &config_contents.value());
LOG(VERBOSE) << "(Parsing " << path << " took " << t << ".)";
- return true;
+ return {};
}
bool Parser::ParseConfigDir(const std::string& path) {
@@ -176,8 +176,8 @@
// Sort first so we load files in a consistent order (bug 31996208)
std::sort(files.begin(), files.end());
for (const auto& file : files) {
- if (!ParseConfigFile(file)) {
- LOG(ERROR) << "could not import file '" << file << "'";
+ if (auto result = ParseConfigFile(file); !result.ok()) {
+ LOG(ERROR) << "could not import file '" << file << "': " << result.error();
}
}
return true;
@@ -187,7 +187,11 @@
if (is_dir(path.c_str())) {
return ParseConfigDir(path);
}
- return ParseConfigFile(path);
+ auto result = ParseConfigFile(path);
+ if (!result.ok()) {
+ LOG(INFO) << result.error();
+ }
+ return result.ok();
}
} // namespace init
diff --git a/init/parser.h b/init/parser.h
index 95b0cd7..980ae0c 100644
--- a/init/parser.h
+++ b/init/parser.h
@@ -72,7 +72,7 @@
Parser();
bool ParseConfig(const std::string& path);
- bool ParseConfigFile(const std::string& path);
+ Result<void> ParseConfigFile(const std::string& path);
void AddSectionParser(const std::string& name, std::unique_ptr<SectionParser> parser);
void AddSingleLineParser(const std::string& prefix, LineCallback callback);
diff --git a/init/property_service.cpp b/init/property_service.cpp
index 9df9828..87ffdb9 100644
--- a/init/property_service.cpp
+++ b/init/property_service.cpp
@@ -98,6 +98,9 @@
namespace android {
namespace init {
+
+class PersistWriteThread;
+
constexpr auto FINGERPRINT_PROP = "ro.build.fingerprint";
constexpr auto LEGACY_FINGERPRINT_PROP = "ro.build.legacy.fingerprint";
constexpr auto ID_PROP = "ro.build.id";
@@ -115,6 +118,8 @@
static std::mutex accept_messages_lock;
static std::thread property_service_thread;
+static std::unique_ptr<PersistWriteThread> persist_write_thread;
+
static PropertyInfoAreaFile property_info_area;
struct PropertyAuditData {
@@ -177,48 +182,13 @@
return has_access;
}
-static uint32_t PropertySet(const std::string& name, const std::string& value, std::string* error) {
- size_t valuelen = value.size();
-
- if (!IsLegalPropertyName(name)) {
- *error = "Illegal property name";
- return PROP_ERROR_INVALID_NAME;
- }
-
- if (auto result = IsLegalPropertyValue(name, value); !result.ok()) {
- *error = result.error().message();
- return PROP_ERROR_INVALID_VALUE;
- }
-
- prop_info* pi = (prop_info*) __system_property_find(name.c_str());
- if (pi != nullptr) {
- // ro.* properties are actually "write-once".
- if (StartsWith(name, "ro.")) {
- *error = "Read-only property was already set";
- return PROP_ERROR_READ_ONLY_PROPERTY;
- }
-
- __system_property_update(pi, value.c_str(), valuelen);
- } else {
- int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
- if (rc < 0) {
- *error = "__system_property_add failed";
- return PROP_ERROR_SET_FAILED;
- }
- }
-
- // Don't write properties to disk until after we have read all default
- // properties to prevent them from being overwritten by default values.
- if (persistent_properties_loaded && StartsWith(name, "persist.")) {
- WritePersistentProperty(name, value);
- }
+void NotifyPropertyChange(const std::string& name, const std::string& value) {
// If init hasn't started its main loop, then it won't be handling property changed messages
// anyway, so there's no need to try to send them.
auto lock = std::lock_guard{accept_messages_lock};
if (accept_messages) {
PropertyChanged(name, value);
}
- return PROP_SUCCESS;
}
class AsyncRestorecon {
@@ -259,7 +229,9 @@
class SocketConnection {
public:
+ SocketConnection() = default;
SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {}
+ SocketConnection(SocketConnection&&) = default;
bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
return RecvFully(value, sizeof(*value), timeout_ms);
@@ -318,6 +290,8 @@
const ucred& cred() { return cred_; }
+ SocketConnection& operator=(SocketConnection&&) = default;
+
private:
bool PollIn(uint32_t* timeout_ms) {
struct pollfd ufd = {
@@ -388,9 +362,78 @@
unique_fd socket_;
ucred cred_;
- DISALLOW_IMPLICIT_CONSTRUCTORS(SocketConnection);
+ DISALLOW_COPY_AND_ASSIGN(SocketConnection);
};
+class PersistWriteThread {
+ public:
+ PersistWriteThread();
+ void Write(std::string name, std::string value, SocketConnection socket);
+
+ private:
+ void Work();
+
+ private:
+ std::thread thread_;
+ std::mutex mutex_;
+ std::condition_variable cv_;
+ std::deque<std::tuple<std::string, std::string, SocketConnection>> work_;
+};
+
+static std::optional<uint32_t> PropertySet(const std::string& name, const std::string& value,
+ SocketConnection* socket, std::string* error) {
+ size_t valuelen = value.size();
+
+ if (!IsLegalPropertyName(name)) {
+ *error = "Illegal property name";
+ return {PROP_ERROR_INVALID_NAME};
+ }
+
+ if (auto result = IsLegalPropertyValue(name, value); !result.ok()) {
+ *error = result.error().message();
+ return {PROP_ERROR_INVALID_VALUE};
+ }
+
+ prop_info* pi = (prop_info*)__system_property_find(name.c_str());
+ if (pi != nullptr) {
+ // ro.* properties are actually "write-once".
+ if (StartsWith(name, "ro.")) {
+ *error = "Read-only property was already set";
+ return {PROP_ERROR_READ_ONLY_PROPERTY};
+ }
+
+ __system_property_update(pi, value.c_str(), valuelen);
+ } else {
+ int rc = __system_property_add(name.c_str(), name.size(), value.c_str(), valuelen);
+ if (rc < 0) {
+ *error = "__system_property_add failed";
+ return {PROP_ERROR_SET_FAILED};
+ }
+ }
+
+ // Don't write properties to disk until after we have read all default
+ // properties to prevent them from being overwritten by default values.
+ if (socket && persistent_properties_loaded && StartsWith(name, "persist.")) {
+ if (persist_write_thread) {
+ persist_write_thread->Write(name, value, std::move(*socket));
+ return {};
+ }
+ WritePersistentProperty(name, value);
+ }
+
+ NotifyPropertyChange(name, value);
+ return {PROP_SUCCESS};
+}
+
+// Helper for PropertySet, for the case where no socket is used, and therefore an asynchronous
+// return is not possible.
+static uint32_t PropertySetNoSocket(const std::string& name, const std::string& value,
+ std::string* error) {
+ auto ret = PropertySet(name, value, nullptr, error);
+ CHECK(ret.has_value());
+ return *ret;
+}
+
static uint32_t SendControlMessage(const std::string& msg, const std::string& name, pid_t pid,
SocketConnection* socket, std::string* error) {
auto lock = std::lock_guard{accept_messages_lock};
@@ -481,16 +524,17 @@
return PROP_SUCCESS;
}
-// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*.
-uint32_t HandlePropertySet(const std::string& name, const std::string& value,
- const std::string& source_context, const ucred& cr,
- SocketConnection* socket, std::string* error) {
+// This returns one of the enum of PROP_SUCCESS or PROP_ERROR*, or std::nullopt
+// if asynchronous.
+std::optional<uint32_t> HandlePropertySet(const std::string& name, const std::string& value,
+ const std::string& source_context, const ucred& cr,
+ SocketConnection* socket, std::string* error) {
if (auto ret = CheckPermissions(name, value, source_context, cr, error); ret != PROP_SUCCESS) {
- return ret;
+ return {ret};
}
if (StartsWith(name, "ctl.")) {
- return SendControlMessage(name.c_str() + 4, value, cr.pid, socket, error);
+ return {SendControlMessage(name.c_str() + 4, value, cr.pid, socket, error)};
}
// sys.powerctl is a special property that is used to make the device reboot. We want to log
@@ -511,7 +555,7 @@
}
if (value == "reboot,userspace" && !is_userspace_reboot_supported().value_or(false)) {
*error = "Userspace reboot is not supported by this device";
- return PROP_ERROR_INVALID_VALUE;
+ return {PROP_ERROR_INVALID_VALUE};
}
}
@@ -522,10 +566,20 @@
if (name == kRestoreconProperty && cr.pid != 1 && !value.empty()) {
static AsyncRestorecon async_restorecon;
async_restorecon.TriggerRestorecon(value);
- return PROP_SUCCESS;
+ return {PROP_SUCCESS};
}
- return PropertySet(name, value, error);
+ return PropertySet(name, value, socket, error);
+}
+
+// Helper for HandlePropertySet, for the case where no socket is used, and
+// therefore an asynchronous return is not possible.
+uint32_t HandlePropertySetNoSocket(const std::string& name, const std::string& value,
+ const std::string& source_context, const ucred& cr,
+ std::string* error) {
+ auto ret = HandlePropertySet(name, value, source_context, cr, nullptr, error);
+ CHECK(ret.has_value());
+ return *ret;
}
static void handle_property_set_fd() {
@@ -576,8 +630,7 @@
const auto& cr = socket.cred();
std::string error;
- uint32_t result =
- HandlePropertySet(prop_name, prop_value, source_context, cr, nullptr, &error);
+ auto result = HandlePropertySetNoSocket(prop_name, prop_value, source_context, cr, &error);
if (result != PROP_SUCCESS) {
LOG(ERROR) << "Unable to set property '" << prop_name << "' from uid:" << cr.uid
<< " gid:" << cr.gid << " pid:" << cr.pid << ": " << error;
@@ -603,14 +656,19 @@
return;
}
+ // HandlePropertySet takes ownership of the socket if the set is handled asynchronously.
const auto& cr = socket.cred();
std::string error;
- uint32_t result = HandlePropertySet(name, value, source_context, cr, &socket, &error);
- if (result != PROP_SUCCESS) {
+ auto result = HandlePropertySet(name, value, source_context, cr, &socket, &error);
+ if (!result) {
+ // Result will be sent after completion.
+ return;
+ }
+ if (*result != PROP_SUCCESS) {
LOG(ERROR) << "Unable to set property '" << name << "' from uid:" << cr.uid
<< " gid:" << cr.gid << " pid:" << cr.pid << ": " << error;
}
- socket.SendUint32(result);
+ socket.SendUint32(*result);
break;
}
@@ -622,10 +680,9 @@
}
uint32_t InitPropertySet(const std::string& name, const std::string& value) {
- uint32_t result = 0;
ucred cr = {.pid = 1, .uid = 0, .gid = 0};
std::string error;
- result = HandlePropertySet(name, value, kInitContext, cr, nullptr, &error);
+ auto result = HandlePropertySetNoSocket(name, value, kInitContext, cr, &error);
if (result != PROP_SUCCESS) {
LOG(ERROR) << "Init cannot set '" << name << "' to '" << value << "': " << error;
}
@@ -795,7 +852,7 @@
load_properties_from_file("/data/local.prop", nullptr, &properties);
for (const auto& [name, value] : properties) {
std::string error;
- if (PropertySet(name, value, &error) != PROP_SUCCESS) {
+ if (PropertySetNoSocket(name, value, &error) != PROP_SUCCESS) {
LOG(ERROR) << "Could not set '" << name << "' to '" << value
<< "' in /data/local.prop: " << error;
}
@@ -861,7 +918,7 @@
LOG(INFO) << "Setting product property " << base_prop << " to '" << target_prop_val
<< "' (from " << target_prop << ")";
std::string error;
- uint32_t res = PropertySet(base_prop, target_prop_val, &error);
+ auto res = PropertySetNoSocket(base_prop, target_prop_val, &error);
if (res != PROP_SUCCESS) {
LOG(ERROR) << "Error setting product property " << base_prop << ": err=" << res
<< " (" << error << ")";
@@ -890,7 +947,7 @@
}
std::string error;
- auto res = PropertySet(ID_PROP, build_id, &error);
+ auto res = PropertySetNoSocket(ID_PROP, build_id, &error);
if (res != PROP_SUCCESS) {
LOG(ERROR) << "Failed to set " << ID_PROP << " to " << build_id;
}
@@ -938,7 +995,7 @@
<< legacy_build_fingerprint << "'";
std::string error;
- uint32_t res = PropertySet(LEGACY_FINGERPRINT_PROP, legacy_build_fingerprint, &error);
+ auto res = PropertySetNoSocket(LEGACY_FINGERPRINT_PROP, legacy_build_fingerprint, &error);
if (res != PROP_SUCCESS) {
LOG(ERROR) << "Error setting property '" << LEGACY_FINGERPRINT_PROP << "': err=" << res
<< " (" << error << ")";
@@ -956,7 +1013,7 @@
LOG(INFO) << "Setting property '" << FINGERPRINT_PROP << "' to '" << build_fingerprint << "'";
std::string error;
- uint32_t res = PropertySet(FINGERPRINT_PROP, build_fingerprint, &error);
+ auto res = PropertySetNoSocket(FINGERPRINT_PROP, build_fingerprint, &error);
if (res != PROP_SUCCESS) {
LOG(ERROR) << "Error setting property '" << FINGERPRINT_PROP << "': err=" << res << " ("
<< error << ")";
@@ -1018,7 +1075,7 @@
LOG(INFO) << "Setting property '" << prop << "' to '" << prop_val << "'";
std::string error;
- uint32_t res = PropertySet(prop, prop_val, &error);
+ auto res = PropertySetNoSocket(prop, prop_val, &error);
if (res != PROP_SUCCESS) {
LOG(ERROR) << "Error setting property '" << prop << "': err=" << res << " (" << error
<< ")";
@@ -1052,7 +1109,7 @@
int api_level = std::min(read_api_level_props(BOARD_API_LEVEL_PROPS),
read_api_level_props(DEVICE_API_LEVEL_PROPS));
std::string error;
- uint32_t res = PropertySet(VENDOR_API_LEVEL_PROP, std::to_string(api_level), &error);
+ auto res = PropertySetNoSocket(VENDOR_API_LEVEL_PROP, std::to_string(api_level), &error);
if (res != PROP_SUCCESS) {
LOG(ERROR) << "Failed to set " << VENDOR_API_LEVEL_PROP << " with " << api_level << ": "
<< error << "(" << res << ")";
@@ -1146,7 +1203,7 @@
for (const auto& [name, value] : properties) {
std::string error;
- if (PropertySet(name, value, &error) != PROP_SUCCESS) {
+ if (PropertySetNoSocket(name, value, &error) != PROP_SUCCESS) {
LOG(ERROR) << "Could not set '" << name << "' to '" << value
<< "' while loading .prop files" << error;
}
@@ -1388,6 +1445,46 @@
}
}
+PersistWriteThread::PersistWriteThread() {
+ auto new_thread = std::thread([this]() -> void { Work(); });
+ thread_.swap(new_thread);
+}
+
+void PersistWriteThread::Work() {
+ while (true) {
+ std::tuple<std::string, std::string, SocketConnection> item;
+
+ // Grab the next item within the lock.
+ {
+ std::unique_lock<std::mutex> lock(mutex_);
+
+ while (work_.empty()) {
+ cv_.wait(lock);
+ }
+
+ item = std::move(work_.front());
+ work_.pop_front();
+ }
+
+ std::this_thread::sleep_for(1s);
+
+ // Perform write/fsync outside the lock.
+ WritePersistentProperty(std::get<0>(item), std::get<1>(item));
+ NotifyPropertyChange(std::get<0>(item), std::get<1>(item));
+
+ SocketConnection& socket = std::get<2>(item);
+ socket.SendUint32(PROP_SUCCESS);
+ }
+}
+
+void PersistWriteThread::Write(std::string name, std::string value, SocketConnection socket) {
+ {
+ std::unique_lock<std::mutex> lock(mutex_);
+ work_.emplace_back(std::move(name), std::move(value), std::move(socket));
+ }
+ cv_.notify_all();
+}
+
void StartPropertyService(int* epoll_socket) {
InitPropertySet("ro.property_service.version", "2");
@@ -1412,6 +1509,13 @@
auto new_thread = std::thread{PropertyServiceThread};
property_service_thread.swap(new_thread);
+
+ auto async_persist_writes =
+ android::base::GetBoolProperty("ro.property_service.async_persist_writes", false);
+
+ if (async_persist_writes) {
+ persist_write_thread = std::make_unique<PersistWriteThread>();
+ }
}
} // namespace init
diff --git a/init/property_service.h b/init/property_service.h
index 2d49a36..71a609c 100644
--- a/init/property_service.h
+++ b/init/property_service.h
@@ -18,7 +18,11 @@
#include <sys/socket.h>
+#include <condition_variable>
+#include <deque>
+#include <mutex>
#include <string>
+#include <thread>
#include "epoll.h"
diff --git a/init/reboot.cpp b/init/reboot.cpp
index a3fc534..27a7876 100644
--- a/init/reboot.cpp
+++ b/init/reboot.cpp
@@ -51,6 +51,7 @@
#include <bootloader_message/bootloader_message.h>
#include <cutils/android_reboot.h>
#include <fs_mgr.h>
+#include <libsnapshot/snapshot.h>
#include <logwrap/logwrap.h>
#include <private/android_filesystem_config.h>
#include <selinux/selinux.h>
@@ -422,11 +423,31 @@
if (run_fsck && !FindPartitionsToUmount(&block_devices, &emulated_devices, false)) {
return UMOUNT_STAT_ERROR;
}
-
+ auto sm = snapshot::SnapshotManager::New();
+ bool ota_update_in_progress = false;
+ if (sm->IsUserspaceSnapshotUpdateInProgress()) {
+ LOG(INFO) << "OTA update in progress";
+ ota_update_in_progress = true;
+ }
UmountStat stat = UmountPartitions(timeout - t.duration());
if (stat != UMOUNT_STAT_SUCCESS) {
LOG(INFO) << "umount timeout, last resort, kill all and try";
if (DUMP_ON_UMOUNT_FAILURE) DumpUmountDebuggingInfo();
+ // Since umount timedout, we will try to kill all processes
+ // and do one more attempt to umount the partitions.
+ //
+ // However, if OTA update is in progress, we don't want
+ // to kill the snapuserd daemon as the daemon will
+ // be serving I/O requests. Killing the daemon will
+ // end up with I/O failures. If the update is in progress,
+ // we will just return the umount failure status immediately.
+ // This is ok, given the fact that killing the processes
+ // and doing an umount is just a last effort. We are
+ // still not doing fsck when all processes are killed.
+ //
+ if (ota_update_in_progress) {
+ return stat;
+ }
KillAllProcesses();
// even if it succeeds, still it is timeout and do not run fsck with all processes killed
UmountStat st = UmountPartitions(0ms);
diff --git a/init/selinux.cpp b/init/selinux.cpp
index ea308aa..4cc00fe 100644
--- a/init/selinux.cpp
+++ b/init/selinux.cpp
@@ -629,7 +629,7 @@
}
Result<void> SepolicyFsVerityCheck() {
- return Error() << "TODO implementent support for fsverity SEPolicy.";
+ return Error() << "TODO implement support for fsverity SEPolicy.";
}
Result<void> SepolicyCheckSignature(const std::string& dir) {
diff --git a/init/service.cpp b/init/service.cpp
index 2ce81a0..87d9c3a 100644
--- a/init/service.cpp
+++ b/init/service.cpp
@@ -26,6 +26,7 @@
#include <sys/time.h>
#include <termios.h>
#include <unistd.h>
+#include <thread>
#include <android-base/file.h>
#include <android-base/logging.h>
@@ -700,8 +701,9 @@
if (!result.ok()) {
return Error() << "Sending notification failed: " << result.error();
}
- return Error() << "createProcessGroup(" << proc_attr_.uid << ", " << pid_
- << ") failed for service '" << name_ << "'";
+ return Error() << "createProcessGroup(" << proc_attr_.uid << ", " << pid_ << ", "
+ << use_memcg << ") failed for service '" << name_
+ << "': " << strerror(errno);
}
// When the blkio controller is mounted in the v1 hierarchy, NormalIoPriority is
@@ -712,8 +714,6 @@
if (use_memcg) {
ConfigureMemcg();
}
- } else {
- process_cgroup_empty_ = true;
}
if (oom_score_adjust_ != DEFAULT_OOM_SCORE_ADJUST) {
@@ -868,6 +868,8 @@
if ((how != SVC_DISABLED) && (how != SVC_RESET) && (how != SVC_RESTART)) {
// An illegal flag: default to SVC_DISABLED.
+ LOG(ERROR) << "service '" << name_ << "' requested unknown flag " << how
+ << ", defaulting to disabling it.";
how = SVC_DISABLED;
}
@@ -886,6 +888,10 @@
}
if (pid_) {
+ if (flags_ & SVC_GENTLE_KILL) {
+ KillProcessGroup(SIGTERM);
+ if (!process_cgroup_empty()) std::this_thread::sleep_for(200ms);
+ }
KillProcessGroup(SIGKILL);
NotifyStateChange("stopping");
} else {
diff --git a/init/service.h b/init/service.h
index f9749d2..3ef8902 100644
--- a/init/service.h
+++ b/init/service.h
@@ -56,6 +56,8 @@
// should not be killed during shutdown
#define SVC_TEMPORARY 0x1000 // This service was started by 'exec' and should be removed from the
// service list once it is reaped.
+#define SVC_GENTLE_KILL 0x2000 // This service should be stopped with SIGTERM instead of SIGKILL
+ // Will still be SIGKILLed after timeout period of 200 ms
#define NR_SVC_SUPP_GIDS 12 // twelve supplementary groups
diff --git a/init/service_parser.cpp b/init/service_parser.cpp
index 24a2024..3563084 100644
--- a/init/service_parser.cpp
+++ b/init/service_parser.cpp
@@ -151,6 +151,11 @@
return {};
}
+Result<void> ServiceParser::ParseGentleKill(std::vector<std::string>&& args) {
+ service_->flags_ |= SVC_GENTLE_KILL;
+ return {};
+}
+
Result<void> ServiceParser::ParseGroup(std::vector<std::string>&& args) {
auto gid = DecodeUid(args[1]);
if (!gid.ok()) {
@@ -584,6 +589,7 @@
{"disabled", {0, 0, &ServiceParser::ParseDisabled}},
{"enter_namespace", {2, 2, &ServiceParser::ParseEnterNamespace}},
{"file", {2, 2, &ServiceParser::ParseFile}},
+ {"gentle_kill", {0, 0, &ServiceParser::ParseGentleKill}},
{"group", {1, NR_SVC_SUPP_GIDS + 1, &ServiceParser::ParseGroup}},
{"interface", {2, 2, &ServiceParser::ParseInterface}},
{"ioprio", {2, 2, &ServiceParser::ParseIoprio}},
diff --git a/init/service_parser.h b/init/service_parser.h
index 54503dd..670a5c6 100644
--- a/init/service_parser.h
+++ b/init/service_parser.h
@@ -53,6 +53,7 @@
Result<void> ParseDisabled(std::vector<std::string>&& args);
Result<void> ParseEnterNamespace(std::vector<std::string>&& args);
Result<void> ParseGroup(std::vector<std::string>&& args);
+ Result<void> ParseGentleKill(std::vector<std::string>&& args);
Result<void> ParsePriority(std::vector<std::string>&& args);
Result<void> ParseInterface(std::vector<std::string>&& args);
Result<void> ParseIoprio(std::vector<std::string>&& args);
diff --git a/init/snapuserd_transition.cpp b/init/snapuserd_transition.cpp
index 6972f30..3a9ff5b 100644
--- a/init/snapuserd_transition.cpp
+++ b/init/snapuserd_transition.cpp
@@ -112,6 +112,10 @@
setenv(kSnapuserdFirstStagePidVar, std::to_string(pid).c_str(), 1);
+ if (!client->RemoveTransitionedDaemonIndicator()) {
+ LOG(ERROR) << "RemoveTransitionedDaemonIndicator failed";
+ }
+
LOG(INFO) << "Relaunched snapuserd with pid: " << pid;
}
@@ -263,6 +267,19 @@
* we may see audit logs.
*/
bool SnapuserdSelinuxHelper::TestSnapuserdIsReady() {
+ // Wait for the daemon to be fully up. Daemon will write to path
+ // /metadata/ota/daemon-alive-indicator only when all the threads
+ // are ready and attached to dm-user.
+ //
+ // This check will fail for GRF devices with vendor on Android S.
+ // snapuserd binary from Android S won't be able to communicate
+ // and hence, we will fallback and issue I/O to verify
+ // the presence of daemon.
+ auto client = std::make_unique<SnapuserdClient>();
+ if (!client->IsTransitionedDaemonReady()) {
+ LOG(ERROR) << "IsTransitionedDaemonReady failed";
+ }
+
std::string dev = "/dev/block/mapper/system"s + fs_mgr_get_slot_suffix();
android::base::unique_fd fd(open(dev.c_str(), O_RDONLY | O_DIRECT));
if (fd < 0) {
diff --git a/init/test_upgrade_mte/mte_upgrade_test_helper.cpp b/init/test_upgrade_mte/mte_upgrade_test_helper.cpp
index 3188337..6728cc6 100644
--- a/init/test_upgrade_mte/mte_upgrade_test_helper.cpp
+++ b/init/test_upgrade_mte/mte_upgrade_test_helper.cpp
@@ -60,6 +60,10 @@
if (prctl(PR_SET_TAGGED_ADDR_CTRL, res & ~PR_MTE_TCF_SYNC, 0, 0, 0) == -1) abort();
}
std::unique_ptr<volatile char[]> f(new char[1]);
+ // This out-of-bounds is on purpose: we are testing MTE, which is designed to turn
+ // out-of-bound errors into segfaults.
+ // This binary gets run by src/com/android/tests/init/MteUpgradeTest.java, which
+ // asserts that it crashes as expected.
f[17] = 'x';
char buf[1];
read(1, buf, 1);
diff --git a/libcutils/TEST_MAPPING b/libcutils/TEST_MAPPING
index 6477502..eb63aa5 100644
--- a/libcutils/TEST_MAPPING
+++ b/libcutils/TEST_MAPPING
@@ -8,5 +8,10 @@
{
"name": "libcutils_test"
}
+ ],
+ "kernel-presubmit": [
+ {
+ "name": "libcutils_test"
+ }
]
}
diff --git a/libcutils/ashmem_test.cpp b/libcutils/ashmem_test.cpp
index fb657f6..d158427 100644
--- a/libcutils/ashmem_test.cpp
+++ b/libcutils/ashmem_test.cpp
@@ -75,7 +75,7 @@
unique_fd fd;
ASSERT_NO_FATAL_FAILURE(TestCreateRegion(size, fd, PROT_READ | PROT_WRITE));
- void *region1;
+ void* region1 = nullptr;
ASSERT_NO_FATAL_FAILURE(TestMmap(fd, size, PROT_READ | PROT_WRITE, ®ion1));
memcpy(region1, &data, size);
@@ -97,7 +97,7 @@
unique_fd fd;
ASSERT_NO_FATAL_FAILURE(TestCreateRegion(size, fd, PROT_READ | PROT_WRITE));
- void *region1;
+ void* region1 = nullptr;
ASSERT_NO_FATAL_FAILURE(TestMmap(fd, size, PROT_READ | PROT_WRITE, ®ion1));
memcpy(region1, &data, size);
@@ -131,7 +131,7 @@
TEST(AshmemTest, FileOperationsTest) {
unique_fd fd;
- void* region;
+ void* region = nullptr;
// Allocate a 4-page buffer, but leave page-sized holes on either side
constexpr size_t size = PAGE_SIZE * 4;
@@ -246,7 +246,7 @@
unique_fd fd[nRegions];
for (int i = 0; i < nRegions; i++) {
ASSERT_NO_FATAL_FAILURE(TestCreateRegion(size, fd[i], PROT_READ | PROT_WRITE));
- void *region;
+ void* region = nullptr;
ASSERT_NO_FATAL_FAILURE(TestMmap(fd[i], size, PROT_READ | PROT_WRITE, ®ion));
memcpy(region, &data, size);
ASSERT_EQ(0, memcmp(region, &data, size));
diff --git a/libcutils/include/cutils/qtaguid.h b/libcutils/include/cutils/qtaguid.h
index a5ffb03..8902c2b 100644
--- a/libcutils/include/cutils/qtaguid.h
+++ b/libcutils/include/cutils/qtaguid.h
@@ -33,12 +33,6 @@
*/
extern int qtaguid_untagSocket(int sockfd);
-/*
- * Enable/disable qtaguid functionnality at a lower level.
- * When pacified, the kernel will accept commands but do nothing.
- */
-extern int qtaguid_setPacifier(int on);
-
#ifdef __cplusplus
}
#endif
diff --git a/libcutils/qtaguid.cpp b/libcutils/qtaguid.cpp
index a987b85..f847782 100644
--- a/libcutils/qtaguid.cpp
+++ b/libcutils/qtaguid.cpp
@@ -22,76 +22,60 @@
#include <dlfcn.h>
#include <errno.h>
-#include <fcntl.h>
#include <inttypes.h>
-#include <stdio.h>
-#include <string.h>
-#include <unistd.h>
#include <log/log.h>
-class netdHandler {
- public:
+struct netdHandler {
int (*netdTagSocket)(int, uint32_t, uid_t);
int (*netdUntagSocket)(int);
};
-int stubTagSocket(int, uint32_t, uid_t) {
+static int stubTagSocket(int, uint32_t, uid_t) {
return -EREMOTEIO;
}
-int stubUntagSocket(int) {
+static int stubUntagSocket(int) {
return -EREMOTEIO;
}
-netdHandler initHandler(void) {
- netdHandler handler = {stubTagSocket, stubUntagSocket};
+static netdHandler initHandler(void) {
+ const netdHandler stubHandler = { stubTagSocket, stubUntagSocket };
void* netdClientHandle = dlopen("libnetd_client.so", RTLD_NOW);
if (!netdClientHandle) {
ALOGE("Failed to open libnetd_client.so: %s", dlerror());
- return handler;
+ return stubHandler;
}
+ netdHandler handler;
handler.netdTagSocket = (int (*)(int, uint32_t, uid_t))dlsym(netdClientHandle, "tagSocket");
if (!handler.netdTagSocket) {
ALOGE("load netdTagSocket handler failed: %s", dlerror());
+ return stubHandler;
}
handler.netdUntagSocket = (int (*)(int))dlsym(netdClientHandle, "untagSocket");
if (!handler.netdUntagSocket) {
ALOGE("load netdUntagSocket handler failed: %s", dlerror());
+ return stubHandler;
}
return handler;
}
// The language guarantees that this object will be initialized in a thread-safe way.
-static netdHandler& getHandler() {
- static netdHandler instance = initHandler();
+static const netdHandler& getHandler() {
+ static const netdHandler instance = initHandler();
return instance;
}
int qtaguid_tagSocket(int sockfd, int tag, uid_t uid) {
- // Check the socket fd passed to us is still valid before we load the netd
- // client. Pass a already closed socket fd to netd client may let netd open
- // the unix socket with the same fd number and pass it to server for
- // tagging.
- // TODO: move the check into netdTagSocket.
- int res = fcntl(sockfd, F_GETFD);
- if (res < 0) return res;
-
ALOGV("Tagging socket %d with tag %u for uid %d", sockfd, tag, uid);
return getHandler().netdTagSocket(sockfd, tag, uid);
}
int qtaguid_untagSocket(int sockfd) {
- // Similiar to tag socket. We need a check before untag to make sure untag a closed socket fail
- // as expected.
- // TODO: move the check into netdTagSocket.
- int res = fcntl(sockfd, F_GETFD);
- if (res < 0) return res;
-
ALOGV("Untagging socket %d", sockfd);
return getHandler().netdUntagSocket(sockfd);
}
diff --git a/libcutils/sched_policy_test.cpp b/libcutils/sched_policy_test.cpp
index b9e2832..50bd6d0 100644
--- a/libcutils/sched_policy_test.cpp
+++ b/libcutils/sched_policy_test.cpp
@@ -75,9 +75,11 @@
}
ASSERT_EQ(0, set_sched_policy(0, SP_BACKGROUND));
+ ASSERT_EQ(0, set_cpuset_policy(0, SP_BACKGROUND));
AssertPolicy(SP_BACKGROUND);
ASSERT_EQ(0, set_sched_policy(0, SP_FOREGROUND));
+ ASSERT_EQ(0, set_cpuset_policy(0, SP_FOREGROUND));
AssertPolicy(SP_FOREGROUND);
}
diff --git a/libdiskconfig/diskconfig.c b/libdiskconfig/diskconfig.c
index c7e1b43..5f34748 100644
--- a/libdiskconfig/diskconfig.c
+++ b/libdiskconfig/diskconfig.c
@@ -398,7 +398,7 @@
case PART_SCHEME_GPT:
/* not supported yet */
default:
- ALOGE("Uknown partition scheme.");
+ ALOGE("Unknown partition scheme.");
break;
}
diff --git a/libprocessgroup/OWNERS b/libprocessgroup/OWNERS
index 8ebb8cc..d5aa721 100644
--- a/libprocessgroup/OWNERS
+++ b/libprocessgroup/OWNERS
@@ -1,2 +1,4 @@
-ccross@google.com
+# Bug component: 1293033
surenb@google.com
+tjmercier@google.com
+carlosgalo@google.com
diff --git a/libprocessgroup/cgroup_map.cpp b/libprocessgroup/cgroup_map.cpp
index 8c00326..ac369d2 100644
--- a/libprocessgroup/cgroup_map.cpp
+++ b/libprocessgroup/cgroup_map.cpp
@@ -49,7 +49,7 @@
static constexpr const char* CGROUP_PROCS_FILE = "/cgroup.procs";
static constexpr const char* CGROUP_TASKS_FILE = "/tasks";
-static constexpr const char* CGROUP_TASKS_FILE_V2 = "/cgroup.tasks";
+static constexpr const char* CGROUP_TASKS_FILE_V2 = "/cgroup.threads";
uint32_t CgroupController::version() const {
CHECK(HasValue());
@@ -229,8 +229,8 @@
auto controller_count = ACgroupFile_getControllerCount();
for (uint32_t i = 0; i < controller_count; ++i) {
const ACgroupController* controller = ACgroupFile_getController(i);
- if (ACgroupController_getFlags(controller) &
- CGROUPRC_CONTROLLER_FLAG_NEEDS_ACTIVATION) {
+ const uint32_t flags = ACgroupController_getFlags(controller);
+ if (flags & CGROUPRC_CONTROLLER_FLAG_NEEDS_ACTIVATION) {
std::string str("+");
str.append(ACgroupController_getName(controller));
if (!WriteStringToFile(str, path + "/cgroup.subtree_control")) {
diff --git a/libprocessgroup/processgroup.cpp b/libprocessgroup/processgroup.cpp
index 3fac373..1da69ba 100644
--- a/libprocessgroup/processgroup.cpp
+++ b/libprocessgroup/processgroup.cpp
@@ -367,59 +367,70 @@
// Returns 0 if there are no processes in the process cgroup left to kill
// Returns -1 on error
static int DoKillProcessGroupOnce(const char* cgroup, uid_t uid, int initialPid, int signal) {
- auto path = ConvertUidPidToPath(cgroup, uid, initialPid) + PROCESSGROUP_CGROUP_PROCS_FILE;
- std::unique_ptr<FILE, decltype(&fclose)> fd(fopen(path.c_str(), "re"), fclose);
- if (!fd) {
- if (errno == ENOENT) {
- // This happens when process is already dead
- return 0;
- }
- PLOG(WARNING) << __func__ << " failed to open process cgroup uid " << uid << " pid "
- << initialPid;
- return -1;
- }
-
// We separate all of the pids in the cgroup into those pids that are also the leaders of
// process groups (stored in the pgids set) and those that are not (stored in the pids set).
std::set<pid_t> pgids;
pgids.emplace(initialPid);
std::set<pid_t> pids;
- pid_t pid;
+ std::unique_ptr<FILE, decltype(&fclose)> fd(nullptr, fclose);
+
+ if (CgroupsAvailable()) {
+ auto path = ConvertUidPidToPath(cgroup, uid, initialPid) + PROCESSGROUP_CGROUP_PROCS_FILE;
+ fd.reset(fopen(path.c_str(), "re"));
+ if (!fd) {
+ if (errno == ENOENT) {
+ // This happens when process is already dead
+ return 0;
+ }
+ PLOG(WARNING) << __func__ << " failed to open process cgroup uid " << uid << " pid "
+ << initialPid;
+ return -1;
+ }
+ pid_t pid;
+ bool file_is_empty = true;
+ while (fscanf(fd.get(), "%d\n", &pid) == 1 && pid >= 0) {
+ file_is_empty = false;
+ if (pid == 0) {
+ // Should never happen... but if it does, trying to kill this
+ // will boomerang right back and kill us! Let's not let that happen.
+ LOG(WARNING)
+ << "Yikes, we've been told to kill pid 0! How about we don't do that?";
+ continue;
+ }
+ pid_t pgid = getpgid(pid);
+ if (pgid == -1) PLOG(ERROR) << "getpgid(" << pid << ") failed";
+ if (pgid == pid) {
+ pgids.emplace(pid);
+ } else {
+ pids.emplace(pid);
+ }
+ }
+ if (file_is_empty) {
+ // This happens when process is already dead
+ return 0;
+ }
+
+ // Erase all pids that will be killed when we kill the process groups.
+ for (auto it = pids.begin(); it != pids.end();) {
+ pid_t pgid = getpgid(*it);
+ if (pgids.count(pgid) == 1) {
+ it = pids.erase(it);
+ } else {
+ ++it;
+ }
+ }
+ }
+
int processes = 0;
- while (fscanf(fd.get(), "%d\n", &pid) == 1 && pid >= 0) {
- processes++;
- if (pid == 0) {
- // Should never happen... but if it does, trying to kill this
- // will boomerang right back and kill us! Let's not let that happen.
- LOG(WARNING) << "Yikes, we've been told to kill pid 0! How about we don't do that?";
- continue;
- }
- pid_t pgid = getpgid(pid);
- if (pgid == -1) PLOG(ERROR) << "getpgid(" << pid << ") failed";
- if (pgid == pid) {
- pgids.emplace(pid);
- } else {
- pids.emplace(pid);
- }
- }
-
- // Erase all pids that will be killed when we kill the process groups.
- for (auto it = pids.begin(); it != pids.end();) {
- pid_t pgid = getpgid(*it);
- if (pgids.count(pgid) == 1) {
- it = pids.erase(it);
- } else {
- ++it;
- }
- }
-
// Kill all process groups.
for (const auto pgid : pgids) {
LOG(VERBOSE) << "Killing process group " << -pgid << " in uid " << uid
<< " as part of process cgroup " << initialPid;
- if (kill(-pgid, signal) == -1 && errno != ESRCH) {
+ if (kill(-pgid, signal) == 0) {
+ processes++;
+ } else if (errno != ESRCH) {
PLOG(WARNING) << "kill(" << -pgid << ", " << signal << ") failed";
}
}
@@ -429,18 +440,22 @@
LOG(VERBOSE) << "Killing pid " << pid << " in uid " << uid << " as part of process cgroup "
<< initialPid;
- if (kill(pid, signal) == -1 && errno != ESRCH) {
+ if (kill(pid, signal) == 0) {
+ processes++;
+ } else if (errno != ESRCH) {
PLOG(WARNING) << "kill(" << pid << ", " << signal << ") failed";
}
}
- return feof(fd.get()) ? processes : -1;
+ return (!fd || feof(fd.get())) ? processes : -1;
}
static int KillProcessGroup(uid_t uid, int initialPid, int signal, int retries,
int* max_processes) {
std::string hierarchy_root_path;
- CgroupGetControllerPath(CGROUPV2_CONTROLLER_NAME, &hierarchy_root_path);
+ if (CgroupsAvailable()) {
+ CgroupGetControllerPath(CGROUPV2_CONTROLLER_NAME, &hierarchy_root_path);
+ }
const char* cgroup = hierarchy_root_path.c_str();
std::chrono::steady_clock::time_point start = std::chrono::steady_clock::now();
@@ -456,6 +471,11 @@
*max_processes = processes;
}
LOG(VERBOSE) << "Killed " << processes << " processes for processgroup " << initialPid;
+ if (!CgroupsAvailable()) {
+ // makes no sense to retry, because there are no cgroup_procs file
+ processes = 0; // no remaining processes
+ break;
+ }
if (retry > 0) {
std::this_thread::sleep_for(5ms);
--retry;
@@ -485,6 +505,11 @@
<< " in " << static_cast<int>(ms) << "ms";
}
+ if (!CgroupsAvailable()) {
+ // nothing to do here, if cgroups isn't available
+ return 0;
+ }
+
// 400 retries correspond to 2 secs max timeout
int err = RemoveProcessGroup(cgroup, uid, initialPid, 400);
diff --git a/libprocessgroup/profiles/task_profiles.json b/libprocessgroup/profiles/task_profiles.json
index 15f95fc..e44d3bf 100644
--- a/libprocessgroup/profiles/task_profiles.json
+++ b/libprocessgroup/profiles/task_profiles.json
@@ -80,17 +80,20 @@
{
"Name": "BfqWeight",
"Controller": "io",
- "File": "io.bfq.weight"
+ "File": "blkio.bfq.weight",
+ "FileV2": "io.bfq.weight"
},
{
"Name": "CfqGroupIdle",
"Controller": "io",
- "File": "io.group_idle"
+ "File": "blkio.group_idle",
+ "FileV2": "io.group_idle"
},
{
"Name": "CfqWeight",
"Controller": "io",
- "File": "io.weight"
+ "File": "blkio.weight",
+ "FileV2": "io.weight"
}
],
@@ -459,7 +462,7 @@
{
"Controller": "blkio",
"Path": "background"
- }
+ }
},
{
"Name": "SetAttribute",
@@ -499,7 +502,7 @@
{
"Controller": "blkio",
"Path": ""
- }
+ }
},
{
"Name": "SetAttribute",
@@ -539,7 +542,7 @@
{
"Controller": "blkio",
"Path": ""
- }
+ }
},
{
"Name": "SetAttribute",
@@ -579,7 +582,7 @@
{
"Controller": "blkio",
"Path": ""
- }
+ }
},
{
"Name": "SetAttribute",
@@ -806,6 +809,10 @@
"Profiles": [ "Dex2oatPerformance", "LowIoPriority", "TimerSlackHigh" ]
},
{
+ "Name": "Dex2OatBackground",
+ "Profiles": [ "Dex2OatBootComplete" ]
+ },
+ {
"Name": "OtaProfiles",
"Profiles": [ "ServiceCapacityLow", "LowIoPriority", "HighEnergySaving" ]
}
diff --git a/libstats/expresslog/.clang-format b/libstats/expresslog/.clang-format
new file mode 100644
index 0000000..cead3a0
--- /dev/null
+++ b/libstats/expresslog/.clang-format
@@ -0,0 +1,17 @@
+BasedOnStyle: Google
+AllowShortIfStatementsOnASingleLine: true
+AllowShortFunctionsOnASingleLine: false
+AllowShortLoopsOnASingleLine: true
+BinPackArguments: true
+BinPackParameters: true
+ColumnLimit: 100
+CommentPragmas: NOLINT:.*
+ContinuationIndentWidth: 8
+DerivePointerAlignment: false
+IndentWidth: 4
+PointerAlignment: Left
+TabWidth: 4
+AccessModifierOffset: -4
+IncludeCategories:
+ - Regex: '^"Log\.h"'
+ Priority: -1
diff --git a/libstats/expresslog/Android.bp b/libstats/expresslog/Android.bp
new file mode 100644
index 0000000..9cdc2c3
--- /dev/null
+++ b/libstats/expresslog/Android.bp
@@ -0,0 +1,71 @@
+
+//
+// Copyright (C) 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+package {
+ default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+cc_library {
+ name: "libexpresslog",
+ srcs: [
+ "Counter.cpp",
+ ],
+ cflags: [
+ "-DNAMESPACE_FOR_HASH_FUNCTIONS=farmhash",
+ "-Wall",
+ "-Werror",
+ ],
+ header_libs: [
+ "libtextclassifier_hash_headers",
+ ],
+ static_libs: [
+ "libstatslog_express",
+ "libtextclassifier_hash_static",
+ ],
+ shared_libs: [
+ "libbase",
+ "libstatssocket",
+ ],
+ export_include_dirs: ["include"],
+}
+
+genrule {
+ name: "statslog_express.h",
+ tools: ["stats-log-api-gen"],
+ cmd: "$(location stats-log-api-gen) --header $(genDir)/statslog_express.h --module expresslog --namespace android,expresslog",
+ out: [
+ "statslog_express.h",
+ ],
+}
+
+genrule {
+ name: "statslog_express.cpp",
+ tools: ["stats-log-api-gen"],
+ cmd: "$(location stats-log-api-gen) --cpp $(genDir)/statslog_express.cpp --module expresslog --namespace android,expresslog --importHeader statslog_express.h",
+ out: [
+ "statslog_express.cpp",
+ ],
+}
+
+cc_library_static {
+ name: "libstatslog_express",
+ generated_sources: ["statslog_express.cpp"],
+ generated_headers: ["statslog_express.h"],
+ export_generated_headers: ["statslog_express.h"],
+ shared_libs: [
+ "libstatssocket",
+ ],
+}
diff --git a/libstats/expresslog/Counter.cpp b/libstats/expresslog/Counter.cpp
new file mode 100644
index 0000000..bee1303
--- /dev/null
+++ b/libstats/expresslog/Counter.cpp
@@ -0,0 +1,32 @@
+//
+// Copyright (C) 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+#include "include/Counter.h"
+
+#include <statslog_express.h>
+#include <string.h>
+#include <utils/hash/farmhash.h>
+
+namespace android {
+namespace expresslog {
+
+void Counter::logIncrement(const char* metricName, int64_t amount) {
+ const int64_t metricIdHash = farmhash::Fingerprint64(metricName, strlen(metricName));
+ stats_write(EXPRESS_EVENT_REPORTED, metricIdHash, amount);
+}
+
+} // namespace expresslog
+} // namespace android
diff --git a/libstats/expresslog/include/Counter.h b/libstats/expresslog/include/Counter.h
new file mode 100644
index 0000000..57328f5
--- /dev/null
+++ b/libstats/expresslog/include/Counter.h
@@ -0,0 +1,30 @@
+//
+// Copyright (C) 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+#pragma once
+#include <stdint.h>
+
+namespace android {
+namespace expresslog {
+
+/** Counter encapsulates StatsD write API calls */
+class Counter final {
+public:
+ static void logIncrement(const char* metricId, int64_t amount = 1);
+};
+
+} // namespace expresslog
+} // namespace android
diff --git a/libutils/Android.bp b/libutils/Android.bp
index 26e1597..162f0f4 100644
--- a/libutils/Android.bp
+++ b/libutils/Android.bp
@@ -21,11 +21,13 @@
vendor_ramdisk_available: true,
host_supported: true,
native_bridge_supported: true,
+ defaults: [
+ "apex-lowest-min-sdk-version",
+ ],
apex_available: [
"//apex_available:platform",
"//apex_available:anyapex",
],
- min_sdk_version: "apex_inherit",
header_libs: [
"libbase_headers",
@@ -124,7 +126,10 @@
cc_defaults {
name: "libutils_impl_defaults",
- defaults: ["libutils_defaults"],
+ defaults: [
+ "libutils_defaults",
+ "apex-lowest-min-sdk-version",
+ ],
native_bridge_supported: true,
srcs: [
@@ -167,13 +172,8 @@
"//apex_available:anyapex",
"//apex_available:platform",
],
- min_sdk_version: "apex_inherit",
afdo: true,
-
- header_abi_checker: {
- diff_flags: ["-allow-adding-removing-weak-symbols"],
- },
}
cc_library {
@@ -184,6 +184,12 @@
enabled: true,
support_system_process: true,
},
+
+ header_abi_checker: {
+ // AFDO affects weak symbols.
+ diff_flags: ["-allow-adding-removing-weak-symbols"],
+ ref_dump_dirs: ["abi-dumps"],
+ },
}
cc_library {
diff --git a/libutils/abi-dumps/arm64/source-based/libutils.so.lsdump b/libutils/abi-dumps/arm64/source-based/libutils.so.lsdump
new file mode 100644
index 0000000..c89af9e
--- /dev/null
+++ b/libutils/abi-dumps/arm64/source-based/libutils.so.lsdump
@@ -0,0 +1,15553 @@
+{
+ "array_types" :
+ [
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIA0_i",
+ "name" : "int[0]",
+ "referenced_type" : "_ZTIi",
+ "self_type" : "_ZTIA0_i",
+ "source_file" : "system/core/libcutils/include_outside_system/cutils/native_handle.h"
+ },
+ {
+ "alignment" : 2,
+ "linker_set_key" : "_ZTIA1_Ds",
+ "name" : "char16_t[1]",
+ "referenced_type" : "_ZTIDs",
+ "self_type" : "_ZTIA1_Ds",
+ "size" : 2,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIA20_c",
+ "name" : "char[20]",
+ "referenced_type" : "_ZTIc",
+ "self_type" : "_ZTIA20_c",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIA5121_h",
+ "name" : "unsigned char[5121]",
+ "referenced_type" : "_ZTIh",
+ "self_type" : "_ZTIA5121_h",
+ "size" : 5121,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIA8_j",
+ "name" : "unsigned int[8]",
+ "referenced_type" : "_ZTIj",
+ "self_type" : "_ZTIA8_j",
+ "size" : 32,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "linker_set_key" : "_ZTIA_f",
+ "name" : "float[]",
+ "referenced_type" : "_ZTIf",
+ "self_type" : "_ZTIA_f",
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ }
+ ],
+ "builtin_types" :
+ [
+ {
+ "alignment" : 4,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIDi",
+ "name" : "char32_t",
+ "referenced_type" : "_ZTIDi",
+ "self_type" : "_ZTIDi",
+ "size" : 4
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIDn",
+ "name" : "std::nullptr_t",
+ "referenced_type" : "_ZTIDn",
+ "self_type" : "_ZTIDn",
+ "size" : 8
+ },
+ {
+ "alignment" : 2,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIDs",
+ "name" : "char16_t",
+ "referenced_type" : "_ZTIDs",
+ "self_type" : "_ZTIDs",
+ "size" : 2
+ },
+ {
+ "alignment" : 1,
+ "is_integral" : true,
+ "linker_set_key" : "_ZTIa",
+ "name" : "signed char",
+ "referenced_type" : "_ZTIa",
+ "self_type" : "_ZTIa",
+ "size" : 1
+ },
+ {
+ "alignment" : 1,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIb",
+ "name" : "bool",
+ "referenced_type" : "_ZTIb",
+ "self_type" : "_ZTIb",
+ "size" : 1
+ },
+ {
+ "alignment" : 1,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIc",
+ "name" : "char",
+ "referenced_type" : "_ZTIc",
+ "self_type" : "_ZTIc",
+ "size" : 1
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTId",
+ "name" : "double",
+ "referenced_type" : "_ZTId",
+ "self_type" : "_ZTId",
+ "size" : 8
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIf",
+ "name" : "float",
+ "referenced_type" : "_ZTIf",
+ "self_type" : "_ZTIf",
+ "size" : 4
+ },
+ {
+ "alignment" : 1,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIh",
+ "name" : "unsigned char",
+ "referenced_type" : "_ZTIh",
+ "self_type" : "_ZTIh",
+ "size" : 1
+ },
+ {
+ "alignment" : 4,
+ "is_integral" : true,
+ "linker_set_key" : "_ZTIi",
+ "name" : "int",
+ "referenced_type" : "_ZTIi",
+ "self_type" : "_ZTIi",
+ "size" : 4
+ },
+ {
+ "alignment" : 4,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIj",
+ "name" : "unsigned int",
+ "referenced_type" : "_ZTIj",
+ "self_type" : "_ZTIj",
+ "size" : 4
+ },
+ {
+ "alignment" : 8,
+ "is_integral" : true,
+ "linker_set_key" : "_ZTIl",
+ "name" : "long",
+ "referenced_type" : "_ZTIl",
+ "self_type" : "_ZTIl",
+ "size" : 8
+ },
+ {
+ "alignment" : 8,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIm",
+ "name" : "unsigned long",
+ "referenced_type" : "_ZTIm",
+ "self_type" : "_ZTIm",
+ "size" : 8
+ },
+ {
+ "alignment" : 2,
+ "is_integral" : true,
+ "linker_set_key" : "_ZTIs",
+ "name" : "short",
+ "referenced_type" : "_ZTIs",
+ "self_type" : "_ZTIs",
+ "size" : 2
+ },
+ {
+ "alignment" : 2,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIt",
+ "name" : "unsigned short",
+ "referenced_type" : "_ZTIt",
+ "self_type" : "_ZTIt",
+ "size" : 2
+ },
+ {
+ "linker_set_key" : "_ZTIv",
+ "name" : "void",
+ "referenced_type" : "_ZTIv",
+ "self_type" : "_ZTIv"
+ },
+ {
+ "alignment" : 8,
+ "is_integral" : true,
+ "linker_set_key" : "_ZTIx",
+ "name" : "long long",
+ "referenced_type" : "_ZTIx",
+ "self_type" : "_ZTIx",
+ "size" : 8
+ },
+ {
+ "alignment" : 8,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIy",
+ "name" : "unsigned long long",
+ "referenced_type" : "_ZTIy",
+ "self_type" : "_ZTIy",
+ "size" : 8
+ }
+ ],
+ "elf_functions" :
+ [
+ {
+ "name" : "_Z24androidCreateThreadGetIDPFiPvES_PS_"
+ },
+ {
+ "name" : "_ZN7android10LogPrinter8printRawEPKc"
+ },
+ {
+ "name" : "_ZN7android10LogPrinter9printLineEPKc"
+ },
+ {
+ "name" : "_ZN7android10LogPrinterC1EPKc19android_LogPriorityS2_b"
+ },
+ {
+ "name" : "_ZN7android10LogPrinterC2EPKc19android_LogPriorityS2_b"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl11appendArrayEPKvm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl11setCapacityEm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl12appendVectorERKS0_"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl13editArrayImplEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl13finish_vectorEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl13insertArrayAtEPKvmm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl13removeItemsAtEmm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl14insertVectorAtERKS0_m"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl15release_storageEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl16editItemLocationEm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl3addEPKv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl3addEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl3popEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl4pushEPKv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl4pushEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl4sortEPFiPKvS2_E"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl4sortEPFiPKvS2_PvES3_"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl5_growEmm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl5clearEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl6resizeEm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl7_shrinkEmm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl8insertAtEPKvmm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl8insertAtEmm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl9replaceAtEPKvm"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl9replaceAtEm"
+ },
+ {
+ "name" : "_ZN7android10VectorImplC2ERKS0_"
+ },
+ {
+ "name" : "_ZN7android10VectorImplC2Emj"
+ },
+ {
+ "name" : "_ZN7android10VectorImplD0Ev"
+ },
+ {
+ "name" : "_ZN7android10VectorImplD1Ev"
+ },
+ {
+ "name" : "_ZN7android10VectorImplD2Ev"
+ },
+ {
+ "name" : "_ZN7android10VectorImplaSERKS0_"
+ },
+ {
+ "name" : "_ZN7android11uptimeNanosEv"
+ },
+ {
+ "name" : "_ZN7android12NativeHandle6createEP13native_handleb"
+ },
+ {
+ "name" : "_ZN7android12NativeHandleC1EP13native_handleb"
+ },
+ {
+ "name" : "_ZN7android12NativeHandleC2EP13native_handleb"
+ },
+ {
+ "name" : "_ZN7android12NativeHandleD1Ev"
+ },
+ {
+ "name" : "_ZN7android12NativeHandleD2Ev"
+ },
+ {
+ "name" : "_ZN7android12SharedBuffer5allocEm"
+ },
+ {
+ "name" : "_ZN7android12SharedBuffer7deallocEPKS0_"
+ },
+ {
+ "name" : "_ZN7android12uptimeMillisEv"
+ },
+ {
+ "name" : "_ZN7android13PrefixPrinter9printLineEPKc"
+ },
+ {
+ "name" : "_ZN7android13PrefixPrinterC1ERNS_7PrinterEPKc"
+ },
+ {
+ "name" : "_ZN7android13PrefixPrinterC2ERNS_7PrinterEPKc"
+ },
+ {
+ "name" : "_ZN7android14LooperCallbackD0Ev"
+ },
+ {
+ "name" : "_ZN7android14LooperCallbackD1Ev"
+ },
+ {
+ "name" : "_ZN7android14LooperCallbackD2Ev"
+ },
+ {
+ "name" : "_ZN7android14MessageHandlerD0Ev"
+ },
+ {
+ "name" : "_ZN7android14MessageHandlerD1Ev"
+ },
+ {
+ "name" : "_ZN7android14MessageHandlerD2Ev"
+ },
+ {
+ "name" : "_ZN7android14String8Printer9printLineEPKc"
+ },
+ {
+ "name" : "_ZN7android14String8PrinterC1EPNS_7String8EPKc"
+ },
+ {
+ "name" : "_ZN7android14String8PrinterC2EPNS_7String8EPKc"
+ },
+ {
+ "name" : "_ZN7android14sp_report_raceEv"
+ },
+ {
+ "name" : "_ZN7android14statusToStringEi"
+ },
+ {
+ "name" : "_ZN7android15elapsedRealtimeEv"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImpl3addEPKv"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImpl5mergeERKNS_10VectorImplE"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImpl5mergeERKS0_"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImpl6removeEPKv"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplC2ERKNS_10VectorImplE"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplC2Emj"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplD0Ev"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplD1Ev"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplD2Ev"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplaSERKS0_"
+ },
+ {
+ "name" : "_ZN7android17JenkinsHashWhitenEj"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandler13handleMessageERKNS_7MessageE"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandlerC1ERKNS_2wpINS_14MessageHandlerEEE"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandlerC2ERKNS_2wpINS_14MessageHandlerEEE"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandlerD0Ev"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandlerD1Ev"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandlerD2Ev"
+ },
+ {
+ "name" : "_ZN7android19JenkinsHashMixBytesEjPKhm"
+ },
+ {
+ "name" : "_ZN7android19elapsedRealtimeNanoEv"
+ },
+ {
+ "name" : "_ZN7android20JenkinsHashMixShortsEjPKtm"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallback11handleEventEiiPv"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallbackC1EPFiiiPvE"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallbackC2EPFiiiPvE"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallbackD0Ev"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallbackD1Ev"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallbackD2Ev"
+ },
+ {
+ "name" : "_ZN7android21report_sysprop_changeEv"
+ },
+ {
+ "name" : "_ZN7android23sp_report_stack_pointerEv"
+ },
+ {
+ "name" : "_ZN7android27add_sysprop_change_callbackEPFvvEi"
+ },
+ {
+ "name" : "_ZN7android30get_report_sysprop_change_funcEv"
+ },
+ {
+ "name" : "_ZN7android47LightRefBase_reportIncStrongRequireStrongFailedEPKv"
+ },
+ {
+ "name" : "_ZN7android6Looper10initTLSKeyEv"
+ },
+ {
+ "name" : "_ZN7android6Looper11sendMessageERKNS_2spINS_14MessageHandlerEEERKNS_7MessageE"
+ },
+ {
+ "name" : "_ZN7android6Looper12getForThreadEv"
+ },
+ {
+ "name" : "_ZN7android6Looper12setForThreadERKNS_2spIS0_EE"
+ },
+ {
+ "name" : "_ZN7android6Looper14removeMessagesERKNS_2spINS_14MessageHandlerEEE"
+ },
+ {
+ "name" : "_ZN7android6Looper14removeMessagesERKNS_2spINS_14MessageHandlerEEEi"
+ },
+ {
+ "name" : "_ZN7android6Looper16threadDestructorEPv"
+ },
+ {
+ "name" : "_ZN7android6Looper17sendMessageAtTimeElRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE"
+ },
+ {
+ "name" : "_ZN7android6Looper18rebuildEpollLockedEv"
+ },
+ {
+ "name" : "_ZN7android6Looper18sendMessageDelayedElRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE"
+ },
+ {
+ "name" : "_ZN7android6Looper26removeSequenceNumberLockedEm"
+ },
+ {
+ "name" : "_ZN7android6Looper26scheduleEpollRebuildLockedEv"
+ },
+ {
+ "name" : "_ZN7android6Looper4wakeEv"
+ },
+ {
+ "name" : "_ZN7android6Looper5addFdEiiiPFiiiPvES1_"
+ },
+ {
+ "name" : "_ZN7android6Looper5addFdEiiiRKNS_2spINS_14LooperCallbackEEEPv"
+ },
+ {
+ "name" : "_ZN7android6Looper6awokenEv"
+ },
+ {
+ "name" : "_ZN7android6Looper7pollAllEiPiS1_PPv"
+ },
+ {
+ "name" : "_ZN7android6Looper7prepareEi"
+ },
+ {
+ "name" : "_ZN7android6Looper8pollOnceEiPiS1_PPv"
+ },
+ {
+ "name" : "_ZN7android6Looper8removeFdEi"
+ },
+ {
+ "name" : "_ZN7android6Looper9pollInnerEi"
+ },
+ {
+ "name" : "_ZN7android6LooperC1Eb"
+ },
+ {
+ "name" : "_ZN7android6LooperC2Eb"
+ },
+ {
+ "name" : "_ZN7android6LooperD0Ev"
+ },
+ {
+ "name" : "_ZN7android6LooperD1Ev"
+ },
+ {
+ "name" : "_ZN7android6LooperD2Ev"
+ },
+ {
+ "name" : "_ZN7android6Thread10readyToRunEv"
+ },
+ {
+ "name" : "_ZN7android6Thread11_threadLoopEPv"
+ },
+ {
+ "name" : "_ZN7android6Thread11requestExitEv"
+ },
+ {
+ "name" : "_ZN7android6Thread18requestExitAndWaitEv"
+ },
+ {
+ "name" : "_ZN7android6Thread3runEPKcim"
+ },
+ {
+ "name" : "_ZN7android6Thread4joinEv"
+ },
+ {
+ "name" : "_ZN7android6ThreadC2Eb"
+ },
+ {
+ "name" : "_ZN7android6ThreadD0Ev"
+ },
+ {
+ "name" : "_ZN7android6ThreadD1Ev"
+ },
+ {
+ "name" : "_ZN7android6ThreadD2Ev"
+ },
+ {
+ "name" : "_ZN7android7FileMap6adviseENS0_9MapAdviceE"
+ },
+ {
+ "name" : "_ZN7android7FileMap6createEPKcilmb"
+ },
+ {
+ "name" : "_ZN7android7FileMapC1EOS0_"
+ },
+ {
+ "name" : "_ZN7android7FileMapC1Ev"
+ },
+ {
+ "name" : "_ZN7android7FileMapC2EOS0_"
+ },
+ {
+ "name" : "_ZN7android7FileMapC2Ev"
+ },
+ {
+ "name" : "_ZN7android7FileMapD1Ev"
+ },
+ {
+ "name" : "_ZN7android7FileMapD2Ev"
+ },
+ {
+ "name" : "_ZN7android7FileMapaSEOS0_"
+ },
+ {
+ "name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "name" : "_ZN7android7PrinterC2Ev"
+ },
+ {
+ "name" : "_ZN7android7PrinterD0Ev"
+ },
+ {
+ "name" : "_ZN7android7PrinterD1Ev"
+ },
+ {
+ "name" : "_ZN7android7PrinterD2Ev"
+ },
+ {
+ "name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "name" : "_ZN7android7RefBase10renameRefsEmRKNS_16ReferenceRenamerE"
+ },
+ {
+ "name" : "_ZN7android7RefBase11renameRefIdEPNS0_12weakref_typeEPKvS4_"
+ },
+ {
+ "name" : "_ZN7android7RefBase11renameRefIdEPS0_PKvS3_"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type14attemptIncWeakEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type16attemptIncStrongEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type18incWeakRequireWeakEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type7decWeakEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type7incWeakEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type7trackMeEbb"
+ },
+ {
+ "name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase20extendObjectLifetimeEi"
+ },
+ {
+ "name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBaseC1Ev"
+ },
+ {
+ "name" : "_ZN7android7RefBaseC2Ev"
+ },
+ {
+ "name" : "_ZN7android7RefBaseD0Ev"
+ },
+ {
+ "name" : "_ZN7android7RefBaseD1Ev"
+ },
+ {
+ "name" : "_ZN7android7RefBaseD2Ev"
+ },
+ {
+ "name" : "_ZN7android7String810appendPathEPKc"
+ },
+ {
+ "name" : "_ZN7android7String810lockBufferEm"
+ },
+ {
+ "name" : "_ZN7android7String811real_appendEPKcm"
+ },
+ {
+ "name" : "_ZN7android7String812appendFormatEPKcz"
+ },
+ {
+ "name" : "_ZN7android7String812unlockBufferEm"
+ },
+ {
+ "name" : "_ZN7android7String812unlockBufferEv"
+ },
+ {
+ "name" : "_ZN7android7String813appendFormatVEPKcSt9__va_list"
+ },
+ {
+ "name" : "_ZN7android7String816convertToResPathEv"
+ },
+ {
+ "name" : "_ZN7android7String85clearEv"
+ },
+ {
+ "name" : "_ZN7android7String85setToEPKDim"
+ },
+ {
+ "name" : "_ZN7android7String85setToEPKDsm"
+ },
+ {
+ "name" : "_ZN7android7String85setToEPKc"
+ },
+ {
+ "name" : "_ZN7android7String85setToEPKcm"
+ },
+ {
+ "name" : "_ZN7android7String85setToERKS0_"
+ },
+ {
+ "name" : "_ZN7android7String86appendEPKc"
+ },
+ {
+ "name" : "_ZN7android7String86appendEPKcm"
+ },
+ {
+ "name" : "_ZN7android7String86appendERKS0_"
+ },
+ {
+ "name" : "_ZN7android7String86formatEPKcz"
+ },
+ {
+ "name" : "_ZN7android7String87formatVEPKcSt9__va_list"
+ },
+ {
+ "name" : "_ZN7android7String87toLowerEv"
+ },
+ {
+ "name" : "_ZN7android7String89removeAllEPKc"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKDi"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKDim"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKDs"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKDsm"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKc"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKcm"
+ },
+ {
+ "name" : "_ZN7android7String8C1ERKNS_8String16E"
+ },
+ {
+ "name" : "_ZN7android7String8C1ERKS0_"
+ },
+ {
+ "name" : "_ZN7android7String8C1Ev"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKDi"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKDim"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKDs"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKDsm"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKc"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKcm"
+ },
+ {
+ "name" : "_ZN7android7String8C2ERKNS_8String16E"
+ },
+ {
+ "name" : "_ZN7android7String8C2ERKS0_"
+ },
+ {
+ "name" : "_ZN7android7String8C2Ev"
+ },
+ {
+ "name" : "_ZN7android7String8D1Ev"
+ },
+ {
+ "name" : "_ZN7android7String8D2Ev"
+ },
+ {
+ "name" : "_ZN7android8String1610editResizeEm"
+ },
+ {
+ "name" : "_ZN7android8String1610replaceAllEDsDs"
+ },
+ {
+ "name" : "_ZN7android8String1613allocFromUTF8EPKcm"
+ },
+ {
+ "name" : "_ZN7android8String1614allocFromUTF16EPKDsm"
+ },
+ {
+ "name" : "_ZN7android8String164editEv"
+ },
+ {
+ "name" : "_ZN7android8String165allocEm"
+ },
+ {
+ "name" : "_ZN7android8String165setToEPKDs"
+ },
+ {
+ "name" : "_ZN7android8String165setToEPKDsm"
+ },
+ {
+ "name" : "_ZN7android8String165setToERKS0_"
+ },
+ {
+ "name" : "_ZN7android8String165setToERKS0_mm"
+ },
+ {
+ "name" : "_ZN7android8String166appendEPKDsm"
+ },
+ {
+ "name" : "_ZN7android8String166appendERKS0_"
+ },
+ {
+ "name" : "_ZN7android8String166insertEmPKDs"
+ },
+ {
+ "name" : "_ZN7android8String166insertEmPKDsm"
+ },
+ {
+ "name" : "_ZN7android8String167acquireEv"
+ },
+ {
+ "name" : "_ZN7android8String167releaseEv"
+ },
+ {
+ "name" : "_ZN7android8String16C1EOS0_"
+ },
+ {
+ "name" : "_ZN7android8String16C1EPKDs"
+ },
+ {
+ "name" : "_ZN7android8String16C1EPKDsm"
+ },
+ {
+ "name" : "_ZN7android8String16C1EPKc"
+ },
+ {
+ "name" : "_ZN7android8String16C1EPKcm"
+ },
+ {
+ "name" : "_ZN7android8String16C1ERKNS_7String8E"
+ },
+ {
+ "name" : "_ZN7android8String16C1ERKS0_"
+ },
+ {
+ "name" : "_ZN7android8String16C1ERKS0_mm"
+ },
+ {
+ "name" : "_ZN7android8String16C1Ev"
+ },
+ {
+ "name" : "_ZN7android8String16C2EOS0_"
+ },
+ {
+ "name" : "_ZN7android8String16C2EPKDs"
+ },
+ {
+ "name" : "_ZN7android8String16C2EPKDsm"
+ },
+ {
+ "name" : "_ZN7android8String16C2EPKc"
+ },
+ {
+ "name" : "_ZN7android8String16C2EPKcm"
+ },
+ {
+ "name" : "_ZN7android8String16C2ERKNS_7String8E"
+ },
+ {
+ "name" : "_ZN7android8String16C2ERKS0_"
+ },
+ {
+ "name" : "_ZN7android8String16C2ERKS0_mm"
+ },
+ {
+ "name" : "_ZN7android8String16C2Ev"
+ },
+ {
+ "name" : "_ZN7android8String16D1Ev"
+ },
+ {
+ "name" : "_ZN7android8String16D2Ev"
+ },
+ {
+ "name" : "_ZN7android8String16aSEOS0_"
+ },
+ {
+ "name" : "_ZN7android9FdPrinter9printLineEPKc"
+ },
+ {
+ "name" : "_ZN7android9FdPrinterC1EijPKc"
+ },
+ {
+ "name" : "_ZN7android9FdPrinterC2EijPKc"
+ },
+ {
+ "name" : "_ZN7android9StopWatch5resetEv"
+ },
+ {
+ "name" : "_ZN7android9StopWatchC1EPKci"
+ },
+ {
+ "name" : "_ZN7android9StopWatchC2EPKci"
+ },
+ {
+ "name" : "_ZN7android9StopWatchD1Ev"
+ },
+ {
+ "name" : "_ZN7android9StopWatchD2Ev"
+ },
+ {
+ "name" : "_ZN7android9Tokenizer12fromContentsERKNS_7String8EPKcPPS0_"
+ },
+ {
+ "name" : "_ZN7android9Tokenizer14skipDelimitersEPKc"
+ },
+ {
+ "name" : "_ZN7android9Tokenizer4openERKNS_7String8EPPS0_"
+ },
+ {
+ "name" : "_ZN7android9Tokenizer8nextLineEv"
+ },
+ {
+ "name" : "_ZN7android9Tokenizer9nextTokenEPKc"
+ },
+ {
+ "name" : "_ZN7android9TokenizerC1ERKNS_7String8EPNS_7FileMapEPcbm"
+ },
+ {
+ "name" : "_ZN7android9TokenizerC2ERKNS_7String8EPNS_7FileMapEPcbm"
+ },
+ {
+ "name" : "_ZN7android9TokenizerD1Ev"
+ },
+ {
+ "name" : "_ZN7android9TokenizerD2Ev"
+ },
+ {
+ "name" : "_ZNK7android10VectorImpl12itemLocationEm"
+ },
+ {
+ "name" : "_ZNK7android10VectorImpl8capacityEv"
+ },
+ {
+ "name" : "_ZNK7android10VectorImpl8itemSizeEv"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer10editResizeEm"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer11attemptEditEv"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer4editEv"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer5resetEm"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer7acquireEv"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer7releaseEj"
+ },
+ {
+ "name" : "_ZNK7android16SortedVectorImpl13_indexOrderOfEPKvPm"
+ },
+ {
+ "name" : "_ZNK7android16SortedVectorImpl7indexOfEPKv"
+ },
+ {
+ "name" : "_ZNK7android16SortedVectorImpl7orderOfEPKv"
+ },
+ {
+ "name" : "_ZNK7android6Looper20getAllowNonCallbacksEv"
+ },
+ {
+ "name" : "_ZNK7android6Looper7Request14getEpollEventsEv"
+ },
+ {
+ "name" : "_ZNK7android6Looper9isPollingEv"
+ },
+ {
+ "name" : "_ZNK7android6Thread11exitPendingEv"
+ },
+ {
+ "name" : "_ZNK7android6Thread6getTidEv"
+ },
+ {
+ "name" : "_ZNK7android6Thread9isRunningEv"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE10do_destroyEPvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE12do_constructEPvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE15do_move_forwardEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE16do_move_backwardEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE7do_copyEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE8do_splatEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE10do_destroyEPvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE12do_constructEPvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE15do_move_forwardEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE16do_move_backwardEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE7do_copyEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE8do_splatEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE10do_destroyEPvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE12do_constructEPvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE15do_move_forwardEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE16do_move_backwardEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE7do_copyEPvPKvm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE8do_splatEPvPKvm"
+ },
+ {
+ "name" : "_ZNK7android7RefBase10createWeakEPKv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase11getWeakRefsEv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase12weakref_type12getWeakCountEv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase12weakref_type7refBaseEv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase12weakref_type9printRefsEv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase14forceIncStrongEPKv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase14getStrongCountEv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase22incStrongRequireStrongEPKv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase9decStrongEPKv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase9incStrongEPKv"
+ },
+ {
+ "name" : "_ZNK7android7String810getPathDirEv"
+ },
+ {
+ "name" : "_ZNK7android7String811getBasePathEv"
+ },
+ {
+ "name" : "_ZNK7android7String811getPathLeafEv"
+ },
+ {
+ "name" : "_ZNK7android7String814find_extensionEv"
+ },
+ {
+ "name" : "_ZNK7android7String816getPathExtensionEv"
+ },
+ {
+ "name" : "_ZNK7android7String84findEPKcm"
+ },
+ {
+ "name" : "_ZNK7android7String86lengthEv"
+ },
+ {
+ "name" : "_ZNK7android7String88walkPathEPS0_"
+ },
+ {
+ "name" : "_ZNK7android8String1610startsWithEPKDs"
+ },
+ {
+ "name" : "_ZNK7android8String1610startsWithERKS0_"
+ },
+ {
+ "name" : "_ZNK7android8String1614isStaticStringEv"
+ },
+ {
+ "name" : "_ZNK7android8String1616staticStringSizeEv"
+ },
+ {
+ "name" : "_ZNK7android8String164sizeEv"
+ },
+ {
+ "name" : "_ZNK7android8String168containsEPKDs"
+ },
+ {
+ "name" : "_ZNK7android8String168findLastEDs"
+ },
+ {
+ "name" : "_ZNK7android8String169findFirstEDs"
+ },
+ {
+ "name" : "_ZNK7android9StopWatch11elapsedTimeEv"
+ },
+ {
+ "name" : "_ZNK7android9StopWatch4nameEv"
+ },
+ {
+ "name" : "_ZNK7android9Tokenizer11getLocationEv"
+ },
+ {
+ "name" : "_ZNK7android9Tokenizer19peekRemainderOfLineEv"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIimEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE14__erase_uniqueIiEEmRKT_"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIimEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIiJRiRKmEEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIimEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE6rehashEm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIimEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEE"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIimEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE8__rehashEm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeImN7android6Looper7RequestEEENS_22__unordered_map_hasherImS5_NS_4hashImEELb1EEENS_21__unordered_map_equalImS5_NS_8equal_toImEELb1EEENS_9allocatorIS5_EEE14__erase_uniqueImEEmRKT_"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeImN7android6Looper7RequestEEENS_22__unordered_map_hasherImS5_NS_4hashImEELb1EEENS_21__unordered_map_equalImS5_NS_8equal_toImEELb1EEENS_9allocatorIS5_EEE25__emplace_unique_key_argsImJRKmRS4_EEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEEbEERKT_DpOT0_"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeImN7android6Looper7RequestEEENS_22__unordered_map_hasherImS5_NS_4hashImEELb1EEENS_21__unordered_map_equalImS5_NS_8equal_toImEELb1EEENS_9allocatorIS5_EEE6rehashEm"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeImN7android6Looper7RequestEEENS_22__unordered_map_hasherImS5_NS_4hashImEELb1EEENS_21__unordered_map_equalImS5_NS_8equal_toImEELb1EEENS_9allocatorIS5_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS5_PvEEEE"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeImN7android6Looper7RequestEEENS_22__unordered_map_hasherImS5_NS_4hashImEELb1EEENS_21__unordered_map_equalImS5_NS_8equal_toImEELb1EEENS_9allocatorIS5_EEE8__rehashEm"
+ },
+ {
+ "name" : "_ZTv0_n24_N7android14LooperCallbackD0Ev"
+ },
+ {
+ "name" : "_ZTv0_n24_N7android14LooperCallbackD1Ev"
+ },
+ {
+ "name" : "_ZTv0_n24_N7android14MessageHandlerD0Ev"
+ },
+ {
+ "name" : "_ZTv0_n24_N7android14MessageHandlerD1Ev"
+ },
+ {
+ "name" : "_ZTv0_n24_N7android18WeakMessageHandlerD0Ev"
+ },
+ {
+ "name" : "_ZTv0_n24_N7android18WeakMessageHandlerD1Ev"
+ },
+ {
+ "name" : "_ZTv0_n24_N7android20SimpleLooperCallbackD0Ev"
+ },
+ {
+ "name" : "_ZTv0_n24_N7android20SimpleLooperCallbackD1Ev"
+ },
+ {
+ "name" : "_ZTv0_n24_N7android6ThreadD0Ev"
+ },
+ {
+ "name" : "_ZTv0_n24_N7android6ThreadD1Ev"
+ },
+ {
+ "name" : "androidCreateRawThreadEtc"
+ },
+ {
+ "name" : "androidCreateThread"
+ },
+ {
+ "name" : "androidCreateThreadEtc"
+ },
+ {
+ "name" : "androidGetThreadId"
+ },
+ {
+ "name" : "androidGetThreadPriority"
+ },
+ {
+ "name" : "androidSetCreateThreadFunc"
+ },
+ {
+ "name" : "androidSetThreadName"
+ },
+ {
+ "name" : "androidSetThreadPriority"
+ },
+ {
+ "name" : "do_report_sysprop_change"
+ },
+ {
+ "name" : "strcmp16"
+ },
+ {
+ "name" : "strlen16"
+ },
+ {
+ "name" : "strncmp16"
+ },
+ {
+ "name" : "strnlen16"
+ },
+ {
+ "name" : "strstr16"
+ },
+ {
+ "name" : "strzcmp16"
+ },
+ {
+ "name" : "systemTime"
+ },
+ {
+ "name" : "toMillisecondTimeoutDelay"
+ },
+ {
+ "name" : "utf16_to_utf8"
+ },
+ {
+ "name" : "utf16_to_utf8_length"
+ },
+ {
+ "name" : "utf32_from_utf8_at"
+ },
+ {
+ "name" : "utf32_to_utf8"
+ },
+ {
+ "name" : "utf32_to_utf8_length"
+ },
+ {
+ "name" : "utf8_to_utf16"
+ },
+ {
+ "name" : "utf8_to_utf16_length"
+ },
+ {
+ "name" : "utf8_to_utf16_no_null_terminator"
+ }
+ ],
+ "elf_objects" :
+ [
+ {
+ "name" : "_ZN7android7FileMap9mPageSizeE"
+ },
+ {
+ "name" : "_ZTCN7android18WeakMessageHandlerE0_NS_14MessageHandlerE"
+ },
+ {
+ "name" : "_ZTCN7android20SimpleLooperCallbackE0_NS_14LooperCallbackE"
+ },
+ {
+ "name" : "_ZTTN7android14LooperCallbackE"
+ },
+ {
+ "name" : "_ZTTN7android14MessageHandlerE"
+ },
+ {
+ "name" : "_ZTTN7android18WeakMessageHandlerE"
+ },
+ {
+ "name" : "_ZTTN7android20SimpleLooperCallbackE"
+ },
+ {
+ "name" : "_ZTTN7android6ThreadE"
+ },
+ {
+ "name" : "_ZTVN7android10LogPrinterE"
+ },
+ {
+ "name" : "_ZTVN7android10VectorImplE"
+ },
+ {
+ "name" : "_ZTVN7android13PrefixPrinterE"
+ },
+ {
+ "name" : "_ZTVN7android14LooperCallbackE"
+ },
+ {
+ "name" : "_ZTVN7android14MessageHandlerE"
+ },
+ {
+ "name" : "_ZTVN7android14String8PrinterE"
+ },
+ {
+ "name" : "_ZTVN7android16SortedVectorImplE"
+ },
+ {
+ "name" : "_ZTVN7android18WeakMessageHandlerE"
+ },
+ {
+ "name" : "_ZTVN7android20SimpleLooperCallbackE"
+ },
+ {
+ "name" : "_ZTVN7android6LooperE"
+ },
+ {
+ "name" : "_ZTVN7android6ThreadE"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZTVN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZTVN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZTVN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "name" : "_ZTVN7android7PrinterE"
+ },
+ {
+ "name" : "_ZTVN7android7RefBaseE"
+ },
+ {
+ "name" : "_ZTVN7android9FdPrinterE"
+ }
+ ],
+ "enum_types" :
+ [
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : -1,
+ "name" : "SP_DEFAULT"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "SP_BACKGROUND"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "SP_FOREGROUND"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "SP_SYSTEM"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "SP_AUDIO_APP"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "SP_AUDIO_SYS"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "SP_TOP_APP"
+ },
+ {
+ "enum_field_value" : 6,
+ "name" : "SP_RT_APP"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "SP_RESTRICTED"
+ },
+ {
+ "enum_field_value" : 8,
+ "name" : "SP_CNT"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "SP_MAX"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "SP_SYSTEM_DEFAULT"
+ }
+ ],
+ "linker_set_key" : "_ZTI11SchedPolicy",
+ "name" : "SchedPolicy",
+ "referenced_type" : "_ZTI11SchedPolicy",
+ "self_type" : "_ZTI11SchedPolicy",
+ "size" : 4,
+ "source_file" : "system/core/libprocessgroup/include/processgroup/sched_policy.h",
+ "underlying_type" : "_ZTIi"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_HDR_DOLBY_VISION"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_HDR_HDR10"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_HDR_HLG"
+ }
+ ],
+ "linker_set_key" : "_ZTI13android_hdr_t",
+ "name" : "android_hdr_t",
+ "referenced_type" : "_ZTI13android_hdr_t",
+ "self_type" : "_ZTI13android_hdr_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 4,
+ "name" : "HAL_HDR_HDR10_PLUS"
+ }
+ ],
+ "linker_set_key" : "_ZTI18android_hdr_v1_2_t",
+ "name" : "android_hdr_v1_2_t",
+ "referenced_type" : "_ZTI18android_hdr_v1_2_t",
+ "self_type" : "_ZTI18android_hdr_v1_2_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.2.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "ANDROID_LOG_UNKNOWN"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "ANDROID_LOG_DEFAULT"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "ANDROID_LOG_VERBOSE"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "ANDROID_LOG_DEBUG"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "ANDROID_LOG_INFO"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "ANDROID_LOG_WARN"
+ },
+ {
+ "enum_field_value" : 6,
+ "name" : "ANDROID_LOG_ERROR"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "ANDROID_LOG_FATAL"
+ },
+ {
+ "enum_field_value" : 8,
+ "name" : "ANDROID_LOG_SILENT"
+ }
+ ],
+ "linker_set_key" : "_ZTI19android_LogPriority",
+ "name" : "android_LogPriority",
+ "referenced_type" : "_ZTI19android_LogPriority",
+ "self_type" : "_ZTI19android_LogPriority",
+ "size" : 4,
+ "source_file" : "system/logging/liblog/include_vndk/android/log.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_DATASPACE_UNKNOWN"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_DATASPACE_ARBITRARY"
+ },
+ {
+ "enum_field_value" : 16,
+ "name" : "HAL_DATASPACE_STANDARD_SHIFT"
+ },
+ {
+ "enum_field_value" : 4128768,
+ "name" : "HAL_DATASPACE_STANDARD_MASK"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_DATASPACE_STANDARD_UNSPECIFIED"
+ },
+ {
+ "enum_field_value" : 65536,
+ "name" : "HAL_DATASPACE_STANDARD_BT709"
+ },
+ {
+ "enum_field_value" : 131072,
+ "name" : "HAL_DATASPACE_STANDARD_BT601_625"
+ },
+ {
+ "enum_field_value" : 196608,
+ "name" : "HAL_DATASPACE_STANDARD_BT601_625_UNADJUSTED"
+ },
+ {
+ "enum_field_value" : 262144,
+ "name" : "HAL_DATASPACE_STANDARD_BT601_525"
+ },
+ {
+ "enum_field_value" : 327680,
+ "name" : "HAL_DATASPACE_STANDARD_BT601_525_UNADJUSTED"
+ },
+ {
+ "enum_field_value" : 393216,
+ "name" : "HAL_DATASPACE_STANDARD_BT2020"
+ },
+ {
+ "enum_field_value" : 458752,
+ "name" : "HAL_DATASPACE_STANDARD_BT2020_CONSTANT_LUMINANCE"
+ },
+ {
+ "enum_field_value" : 524288,
+ "name" : "HAL_DATASPACE_STANDARD_BT470M"
+ },
+ {
+ "enum_field_value" : 589824,
+ "name" : "HAL_DATASPACE_STANDARD_FILM"
+ },
+ {
+ "enum_field_value" : 655360,
+ "name" : "HAL_DATASPACE_STANDARD_DCI_P3"
+ },
+ {
+ "enum_field_value" : 720896,
+ "name" : "HAL_DATASPACE_STANDARD_ADOBE_RGB"
+ },
+ {
+ "enum_field_value" : 22,
+ "name" : "HAL_DATASPACE_TRANSFER_SHIFT"
+ },
+ {
+ "enum_field_value" : 130023424,
+ "name" : "HAL_DATASPACE_TRANSFER_MASK"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_DATASPACE_TRANSFER_UNSPECIFIED"
+ },
+ {
+ "enum_field_value" : 4194304,
+ "name" : "HAL_DATASPACE_TRANSFER_LINEAR"
+ },
+ {
+ "enum_field_value" : 8388608,
+ "name" : "HAL_DATASPACE_TRANSFER_SRGB"
+ },
+ {
+ "enum_field_value" : 12582912,
+ "name" : "HAL_DATASPACE_TRANSFER_SMPTE_170M"
+ },
+ {
+ "enum_field_value" : 16777216,
+ "name" : "HAL_DATASPACE_TRANSFER_GAMMA2_2"
+ },
+ {
+ "enum_field_value" : 20971520,
+ "name" : "HAL_DATASPACE_TRANSFER_GAMMA2_6"
+ },
+ {
+ "enum_field_value" : 25165824,
+ "name" : "HAL_DATASPACE_TRANSFER_GAMMA2_8"
+ },
+ {
+ "enum_field_value" : 29360128,
+ "name" : "HAL_DATASPACE_TRANSFER_ST2084"
+ },
+ {
+ "enum_field_value" : 33554432,
+ "name" : "HAL_DATASPACE_TRANSFER_HLG"
+ },
+ {
+ "enum_field_value" : 27,
+ "name" : "HAL_DATASPACE_RANGE_SHIFT"
+ },
+ {
+ "enum_field_value" : 939524096,
+ "name" : "HAL_DATASPACE_RANGE_MASK"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_DATASPACE_RANGE_UNSPECIFIED"
+ },
+ {
+ "enum_field_value" : 134217728,
+ "name" : "HAL_DATASPACE_RANGE_FULL"
+ },
+ {
+ "enum_field_value" : 268435456,
+ "name" : "HAL_DATASPACE_RANGE_LIMITED"
+ },
+ {
+ "enum_field_value" : 402653184,
+ "name" : "HAL_DATASPACE_RANGE_EXTENDED"
+ },
+ {
+ "enum_field_value" : 512,
+ "name" : "HAL_DATASPACE_SRGB_LINEAR"
+ },
+ {
+ "enum_field_value" : 138477568,
+ "name" : "HAL_DATASPACE_V0_SRGB_LINEAR"
+ },
+ {
+ "enum_field_value" : 406913024,
+ "name" : "HAL_DATASPACE_V0_SCRGB_LINEAR"
+ },
+ {
+ "enum_field_value" : 513,
+ "name" : "HAL_DATASPACE_SRGB"
+ },
+ {
+ "enum_field_value" : 142671872,
+ "name" : "HAL_DATASPACE_V0_SRGB"
+ },
+ {
+ "enum_field_value" : 411107328,
+ "name" : "HAL_DATASPACE_V0_SCRGB"
+ },
+ {
+ "enum_field_value" : 257,
+ "name" : "HAL_DATASPACE_JFIF"
+ },
+ {
+ "enum_field_value" : 146931712,
+ "name" : "HAL_DATASPACE_V0_JFIF"
+ },
+ {
+ "enum_field_value" : 258,
+ "name" : "HAL_DATASPACE_BT601_625"
+ },
+ {
+ "enum_field_value" : 281149440,
+ "name" : "HAL_DATASPACE_V0_BT601_625"
+ },
+ {
+ "enum_field_value" : 259,
+ "name" : "HAL_DATASPACE_BT601_525"
+ },
+ {
+ "enum_field_value" : 281280512,
+ "name" : "HAL_DATASPACE_V0_BT601_525"
+ },
+ {
+ "enum_field_value" : 260,
+ "name" : "HAL_DATASPACE_BT709"
+ },
+ {
+ "enum_field_value" : 281083904,
+ "name" : "HAL_DATASPACE_V0_BT709"
+ },
+ {
+ "enum_field_value" : 139067392,
+ "name" : "HAL_DATASPACE_DCI_P3_LINEAR"
+ },
+ {
+ "enum_field_value" : 155844608,
+ "name" : "HAL_DATASPACE_DCI_P3"
+ },
+ {
+ "enum_field_value" : 139067392,
+ "name" : "HAL_DATASPACE_DISPLAY_P3_LINEAR"
+ },
+ {
+ "enum_field_value" : 143261696,
+ "name" : "HAL_DATASPACE_DISPLAY_P3"
+ },
+ {
+ "enum_field_value" : 151715840,
+ "name" : "HAL_DATASPACE_ADOBE_RGB"
+ },
+ {
+ "enum_field_value" : 138805248,
+ "name" : "HAL_DATASPACE_BT2020_LINEAR"
+ },
+ {
+ "enum_field_value" : 147193856,
+ "name" : "HAL_DATASPACE_BT2020"
+ },
+ {
+ "enum_field_value" : 163971072,
+ "name" : "HAL_DATASPACE_BT2020_PQ"
+ },
+ {
+ "enum_field_value" : 4096,
+ "name" : "HAL_DATASPACE_DEPTH"
+ },
+ {
+ "enum_field_value" : 4097,
+ "name" : "HAL_DATASPACE_SENSOR"
+ }
+ ],
+ "linker_set_key" : "_ZTI19android_dataspace_t",
+ "name" : "android_dataspace_t",
+ "referenced_type" : "_ZTI19android_dataspace_t",
+ "self_type" : "_ZTI19android_dataspace_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "FLEX_FORMAT_INVALID"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "FLEX_FORMAT_Y"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "FLEX_FORMAT_YCbCr"
+ },
+ {
+ "enum_field_value" : 1073741831,
+ "name" : "FLEX_FORMAT_YCbCrA"
+ },
+ {
+ "enum_field_value" : 7168,
+ "name" : "FLEX_FORMAT_RGB"
+ },
+ {
+ "enum_field_value" : 1073748992,
+ "name" : "FLEX_FORMAT_RGBA"
+ }
+ ],
+ "linker_set_key" : "_ZTI19android_flex_format",
+ "name" : "android_flex_format",
+ "referenced_type" : "_ZTI19android_flex_format",
+ "self_type" : "_ZTI19android_flex_format",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_TRANSFORM_FLIP_H"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_TRANSFORM_FLIP_V"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "HAL_TRANSFORM_ROT_90"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_TRANSFORM_ROT_180"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "HAL_TRANSFORM_ROT_270"
+ }
+ ],
+ "linker_set_key" : "_ZTI19android_transform_t",
+ "name" : "android_transform_t",
+ "referenced_type" : "_ZTI19android_transform_t",
+ "self_type" : "_ZTI19android_transform_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_COLOR_MODE_NATIVE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_COLOR_MODE_STANDARD_BT601_625"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_COLOR_MODE_STANDARD_BT601_625_UNADJUSTED"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_COLOR_MODE_STANDARD_BT601_525"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "HAL_COLOR_MODE_STANDARD_BT601_525_UNADJUSTED"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "HAL_COLOR_MODE_STANDARD_BT709"
+ },
+ {
+ "enum_field_value" : 6,
+ "name" : "HAL_COLOR_MODE_DCI_P3"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "HAL_COLOR_MODE_SRGB"
+ },
+ {
+ "enum_field_value" : 8,
+ "name" : "HAL_COLOR_MODE_ADOBE_RGB"
+ },
+ {
+ "enum_field_value" : 9,
+ "name" : "HAL_COLOR_MODE_DISPLAY_P3"
+ }
+ ],
+ "linker_set_key" : "_ZTI20android_color_mode_t",
+ "name" : "android_color_mode_t",
+ "referenced_type" : "_ZTI20android_color_mode_t",
+ "self_type" : "_ZTI20android_color_mode_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "SYSTEM_TIME_REALTIME"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "SYSTEM_TIME_MONOTONIC"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "SYSTEM_TIME_PROCESS"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "SYSTEM_TIME_THREAD"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "SYSTEM_TIME_BOOTTIME"
+ }
+ ],
+ "linker_set_key" : "_ZTI21$SYSTEM_TIME_BOOTTIME",
+ "name" : "(unnamed)",
+ "referenced_type" : "_ZTI21$SYSTEM_TIME_BOOTTIME",
+ "self_type" : "_ZTI21$SYSTEM_TIME_BOOTTIME",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Timers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "FLEX_COMPONENT_Y"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "FLEX_COMPONENT_Cb"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "FLEX_COMPONENT_Cr"
+ },
+ {
+ "enum_field_value" : 1024,
+ "name" : "FLEX_COMPONENT_R"
+ },
+ {
+ "enum_field_value" : 2048,
+ "name" : "FLEX_COMPONENT_G"
+ },
+ {
+ "enum_field_value" : 4096,
+ "name" : "FLEX_COMPONENT_B"
+ },
+ {
+ "enum_field_value" : 1073741824,
+ "name" : "FLEX_COMPONENT_A"
+ }
+ ],
+ "linker_set_key" : "_ZTI22android_flex_component",
+ "name" : "android_flex_component",
+ "referenced_type" : "_ZTI22android_flex_component",
+ "self_type" : "_ZTI22android_flex_component",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_PIXEL_FORMAT_RGBA_8888"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_PIXEL_FORMAT_RGBX_8888"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_PIXEL_FORMAT_RGB_888"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "HAL_PIXEL_FORMAT_RGB_565"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "HAL_PIXEL_FORMAT_BGRA_8888"
+ },
+ {
+ "enum_field_value" : 16,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_422_SP"
+ },
+ {
+ "enum_field_value" : 17,
+ "name" : "HAL_PIXEL_FORMAT_YCRCB_420_SP"
+ },
+ {
+ "enum_field_value" : 20,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_422_I"
+ },
+ {
+ "enum_field_value" : 22,
+ "name" : "HAL_PIXEL_FORMAT_RGBA_FP16"
+ },
+ {
+ "enum_field_value" : 32,
+ "name" : "HAL_PIXEL_FORMAT_RAW16"
+ },
+ {
+ "enum_field_value" : 33,
+ "name" : "HAL_PIXEL_FORMAT_BLOB"
+ },
+ {
+ "enum_field_value" : 34,
+ "name" : "HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED"
+ },
+ {
+ "enum_field_value" : 35,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_420_888"
+ },
+ {
+ "enum_field_value" : 36,
+ "name" : "HAL_PIXEL_FORMAT_RAW_OPAQUE"
+ },
+ {
+ "enum_field_value" : 37,
+ "name" : "HAL_PIXEL_FORMAT_RAW10"
+ },
+ {
+ "enum_field_value" : 38,
+ "name" : "HAL_PIXEL_FORMAT_RAW12"
+ },
+ {
+ "enum_field_value" : 43,
+ "name" : "HAL_PIXEL_FORMAT_RGBA_1010102"
+ },
+ {
+ "enum_field_value" : 538982489,
+ "name" : "HAL_PIXEL_FORMAT_Y8"
+ },
+ {
+ "enum_field_value" : 540422489,
+ "name" : "HAL_PIXEL_FORMAT_Y16"
+ },
+ {
+ "enum_field_value" : 842094169,
+ "name" : "HAL_PIXEL_FORMAT_YV12"
+ }
+ ],
+ "linker_set_key" : "_ZTI22android_pixel_format_t",
+ "name" : "android_pixel_format_t",
+ "referenced_type" : "_ZTI22android_pixel_format_t",
+ "self_type" : "_ZTI22android_pixel_format_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 19,
+ "name" : "ANDROID_PRIORITY_LOWEST"
+ },
+ {
+ "enum_field_value" : 10,
+ "name" : "ANDROID_PRIORITY_BACKGROUND"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "ANDROID_PRIORITY_NORMAL"
+ },
+ {
+ "enum_field_value" : -2,
+ "name" : "ANDROID_PRIORITY_FOREGROUND"
+ },
+ {
+ "enum_field_value" : -4,
+ "name" : "ANDROID_PRIORITY_DISPLAY"
+ },
+ {
+ "enum_field_value" : -8,
+ "name" : "ANDROID_PRIORITY_URGENT_DISPLAY"
+ },
+ {
+ "enum_field_value" : -10,
+ "name" : "ANDROID_PRIORITY_VIDEO"
+ },
+ {
+ "enum_field_value" : -16,
+ "name" : "ANDROID_PRIORITY_AUDIO"
+ },
+ {
+ "enum_field_value" : -19,
+ "name" : "ANDROID_PRIORITY_URGENT_AUDIO"
+ },
+ {
+ "enum_field_value" : -20,
+ "name" : "ANDROID_PRIORITY_HIGHEST"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "ANDROID_PRIORITY_DEFAULT"
+ },
+ {
+ "enum_field_value" : -1,
+ "name" : "ANDROID_PRIORITY_MORE_FAVORABLE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "ANDROID_PRIORITY_LESS_FAVORABLE"
+ }
+ ],
+ "linker_set_key" : "_ZTI23$ANDROID_PRIORITY_AUDIO",
+ "name" : "(unnamed)",
+ "referenced_type" : "_ZTI23$ANDROID_PRIORITY_AUDIO",
+ "self_type" : "_ZTI23$ANDROID_PRIORITY_AUDIO",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/thread_defs.h",
+ "underlying_type" : "_ZTIi"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 281411584,
+ "name" : "HAL_DATASPACE_BT2020_ITU"
+ },
+ {
+ "enum_field_value" : 298188800,
+ "name" : "HAL_DATASPACE_BT2020_ITU_PQ"
+ },
+ {
+ "enum_field_value" : 302383104,
+ "name" : "HAL_DATASPACE_BT2020_ITU_HLG"
+ },
+ {
+ "enum_field_value" : 168165376,
+ "name" : "HAL_DATASPACE_BT2020_HLG"
+ }
+ ],
+ "linker_set_key" : "_ZTI24android_dataspace_v1_1_t",
+ "name" : "android_dataspace_v1_1_t",
+ "referenced_type" : "_ZTI24android_dataspace_v1_1_t",
+ "self_type" : "_ZTI24android_dataspace_v1_1_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.1.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 142999552,
+ "name" : "HAL_DATASPACE_DISPLAY_BT2020"
+ },
+ {
+ "enum_field_value" : 4098,
+ "name" : "HAL_DATASPACE_DYNAMIC_DEPTH"
+ },
+ {
+ "enum_field_value" : 4099,
+ "name" : "HAL_DATASPACE_JPEG_APP_SEGMENTS"
+ },
+ {
+ "enum_field_value" : 4100,
+ "name" : "HAL_DATASPACE_HEIF"
+ }
+ ],
+ "linker_set_key" : "_ZTI24android_dataspace_v1_2_t",
+ "name" : "android_dataspace_v1_2_t",
+ "referenced_type" : "_ZTI24android_dataspace_v1_2_t",
+ "self_type" : "_ZTI24android_dataspace_v1_2_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.2.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 10,
+ "name" : "HAL_COLOR_MODE_BT2020"
+ },
+ {
+ "enum_field_value" : 11,
+ "name" : "HAL_COLOR_MODE_BT2100_PQ"
+ },
+ {
+ "enum_field_value" : 12,
+ "name" : "HAL_COLOR_MODE_BT2100_HLG"
+ }
+ ],
+ "linker_set_key" : "_ZTI25android_color_mode_v1_1_t",
+ "name" : "android_color_mode_v1_1_t",
+ "referenced_type" : "_ZTI25android_color_mode_v1_1_t",
+ "self_type" : "_ZTI25android_color_mode_v1_1_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.1.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_COLOR_TRANSFORM_IDENTITY"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_COLOR_TRANSFORM_ARBITRARY_MATRIX"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_COLOR_TRANSFORM_VALUE_INVERSE"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_COLOR_TRANSFORM_GRAYSCALE"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "HAL_COLOR_TRANSFORM_CORRECT_PROTANOPIA"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "HAL_COLOR_TRANSFORM_CORRECT_DEUTERANOPIA"
+ },
+ {
+ "enum_field_value" : 6,
+ "name" : "HAL_COLOR_TRANSFORM_CORRECT_TRITANOPIA"
+ }
+ ],
+ "linker_set_key" : "_ZTI25android_color_transform_t",
+ "name" : "android_color_transform_t",
+ "referenced_type" : "_ZTI25android_color_transform_t",
+ "self_type" : "_ZTI25android_color_transform_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 39,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_422_888"
+ },
+ {
+ "enum_field_value" : 40,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_444_888"
+ },
+ {
+ "enum_field_value" : 41,
+ "name" : "HAL_PIXEL_FORMAT_FLEX_RGB_888"
+ },
+ {
+ "enum_field_value" : 42,
+ "name" : "HAL_PIXEL_FORMAT_FLEX_RGBA_8888"
+ }
+ ],
+ "linker_set_key" : "_ZTI25android_pixel_format_sw_t",
+ "name" : "android_pixel_format_sw_t",
+ "referenced_type" : "_ZTI25android_pixel_format_sw_t",
+ "self_type" : "_ZTI25android_pixel_format_sw_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-sw.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 48,
+ "name" : "HAL_PIXEL_FORMAT_DEPTH_16"
+ },
+ {
+ "enum_field_value" : 49,
+ "name" : "HAL_PIXEL_FORMAT_DEPTH_24"
+ },
+ {
+ "enum_field_value" : 50,
+ "name" : "HAL_PIXEL_FORMAT_DEPTH_24_STENCIL_8"
+ },
+ {
+ "enum_field_value" : 51,
+ "name" : "HAL_PIXEL_FORMAT_DEPTH_32F"
+ },
+ {
+ "enum_field_value" : 52,
+ "name" : "HAL_PIXEL_FORMAT_DEPTH_32F_STENCIL_8"
+ },
+ {
+ "enum_field_value" : 53,
+ "name" : "HAL_PIXEL_FORMAT_STENCIL_8"
+ },
+ {
+ "enum_field_value" : 54,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_P010"
+ }
+ ],
+ "linker_set_key" : "_ZTI27android_pixel_format_v1_1_t",
+ "name" : "android_pixel_format_v1_1_t",
+ "referenced_type" : "_ZTI27android_pixel_format_v1_1_t",
+ "self_type" : "_ZTI27android_pixel_format_v1_1_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.1.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 55,
+ "name" : "HAL_PIXEL_FORMAT_HSV_888"
+ }
+ ],
+ "linker_set_key" : "_ZTI27android_pixel_format_v1_2_t",
+ "name" : "android_pixel_format_v1_2_t",
+ "referenced_type" : "_ZTI27android_pixel_format_v1_2_t",
+ "self_type" : "_ZTI27android_pixel_format_v1_2_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.2.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_RENDER_INTENT_COLORIMETRIC"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_RENDER_INTENT_ENHANCE"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_RENDER_INTENT_TONE_MAP_COLORIMETRIC"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_RENDER_INTENT_TONE_MAP_ENHANCE"
+ }
+ ],
+ "linker_set_key" : "_ZTI28android_render_intent_v1_1_t",
+ "name" : "android_render_intent_v1_1_t",
+ "referenced_type" : "_ZTI28android_render_intent_v1_1_t",
+ "self_type" : "_ZTI28android_render_intent_v1_1_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.1.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "LOG_ID_MIN"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "LOG_ID_MAIN"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "LOG_ID_RADIO"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "LOG_ID_EVENTS"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "LOG_ID_SYSTEM"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "LOG_ID_CRASH"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "LOG_ID_STATS"
+ },
+ {
+ "enum_field_value" : 6,
+ "name" : "LOG_ID_SECURITY"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "LOG_ID_KERNEL"
+ },
+ {
+ "enum_field_value" : 8,
+ "name" : "LOG_ID_MAX"
+ },
+ {
+ "enum_field_value" : 2147483647,
+ "name" : "LOG_ID_DEFAULT"
+ }
+ ],
+ "linker_set_key" : "_ZTI6log_id",
+ "name" : "log_id",
+ "referenced_type" : "_ZTI6log_id",
+ "self_type" : "_ZTI6log_id",
+ "size" : 4,
+ "source_file" : "system/logging/liblog/include_vndk/android/log.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::VectorImpl::HAS_TRIVIAL_CTOR"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "android::VectorImpl::HAS_TRIVIAL_DTOR"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "android::VectorImpl::HAS_TRIVIAL_COPY"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE",
+ "name" : "android::VectorImpl::(unnamed)",
+ "referenced_type" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE",
+ "self_type" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_pointer<android::sysprop_change_callback_info>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEE6$valueE",
+ "name" : "android::trait_pointer<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEE6$valueE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_pointer<android::Looper::MessageEnvelope>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEE6$valueE",
+ "name" : "android::trait_pointer<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEE6$valueE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_pointer<android::Looper::Response>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEE6$valueE",
+ "name" : "android::trait_pointer<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEE6$valueE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::OK"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::NO_ERROR"
+ },
+ {
+ "enum_field_value" : -2147483648,
+ "name" : "android::UNKNOWN_ERROR"
+ },
+ {
+ "enum_field_value" : -12,
+ "name" : "android::NO_MEMORY"
+ },
+ {
+ "enum_field_value" : -38,
+ "name" : "android::INVALID_OPERATION"
+ },
+ {
+ "enum_field_value" : -22,
+ "name" : "android::BAD_VALUE"
+ },
+ {
+ "enum_field_value" : -2147483647,
+ "name" : "android::BAD_TYPE"
+ },
+ {
+ "enum_field_value" : -2,
+ "name" : "android::NAME_NOT_FOUND"
+ },
+ {
+ "enum_field_value" : -1,
+ "name" : "android::PERMISSION_DENIED"
+ },
+ {
+ "enum_field_value" : -19,
+ "name" : "android::NO_INIT"
+ },
+ {
+ "enum_field_value" : -17,
+ "name" : "android::ALREADY_EXISTS"
+ },
+ {
+ "enum_field_value" : -32,
+ "name" : "android::DEAD_OBJECT"
+ },
+ {
+ "enum_field_value" : -2147483646,
+ "name" : "android::FAILED_TRANSACTION"
+ },
+ {
+ "enum_field_value" : -75,
+ "name" : "android::BAD_INDEX"
+ },
+ {
+ "enum_field_value" : -61,
+ "name" : "android::NOT_ENOUGH_DATA"
+ },
+ {
+ "enum_field_value" : -11,
+ "name" : "android::WOULD_BLOCK"
+ },
+ {
+ "enum_field_value" : -110,
+ "name" : "android::TIMED_OUT"
+ },
+ {
+ "enum_field_value" : -74,
+ "name" : "android::UNKNOWN_TRANSACTION"
+ },
+ {
+ "enum_field_value" : -2147483641,
+ "name" : "android::FDS_NOT_ALLOWED"
+ },
+ {
+ "enum_field_value" : -2147483640,
+ "name" : "android::UNEXPECTED_NULL"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android15$ALREADY_EXISTSE",
+ "name" : "android::(unnamed)",
+ "referenced_type" : "_ZTIN7android15$ALREADY_EXISTSE",
+ "self_type" : "_ZTIN7android15$ALREADY_EXISTSE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Errors.h",
+ "underlying_type" : "_ZTIi"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 19,
+ "name" : "android::PRIORITY_LOWEST"
+ },
+ {
+ "enum_field_value" : 10,
+ "name" : "android::PRIORITY_BACKGROUND"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::PRIORITY_NORMAL"
+ },
+ {
+ "enum_field_value" : -2,
+ "name" : "android::PRIORITY_FOREGROUND"
+ },
+ {
+ "enum_field_value" : -4,
+ "name" : "android::PRIORITY_DISPLAY"
+ },
+ {
+ "enum_field_value" : -8,
+ "name" : "android::PRIORITY_URGENT_DISPLAY"
+ },
+ {
+ "enum_field_value" : -16,
+ "name" : "android::PRIORITY_AUDIO"
+ },
+ {
+ "enum_field_value" : -19,
+ "name" : "android::PRIORITY_URGENT_AUDIO"
+ },
+ {
+ "enum_field_value" : -20,
+ "name" : "android::PRIORITY_HIGHEST"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::PRIORITY_DEFAULT"
+ },
+ {
+ "enum_field_value" : -1,
+ "name" : "android::PRIORITY_MORE_FAVORABLE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::PRIORITY_LESS_FAVORABLE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android15$PRIORITY_AUDIOE",
+ "name" : "android::(unnamed)",
+ "referenced_type" : "_ZTIN7android15$PRIORITY_AUDIOE",
+ "self_type" : "_ZTIN7android15$PRIORITY_AUDIOE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/ThreadDefs.h",
+ "underlying_type" : "_ZTIi"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_copy<android::sysprop_change_callback_info>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEE6$valueE",
+ "name" : "android::trait_trivial_copy<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_copy<android::Looper::MessageEnvelope>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEE6$valueE",
+ "name" : "android::trait_trivial_copy<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_copy<android::Looper::Response>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEE6$valueE",
+ "name" : "android::trait_trivial_copy<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<bool>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIbE6$valueE",
+ "name" : "android::trait_trivial_copy<bool>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIbE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIbE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIcE6$valueE",
+ "name" : "android::trait_trivial_copy<char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIcE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIcE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<double>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIdE6$valueE",
+ "name" : "android::trait_trivial_copy<double>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIdE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIdE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<float>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIfE6$valueE",
+ "name" : "android::trait_trivial_copy<float>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIfE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIfE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<unsigned char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIhE6$valueE",
+ "name" : "android::trait_trivial_copy<unsigned char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIhE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIhE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIiE6$valueE",
+ "name" : "android::trait_trivial_copy<int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIiE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIiE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<unsigned int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIjE6$valueE",
+ "name" : "android::trait_trivial_copy<unsigned int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIjE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIjE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIlE6$valueE",
+ "name" : "android::trait_trivial_copy<long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIlE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIlE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<unsigned long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyImE6$valueE",
+ "name" : "android::trait_trivial_copy<unsigned long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyImE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyImE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIsE6$valueE",
+ "name" : "android::trait_trivial_copy<short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIsE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIsE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<unsigned short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyItE6$valueE",
+ "name" : "android::trait_trivial_copy<unsigned short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyItE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyItE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<void>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIvE6$valueE",
+ "name" : "android::trait_trivial_copy<void>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIvE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIvE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIxE6$valueE",
+ "name" : "android::trait_trivial_copy<long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIxE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIxE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<unsigned long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIyE6$valueE",
+ "name" : "android::trait_trivial_copy<unsigned long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIyE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIyE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_ctor<android::sysprop_change_callback_info>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEE6$valueE",
+ "name" : "android::trait_trivial_ctor<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_ctor<android::Looper::MessageEnvelope>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "name" : "android::trait_trivial_ctor<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_ctor<android::Looper::Response>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEE6$valueE",
+ "name" : "android::trait_trivial_ctor<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<bool>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE",
+ "name" : "android::trait_trivial_ctor<bool>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE",
+ "name" : "android::trait_trivial_ctor<char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<double>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE",
+ "name" : "android::trait_trivial_ctor<double>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<float>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE",
+ "name" : "android::trait_trivial_ctor<float>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<unsigned char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE",
+ "name" : "android::trait_trivial_ctor<unsigned char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE",
+ "name" : "android::trait_trivial_ctor<int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<unsigned int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE",
+ "name" : "android::trait_trivial_ctor<unsigned int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE",
+ "name" : "android::trait_trivial_ctor<long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<unsigned long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorImE6$valueE",
+ "name" : "android::trait_trivial_ctor<unsigned long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorImE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorImE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE",
+ "name" : "android::trait_trivial_ctor<short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<unsigned short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorItE6$valueE",
+ "name" : "android::trait_trivial_ctor<unsigned short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorItE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorItE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<void>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE",
+ "name" : "android::trait_trivial_ctor<void>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE",
+ "name" : "android::trait_trivial_ctor<long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<unsigned long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE",
+ "name" : "android::trait_trivial_ctor<unsigned long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_dtor<android::sysprop_change_callback_info>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEE6$valueE",
+ "name" : "android::trait_trivial_dtor<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_dtor<android::Looper::MessageEnvelope>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "name" : "android::trait_trivial_dtor<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_dtor<android::Looper::Response>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEE6$valueE",
+ "name" : "android::trait_trivial_dtor<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<bool>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE",
+ "name" : "android::trait_trivial_dtor<bool>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE",
+ "name" : "android::trait_trivial_dtor<char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<double>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE",
+ "name" : "android::trait_trivial_dtor<double>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<float>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE",
+ "name" : "android::trait_trivial_dtor<float>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<unsigned char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE",
+ "name" : "android::trait_trivial_dtor<unsigned char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE",
+ "name" : "android::trait_trivial_dtor<int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<unsigned int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE",
+ "name" : "android::trait_trivial_dtor<unsigned int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE",
+ "name" : "android::trait_trivial_dtor<long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<unsigned long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorImE6$valueE",
+ "name" : "android::trait_trivial_dtor<unsigned long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorImE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorImE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE",
+ "name" : "android::trait_trivial_dtor<short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<unsigned short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorItE6$valueE",
+ "name" : "android::trait_trivial_dtor<unsigned short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorItE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorItE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<void>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE",
+ "name" : "android::trait_trivial_dtor<void>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE",
+ "name" : "android::trait_trivial_dtor<long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<unsigned long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE",
+ "name" : "android::trait_trivial_dtor<unsigned long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_move<android::sysprop_change_callback_info>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEE6$valueE",
+ "name" : "android::trait_trivial_move<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_move<android::Looper::MessageEnvelope>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEE6$valueE",
+ "name" : "android::trait_trivial_move<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_move<android::Looper::Response>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEE6$valueE",
+ "name" : "android::trait_trivial_move<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<android::String8>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE",
+ "name" : "android::trait_trivial_move<android::String8>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<android::String16>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_8String16EE6$valueE",
+ "name" : "android::trait_trivial_move<android::String16>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_8String16EE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_8String16EE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<bool>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIbE6$valueE",
+ "name" : "android::trait_trivial_move<bool>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIbE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIbE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIcE6$valueE",
+ "name" : "android::trait_trivial_move<char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIcE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIcE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<double>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIdE6$valueE",
+ "name" : "android::trait_trivial_move<double>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIdE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIdE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<float>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIfE6$valueE",
+ "name" : "android::trait_trivial_move<float>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIfE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIfE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<unsigned char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIhE6$valueE",
+ "name" : "android::trait_trivial_move<unsigned char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIhE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIhE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIiE6$valueE",
+ "name" : "android::trait_trivial_move<int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIiE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIiE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<unsigned int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIjE6$valueE",
+ "name" : "android::trait_trivial_move<unsigned int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIjE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIjE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIlE6$valueE",
+ "name" : "android::trait_trivial_move<long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIlE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIlE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<unsigned long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveImE6$valueE",
+ "name" : "android::trait_trivial_move<unsigned long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveImE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveImE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIsE6$valueE",
+ "name" : "android::trait_trivial_move<short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIsE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIsE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<unsigned short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveItE6$valueE",
+ "name" : "android::trait_trivial_move<unsigned short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveItE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveItE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<void>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIvE6$valueE",
+ "name" : "android::trait_trivial_move<void>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIvE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIvE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIxE6$valueE",
+ "name" : "android::trait_trivial_move<long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIxE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIxE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<unsigned long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIyE6$valueE",
+ "name" : "android::trait_trivial_move<unsigned long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIyE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIyE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::Mutex::PRIVATE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::Mutex::SHARED"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android5Mutex8$PRIVATEE",
+ "name" : "android::Mutex::(unnamed)",
+ "referenced_type" : "_ZTIN7android5Mutex8$PRIVATEE",
+ "self_type" : "_ZTIN7android5Mutex8$PRIVATEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::Looper::EVENT_INPUT"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "android::Looper::EVENT_OUTPUT"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "android::Looper::EVENT_ERROR"
+ },
+ {
+ "enum_field_value" : 8,
+ "name" : "android::Looper::EVENT_HANGUP"
+ },
+ {
+ "enum_field_value" : 16,
+ "name" : "android::Looper::EVENT_INVALID"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper12$EVENT_ERRORE",
+ "name" : "android::Looper::(unnamed)",
+ "referenced_type" : "_ZTIN7android6Looper12$EVENT_ERRORE",
+ "self_type" : "_ZTIN7android6Looper12$EVENT_ERRORE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : -1,
+ "name" : "android::Looper::POLL_WAKE"
+ },
+ {
+ "enum_field_value" : -2,
+ "name" : "android::Looper::POLL_CALLBACK"
+ },
+ {
+ "enum_field_value" : -3,
+ "name" : "android::Looper::POLL_TIMEOUT"
+ },
+ {
+ "enum_field_value" : -4,
+ "name" : "android::Looper::POLL_ERROR"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper14$POLL_CALLBACKE",
+ "name" : "android::Looper::(unnamed)",
+ "referenced_type" : "_ZTIN7android6Looper14$POLL_CALLBACKE",
+ "self_type" : "_ZTIN7android6Looper14$POLL_CALLBACKE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "underlying_type" : "_ZTIi"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::Looper::PREPARE_ALLOW_NON_CALLBACKS"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper28$PREPARE_ALLOW_NON_CALLBACKSE",
+ "name" : "android::Looper::(unnamed)",
+ "referenced_type" : "_ZTIN7android6Looper28$PREPARE_ALLOW_NON_CALLBACKSE",
+ "self_type" : "_ZTIN7android6Looper28$PREPARE_ALLOW_NON_CALLBACKSE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::RWLock::PRIVATE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::RWLock::SHARED"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6RWLock8$PRIVATEE",
+ "name" : "android::RWLock::(unnamed)",
+ "referenced_type" : "_ZTIN7android6RWLock8$PRIVATEE",
+ "self_type" : "_ZTIN7android6RWLock8$PRIVATEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::sysprop_change_callback_info>::is_pointer"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::sysprop_change_callback_info>::has_trivial_ctor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::sysprop_change_callback_info>::has_trivial_dtor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::sysprop_change_callback_info>::has_trivial_copy"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::sysprop_change_callback_info>::has_trivial_move"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEE17$has_trivial_copyE",
+ "name" : "android::traits<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEE17$has_trivial_copyE",
+ "self_type" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEE17$has_trivial_copyE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::MessageEnvelope>::is_pointer"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::MessageEnvelope>::has_trivial_ctor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::MessageEnvelope>::has_trivial_dtor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::MessageEnvelope>::has_trivial_copy"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::MessageEnvelope>::has_trivial_move"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEE17$has_trivial_copyE",
+ "name" : "android::traits<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEE17$has_trivial_copyE",
+ "self_type" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEE17$has_trivial_copyE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::Response>::is_pointer"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::Response>::has_trivial_ctor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::Response>::has_trivial_dtor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::Response>::has_trivial_copy"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::Response>::has_trivial_move"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6traitsINS_6Looper8ResponseEE17$has_trivial_copyE",
+ "name" : "android::traits<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android6traitsINS_6Looper8ResponseEE17$has_trivial_copyE",
+ "self_type" : "_ZTIN7android6traitsINS_6Looper8ResponseEE17$has_trivial_copyE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::FileMap::NORMAL"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::FileMap::RANDOM"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "android::FileMap::SEQUENTIAL"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "android::FileMap::WILLNEED"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "android::FileMap::DONTNEED"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7FileMap9MapAdviceE",
+ "name" : "android::FileMap::MapAdvice",
+ "referenced_type" : "_ZTIN7android7FileMap9MapAdviceE",
+ "self_type" : "_ZTIN7android7FileMap9MapAdviceE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "access" : "protected",
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::RefBase::FIRST_INC_STRONG"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE",
+ "name" : "android::RefBase::(unnamed)",
+ "referenced_type" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE",
+ "self_type" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "access" : "protected",
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::RefBase::OBJECT_LIFETIME_STRONG"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::RefBase::OBJECT_LIFETIME_WEAK"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::RefBase::OBJECT_LIFETIME_MASK"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE",
+ "name" : "android::RefBase::(unnamed)",
+ "referenced_type" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE",
+ "self_type" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::Condition::WAKE_UP_ONE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::Condition::WAKE_UP_ALL"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9Condition10WakeUpTypeE",
+ "name" : "android::Condition::WakeUpType",
+ "referenced_type" : "_ZTIN7android9Condition10WakeUpTypeE",
+ "self_type" : "_ZTIN7android9Condition10WakeUpTypeE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Condition.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::Condition::PRIVATE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::Condition::SHARED"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9Condition8$PRIVATEE",
+ "name" : "android::Condition::(unnamed)",
+ "referenced_type" : "_ZTIN7android9Condition8$PRIVATEE",
+ "self_type" : "_ZTIN7android9Condition8$PRIVATEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Condition.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "access" : "private",
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 20,
+ "name" : "android::FdPrinter::MAX_FORMAT_STRING"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9FdPrinter18$MAX_FORMAT_STRINGE",
+ "name" : "android::FdPrinter::(unnamed)",
+ "referenced_type" : "_ZTIN7android9FdPrinter18$MAX_FORMAT_STRINGE",
+ "self_type" : "_ZTIN7android9FdPrinter18$MAX_FORMAT_STRINGE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "underlying_type" : "_ZTIj"
+ }
+ ],
+ "function_types" :
+ [
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFiPFiPvES_PKcimPS_E",
+ "name" : "int (int (*)(void *), void *, const char *, int, unsigned long, void **)",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFiPvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "referenced_type" : "_ZTIFiPFiPvES_PKcimPS_E",
+ "return_type" : "_ZTIi",
+ "self_type" : "_ZTIFiPFiPvES_PKcimPS_E",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFiPKvS0_E",
+ "name" : "int (const void *, const void *)",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "referenced_type" : "_ZTIFiPKvS0_E",
+ "return_type" : "_ZTIi",
+ "self_type" : "_ZTIFiPKvS0_E",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFiPKvS0_PvE",
+ "name" : "int (const void *, const void *, void *)",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "referenced_type" : "_ZTIFiPKvS0_PvE",
+ "return_type" : "_ZTIi",
+ "self_type" : "_ZTIFiPKvS0_PvE",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFiPvE",
+ "name" : "int (void *)",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "referenced_type" : "_ZTIFiPvE",
+ "return_type" : "_ZTIi",
+ "self_type" : "_ZTIFiPvE",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFiiiPvE",
+ "name" : "int (int, int, void *)",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "referenced_type" : "_ZTIFiiiPvE",
+ "return_type" : "_ZTIi",
+ "self_type" : "_ZTIFiiiPvE",
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFvvE",
+ "name" : "void ()",
+ "referenced_type" : "_ZTIFvvE",
+ "return_type" : "_ZTIv",
+ "self_type" : "_ZTIFvvE",
+ "source_file" : "system/core/libutils/include/utils/misc.h"
+ }
+ ],
+ "functions" :
+ [
+ {
+ "access" : "private",
+ "function_name" : "android::LogPrinter::printRaw",
+ "linker_set_key" : "_ZN7android10LogPrinter8printRawEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10LogPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::LogPrinter::printLine",
+ "linker_set_key" : "_ZN7android10LogPrinter9printLineEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10LogPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::LogPrinter::LogPrinter",
+ "linker_set_key" : "_ZN7android10LogPrinterC1EPKc19android_LogPriorityS2_b",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10LogPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTI19android_LogPriority"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::LogPrinter::LogPrinter",
+ "linker_set_key" : "_ZN7android10LogPrinterC2EPKc19android_LogPriorityS2_b",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10LogPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTI19android_LogPriority"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::appendArray",
+ "linker_set_key" : "_ZN7android10VectorImpl11appendArrayEPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::setCapacity",
+ "linker_set_key" : "_ZN7android10VectorImpl11setCapacityEm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::appendVector",
+ "linker_set_key" : "_ZN7android10VectorImpl12appendVectorERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::editArrayImpl",
+ "linker_set_key" : "_ZN7android10VectorImpl13editArrayImplEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::finish_vector",
+ "linker_set_key" : "_ZN7android10VectorImpl13finish_vectorEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::insertArrayAt",
+ "linker_set_key" : "_ZN7android10VectorImpl13insertArrayAtEPKvmm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::removeItemsAt",
+ "linker_set_key" : "_ZN7android10VectorImpl13removeItemsAtEmm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::insertVectorAt",
+ "linker_set_key" : "_ZN7android10VectorImpl14insertVectorAtERKS0_m",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::VectorImpl::release_storage",
+ "linker_set_key" : "_ZN7android10VectorImpl15release_storageEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::editItemLocation",
+ "linker_set_key" : "_ZN7android10VectorImpl16editItemLocationEm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::add",
+ "linker_set_key" : "_ZN7android10VectorImpl3addEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::add",
+ "linker_set_key" : "_ZN7android10VectorImpl3addEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::pop",
+ "linker_set_key" : "_ZN7android10VectorImpl3popEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::push",
+ "linker_set_key" : "_ZN7android10VectorImpl4pushEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::push",
+ "linker_set_key" : "_ZN7android10VectorImpl4pushEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::sort",
+ "linker_set_key" : "_ZN7android10VectorImpl4sortEPFiPKvS2_E",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPFiPKvS0_E"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::sort",
+ "linker_set_key" : "_ZN7android10VectorImpl4sortEPFiPKvS2_PvES3_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPFiPKvS0_PvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::VectorImpl::_grow",
+ "linker_set_key" : "_ZN7android10VectorImpl5_growEmm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::clear",
+ "linker_set_key" : "_ZN7android10VectorImpl5clearEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::resize",
+ "linker_set_key" : "_ZN7android10VectorImpl6resizeEm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::VectorImpl::_shrink",
+ "linker_set_key" : "_ZN7android10VectorImpl7_shrinkEmm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::insertAt",
+ "linker_set_key" : "_ZN7android10VectorImpl8insertAtEPKvmm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::insertAt",
+ "linker_set_key" : "_ZN7android10VectorImpl8insertAtEmm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::replaceAt",
+ "linker_set_key" : "_ZN7android10VectorImpl9replaceAtEPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::replaceAt",
+ "linker_set_key" : "_ZN7android10VectorImpl9replaceAtEm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::VectorImpl",
+ "linker_set_key" : "_ZN7android10VectorImplC2ERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::VectorImpl",
+ "linker_set_key" : "_ZN7android10VectorImplC2Emj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::~VectorImpl",
+ "linker_set_key" : "_ZN7android10VectorImplD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::~VectorImpl",
+ "linker_set_key" : "_ZN7android10VectorImplD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::~VectorImpl",
+ "linker_set_key" : "_ZN7android10VectorImplD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::operator=",
+ "linker_set_key" : "_ZN7android10VectorImplaSERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIRN7android10VectorImplE",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::uptimeNanos",
+ "linker_set_key" : "_ZN7android11uptimeNanosEv",
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/SystemClock.h"
+ },
+ {
+ "function_name" : "android::NativeHandle::create",
+ "linker_set_key" : "_ZN7android12NativeHandle6createEP13native_handleb",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIP13native_handle"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::NativeHandle::NativeHandle",
+ "linker_set_key" : "_ZN7android12NativeHandleC1EP13native_handleb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android12NativeHandleE"
+ },
+ {
+ "referenced_type" : "_ZTIP13native_handle"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::NativeHandle::NativeHandle",
+ "linker_set_key" : "_ZN7android12NativeHandleC2EP13native_handleb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android12NativeHandleE"
+ },
+ {
+ "referenced_type" : "_ZTIP13native_handle"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::NativeHandle::~NativeHandle",
+ "linker_set_key" : "_ZN7android12NativeHandleD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android12NativeHandleE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::NativeHandle::~NativeHandle",
+ "linker_set_key" : "_ZN7android12NativeHandleD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android12NativeHandleE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "function_name" : "android::uptimeMillis",
+ "linker_set_key" : "_ZN7android12uptimeMillisEv",
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/SystemClock.h"
+ },
+ {
+ "function_name" : "android::PrefixPrinter::printLine",
+ "linker_set_key" : "_ZN7android13PrefixPrinter9printLineEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android13PrefixPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::PrefixPrinter::PrefixPrinter",
+ "linker_set_key" : "_ZN7android13PrefixPrinterC1ERNS_7PrinterEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android13PrefixPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIRN7android7PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::PrefixPrinter::PrefixPrinter",
+ "linker_set_key" : "_ZN7android13PrefixPrinterC2ERNS_7PrinterEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android13PrefixPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIRN7android7PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::LooperCallback::~LooperCallback",
+ "linker_set_key" : "_ZN7android14LooperCallbackD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14LooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::LooperCallback::~LooperCallback",
+ "linker_set_key" : "_ZN7android14LooperCallbackD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14LooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::LooperCallback::~LooperCallback",
+ "linker_set_key" : "_ZN7android14LooperCallbackD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14LooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::MessageHandler::~MessageHandler",
+ "linker_set_key" : "_ZN7android14MessageHandlerD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14MessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::MessageHandler::~MessageHandler",
+ "linker_set_key" : "_ZN7android14MessageHandlerD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14MessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::MessageHandler::~MessageHandler",
+ "linker_set_key" : "_ZN7android14MessageHandlerD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14MessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::String8Printer::printLine",
+ "linker_set_key" : "_ZN7android14String8Printer9printLineEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14String8PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::String8Printer::String8Printer",
+ "linker_set_key" : "_ZN7android14String8PrinterC1EPNS_7String8EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14String8PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::String8Printer::String8Printer",
+ "linker_set_key" : "_ZN7android14String8PrinterC2EPNS_7String8EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14String8PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::statusToString",
+ "linker_set_key" : "_ZN7android14statusToStringEi",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTINSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE",
+ "source_file" : "system/core/libutils/include/utils/Errors.h"
+ },
+ {
+ "function_name" : "android::elapsedRealtime",
+ "linker_set_key" : "_ZN7android15elapsedRealtimeEv",
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/SystemClock.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::add",
+ "linker_set_key" : "_ZN7android16SortedVectorImpl3addEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::merge",
+ "linker_set_key" : "_ZN7android16SortedVectorImpl5mergeERKNS_10VectorImplE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::merge",
+ "linker_set_key" : "_ZN7android16SortedVectorImpl5mergeERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android16SortedVectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::remove",
+ "linker_set_key" : "_ZN7android16SortedVectorImpl6removeEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::SortedVectorImpl",
+ "linker_set_key" : "_ZN7android16SortedVectorImplC2ERKNS_10VectorImplE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::SortedVectorImpl",
+ "linker_set_key" : "_ZN7android16SortedVectorImplC2Emj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::~SortedVectorImpl",
+ "linker_set_key" : "_ZN7android16SortedVectorImplD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::~SortedVectorImpl",
+ "linker_set_key" : "_ZN7android16SortedVectorImplD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::~SortedVectorImpl",
+ "linker_set_key" : "_ZN7android16SortedVectorImplD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::operator=",
+ "linker_set_key" : "_ZN7android16SortedVectorImplaSERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android16SortedVectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIRN7android16SortedVectorImplE",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::JenkinsHashWhiten",
+ "linker_set_key" : "_ZN7android17JenkinsHashWhitenEj",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/JenkinsHash.h"
+ },
+ {
+ "function_name" : "android::WeakMessageHandler::handleMessage",
+ "linker_set_key" : "_ZN7android18WeakMessageHandler13handleMessageERKNS_7MessageE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7MessageE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::WeakMessageHandler::WeakMessageHandler",
+ "linker_set_key" : "_ZN7android18WeakMessageHandlerC1ERKNS_2wpINS_14MessageHandlerEEE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2wpINS_14MessageHandlerEEE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::WeakMessageHandler::WeakMessageHandler",
+ "linker_set_key" : "_ZN7android18WeakMessageHandlerC2ERKNS_2wpINS_14MessageHandlerEEE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2wpINS_14MessageHandlerEEE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::WeakMessageHandler::~WeakMessageHandler",
+ "linker_set_key" : "_ZN7android18WeakMessageHandlerD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::WeakMessageHandler::~WeakMessageHandler",
+ "linker_set_key" : "_ZN7android18WeakMessageHandlerD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::WeakMessageHandler::~WeakMessageHandler",
+ "linker_set_key" : "_ZN7android18WeakMessageHandlerD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::JenkinsHashMixBytes",
+ "linker_set_key" : "_ZN7android19JenkinsHashMixBytesEjPKhm",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPKh"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/JenkinsHash.h"
+ },
+ {
+ "function_name" : "android::elapsedRealtimeNano",
+ "linker_set_key" : "_ZN7android19elapsedRealtimeNanoEv",
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/SystemClock.h"
+ },
+ {
+ "function_name" : "android::JenkinsHashMixShorts",
+ "linker_set_key" : "_ZN7android20JenkinsHashMixShortsEjPKtm",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPKt"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/JenkinsHash.h"
+ },
+ {
+ "function_name" : "android::SimpleLooperCallback::handleEvent",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallback11handleEventEiiPv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::SimpleLooperCallback::SimpleLooperCallback",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallbackC1EPFiiiPvE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ },
+ {
+ "referenced_type" : "_ZTIPFiiiPvE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::SimpleLooperCallback::SimpleLooperCallback",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallbackC2EPFiiiPvE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ },
+ {
+ "referenced_type" : "_ZTIPFiiiPvE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::SimpleLooperCallback::~SimpleLooperCallback",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallbackD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::SimpleLooperCallback::~SimpleLooperCallback",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallbackD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::SimpleLooperCallback::~SimpleLooperCallback",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallbackD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::report_sysprop_change",
+ "linker_set_key" : "_ZN7android21report_sysprop_changeEv",
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/misc.h"
+ },
+ {
+ "function_name" : "android::add_sysprop_change_callback",
+ "linker_set_key" : "_ZN7android27add_sysprop_change_callbackEPFvvEi",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFvvE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/misc.h"
+ },
+ {
+ "function_name" : "android::LightRefBase_reportIncStrongRequireStrongFailed",
+ "linker_set_key" : "_ZN7android47LightRefBase_reportIncStrongRequireStrongFailedEPKv",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::initTLSKey",
+ "linker_set_key" : "_ZN7android6Looper10initTLSKeyEv",
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::sendMessage",
+ "linker_set_key" : "_ZN7android6Looper11sendMessageERKNS_2spINS_14MessageHandlerEEERKNS_7MessageE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7MessageE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::getForThread",
+ "linker_set_key" : "_ZN7android6Looper12getForThreadEv",
+ "return_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::setForThread",
+ "linker_set_key" : "_ZN7android6Looper12setForThreadERKNS_2spIS0_EE",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_6LooperEEE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::removeMessages",
+ "linker_set_key" : "_ZN7android6Looper14removeMessagesERKNS_2spINS_14MessageHandlerEEE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::removeMessages",
+ "linker_set_key" : "_ZN7android6Looper14removeMessagesERKNS_2spINS_14MessageHandlerEEEi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::threadDestructor",
+ "linker_set_key" : "_ZN7android6Looper16threadDestructorEPv",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::sendMessageAtTime",
+ "linker_set_key" : "_ZN7android6Looper17sendMessageAtTimeElRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIl"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7MessageE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::rebuildEpollLocked",
+ "linker_set_key" : "_ZN7android6Looper18rebuildEpollLockedEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::sendMessageDelayed",
+ "linker_set_key" : "_ZN7android6Looper18sendMessageDelayedElRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIl"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7MessageE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::removeSequenceNumberLocked",
+ "linker_set_key" : "_ZN7android6Looper26removeSequenceNumberLockedEm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::scheduleEpollRebuildLocked",
+ "linker_set_key" : "_ZN7android6Looper26scheduleEpollRebuildLockedEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::wake",
+ "linker_set_key" : "_ZN7android6Looper4wakeEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::addFd",
+ "linker_set_key" : "_ZN7android6Looper5addFdEiiiPFiiiPvES1_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPFiiiPvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::addFd",
+ "linker_set_key" : "_ZN7android6Looper5addFdEiiiRKNS_2spINS_14LooperCallbackEEEPv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14LooperCallbackEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::awoken",
+ "linker_set_key" : "_ZN7android6Looper6awokenEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::pollAll",
+ "linker_set_key" : "_ZN7android6Looper7pollAllEiPiS1_PPv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::prepare",
+ "linker_set_key" : "_ZN7android6Looper7prepareEi",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::pollOnce",
+ "linker_set_key" : "_ZN7android6Looper8pollOnceEiPiS1_PPv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::removeFd",
+ "linker_set_key" : "_ZN7android6Looper8removeFdEi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::pollInner",
+ "linker_set_key" : "_ZN7android6Looper9pollInnerEi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::Looper",
+ "linker_set_key" : "_ZN7android6LooperC1Eb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::Looper",
+ "linker_set_key" : "_ZN7android6LooperC2Eb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Looper::~Looper",
+ "linker_set_key" : "_ZN7android6LooperD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Looper::~Looper",
+ "linker_set_key" : "_ZN7android6LooperD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Looper::~Looper",
+ "linker_set_key" : "_ZN7android6LooperD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Thread::readyToRun",
+ "linker_set_key" : "_ZN7android6Thread10readyToRunEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Thread::_threadLoop",
+ "linker_set_key" : "_ZN7android6Thread11_threadLoopEPv",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::requestExit",
+ "linker_set_key" : "_ZN7android6Thread11requestExitEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::requestExitAndWait",
+ "linker_set_key" : "_ZN7android6Thread18requestExitAndWaitEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::run",
+ "linker_set_key" : "_ZN7android6Thread3runEPKcim",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::join",
+ "linker_set_key" : "_ZN7android6Thread4joinEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::Thread",
+ "linker_set_key" : "_ZN7android6ThreadC2Eb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::~Thread",
+ "linker_set_key" : "_ZN7android6ThreadD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::~Thread",
+ "linker_set_key" : "_ZN7android6ThreadD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::~Thread",
+ "linker_set_key" : "_ZN7android6ThreadD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::FileMap::advise",
+ "linker_set_key" : "_ZN7android7FileMap6adviseENS0_9MapAdviceE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTIN7android7FileMap9MapAdviceE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::create",
+ "linker_set_key" : "_ZN7android7FileMap6createEPKcilmb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIl"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::FileMap",
+ "linker_set_key" : "_ZN7android7FileMapC1EOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTION7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::FileMap",
+ "linker_set_key" : "_ZN7android7FileMapC1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::FileMap",
+ "linker_set_key" : "_ZN7android7FileMapC2EOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTION7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::FileMap",
+ "linker_set_key" : "_ZN7android7FileMapC2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::~FileMap",
+ "linker_set_key" : "_ZN7android7FileMapD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::~FileMap",
+ "linker_set_key" : "_ZN7android7FileMapD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::operator=",
+ "linker_set_key" : "_ZN7android7FileMapaSEOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTION7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIRN7android7FileMapE",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::Printer::printFormatLine",
+ "linker_set_key" : "_ZN7android7Printer15printFormatLineEPKcz",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Printer::Printer",
+ "linker_set_key" : "_ZN7android7PrinterC2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7PrinterE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Printer::~Printer",
+ "linker_set_key" : "_ZN7android7PrinterD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7PrinterE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Printer::~Printer",
+ "linker_set_key" : "_ZN7android7PrinterD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7PrinterE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Printer::~Printer",
+ "linker_set_key" : "_ZN7android7PrinterD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7PrinterE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::onFirstRef",
+ "linker_set_key" : "_ZN7android7RefBase10onFirstRefEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::RefBase::renameRefs",
+ "linker_set_key" : "_ZN7android7RefBase10renameRefsEmRKNS_16ReferenceRenamerE",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android16ReferenceRenamerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::RefBase::renameRefId",
+ "linker_set_key" : "_ZN7android7RefBase11renameRefIdEPNS0_12weakref_typeEPKvS4_",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::RefBase::renameRefId",
+ "linker_set_key" : "_ZN7android7RefBase11renameRefIdEPS0_PKvS3_",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::attemptIncWeak",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type14attemptIncWeakEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::attemptIncStrong",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type16attemptIncStrongEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::incWeakRequireWeak",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type18incWeakRequireWeakEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::decWeak",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type7decWeakEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::incWeak",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type7incWeakEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::trackMe",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type7trackMeEbb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::onLastWeakRef",
+ "linker_set_key" : "_ZN7android7RefBase13onLastWeakRefEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::onLastStrongRef",
+ "linker_set_key" : "_ZN7android7RefBase15onLastStrongRefEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::extendObjectLifetime",
+ "linker_set_key" : "_ZN7android7RefBase20extendObjectLifetimeEi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::onIncStrongAttempted",
+ "linker_set_key" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::RefBase",
+ "linker_set_key" : "_ZN7android7RefBaseC1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::RefBase",
+ "linker_set_key" : "_ZN7android7RefBaseC2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::~RefBase",
+ "linker_set_key" : "_ZN7android7RefBaseD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::~RefBase",
+ "linker_set_key" : "_ZN7android7RefBaseD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::~RefBase",
+ "linker_set_key" : "_ZN7android7RefBaseD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::String8::appendPath",
+ "linker_set_key" : "_ZN7android7String810appendPathEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIRN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::lockBuffer",
+ "linker_set_key" : "_ZN7android7String810lockBufferEm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIPc",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String8::real_append",
+ "linker_set_key" : "_ZN7android7String811real_appendEPKcm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::appendFormat",
+ "linker_set_key" : "_ZN7android7String812appendFormatEPKcz",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::unlockBuffer",
+ "linker_set_key" : "_ZN7android7String812unlockBufferEm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::unlockBuffer",
+ "linker_set_key" : "_ZN7android7String812unlockBufferEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::appendFormatV",
+ "linker_set_key" : "_ZN7android7String813appendFormatVEPKcSt9__va_list",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTISt9__va_list"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::convertToResPath",
+ "linker_set_key" : "_ZN7android7String816convertToResPathEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIRN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::clear",
+ "linker_set_key" : "_ZN7android7String85clearEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::setTo",
+ "linker_set_key" : "_ZN7android7String85setToEPKDim",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDi"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::setTo",
+ "linker_set_key" : "_ZN7android7String85setToEPKDsm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::setTo",
+ "linker_set_key" : "_ZN7android7String85setToEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::setTo",
+ "linker_set_key" : "_ZN7android7String85setToEPKcm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::setTo",
+ "linker_set_key" : "_ZN7android7String85setToERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::append",
+ "linker_set_key" : "_ZN7android7String86appendEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::append",
+ "linker_set_key" : "_ZN7android7String86appendEPKcm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::append",
+ "linker_set_key" : "_ZN7android7String86appendERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::format",
+ "linker_set_key" : "_ZN7android7String86formatEPKcz",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::formatV",
+ "linker_set_key" : "_ZN7android7String87formatVEPKcSt9__va_list",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTISt9__va_list"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::toLower",
+ "linker_set_key" : "_ZN7android7String87toLowerEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::removeAll",
+ "linker_set_key" : "_ZN7android7String89removeAllEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKDi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKDim",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDi"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKDsm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKcm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1ERKNS_8String16E",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1ERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKDi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKDim",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDi"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKDsm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKcm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2ERKNS_8String16E",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2ERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::~String8",
+ "linker_set_key" : "_ZN7android7String8D1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::~String8",
+ "linker_set_key" : "_ZN7android7String8D2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::editResize",
+ "linker_set_key" : "_ZN7android8String1610editResizeEm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::replaceAll",
+ "linker_set_key" : "_ZN7android8String1610replaceAllEDsDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIDs"
+ },
+ {
+ "referenced_type" : "_ZTIDs"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::allocFromUTF8",
+ "linker_set_key" : "_ZN7android8String1613allocFromUTF8EPKcm",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIPDs",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::allocFromUTF16",
+ "linker_set_key" : "_ZN7android8String1614allocFromUTF16EPKDsm",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIPDs",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::edit",
+ "linker_set_key" : "_ZN7android8String164editEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::alloc",
+ "linker_set_key" : "_ZN7android8String165allocEm",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::setTo",
+ "linker_set_key" : "_ZN7android8String165setToEPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::setTo",
+ "linker_set_key" : "_ZN7android8String165setToEPKDsm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::setTo",
+ "linker_set_key" : "_ZN7android8String165setToERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::setTo",
+ "linker_set_key" : "_ZN7android8String165setToERKS0_mm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::append",
+ "linker_set_key" : "_ZN7android8String166appendEPKDsm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::append",
+ "linker_set_key" : "_ZN7android8String166appendERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::insert",
+ "linker_set_key" : "_ZN7android8String166insertEmPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::insert",
+ "linker_set_key" : "_ZN7android8String166insertEmPKDsm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::acquire",
+ "linker_set_key" : "_ZN7android8String167acquireEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::release",
+ "linker_set_key" : "_ZN7android8String167releaseEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1EOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTION7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1EPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1EPKDsm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1EPKcm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1ERKNS_7String8E",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1ERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1ERKS0_mm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2EOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTION7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2EPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2EPKDsm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2EPKcm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2ERKNS_7String8E",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2ERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2ERKS0_mm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::~String16",
+ "linker_set_key" : "_ZN7android8String16D1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::~String16",
+ "linker_set_key" : "_ZN7android8String16D2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::operator=",
+ "linker_set_key" : "_ZN7android8String16aSEOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTION7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIRN7android8String16E",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::FdPrinter::printLine",
+ "linker_set_key" : "_ZN7android9FdPrinter9printLineEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9FdPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::FdPrinter::FdPrinter",
+ "linker_set_key" : "_ZN7android9FdPrinterC1EijPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9FdPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::FdPrinter::FdPrinter",
+ "linker_set_key" : "_ZN7android9FdPrinterC2EijPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9FdPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::StopWatch::reset",
+ "linker_set_key" : "_ZN7android9StopWatch5resetEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9StopWatchE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::StopWatch::StopWatch",
+ "linker_set_key" : "_ZN7android9StopWatchC1EPKci",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9StopWatchE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::StopWatch::StopWatch",
+ "linker_set_key" : "_ZN7android9StopWatchC2EPKci",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9StopWatchE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::StopWatch::~StopWatch",
+ "linker_set_key" : "_ZN7android9StopWatchD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9StopWatchE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::StopWatch::~StopWatch",
+ "linker_set_key" : "_ZN7android9StopWatchD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9StopWatchE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::fromContents",
+ "linker_set_key" : "_ZN7android9Tokenizer12fromContentsERKNS_7String8EPKcPPS0_",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIPPN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::skipDelimiters",
+ "linker_set_key" : "_ZN7android9Tokenizer14skipDelimitersEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::open",
+ "linker_set_key" : "_ZN7android9Tokenizer4openERKNS_7String8EPPS0_",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPPN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::nextLine",
+ "linker_set_key" : "_ZN7android9Tokenizer8nextLineEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::nextToken",
+ "linker_set_key" : "_ZN7android9Tokenizer9nextTokenEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Tokenizer::Tokenizer",
+ "linker_set_key" : "_ZN7android9TokenizerC1ERKNS_7String8EPNS_7FileMapEPcbm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Tokenizer::Tokenizer",
+ "linker_set_key" : "_ZN7android9TokenizerC2ERKNS_7String8EPNS_7FileMapEPcbm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::~Tokenizer",
+ "linker_set_key" : "_ZN7android9TokenizerD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::~Tokenizer",
+ "linker_set_key" : "_ZN7android9TokenizerD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::itemLocation",
+ "linker_set_key" : "_ZNK7android10VectorImpl12itemLocationEm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIPKv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::capacity",
+ "linker_set_key" : "_ZNK7android10VectorImpl8capacityEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIm",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::VectorImpl::itemSize",
+ "linker_set_key" : "_ZNK7android10VectorImpl8itemSizeEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIm",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::SortedVectorImpl::_indexOrderOf",
+ "linker_set_key" : "_ZNK7android16SortedVectorImpl13_indexOrderOfEPKvPm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::indexOf",
+ "linker_set_key" : "_ZNK7android16SortedVectorImpl7indexOfEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::orderOf",
+ "linker_set_key" : "_ZNK7android16SortedVectorImpl7orderOfEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIm",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::Looper::getAllowNonCallbacks",
+ "linker_set_key" : "_ZNK7android6Looper20getAllowNonCallbacksEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::Request::getEpollEvents",
+ "linker_set_key" : "_ZNK7android6Looper7Request14getEpollEventsEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6Looper7RequestE"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::isPolling",
+ "linker_set_key" : "_ZNK7android6Looper9isPollingEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Thread::exitPending",
+ "linker_set_key" : "_ZNK7android6Thread11exitPendingEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::getTid",
+ "linker_set_key" : "_ZNK7android6Thread6getTidEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::isRunning",
+ "linker_set_key" : "_ZNK7android6Thread9isRunningEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_destroy",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE10do_destroyEPvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_construct",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE12do_constructEPvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_move_forward",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE15do_move_forwardEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_move_backward",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE16do_move_backwardEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_copy",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE7do_copyEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_splat",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE8do_splatEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_destroy",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE10do_destroyEPvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_construct",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE12do_constructEPvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_move_forward",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE15do_move_forwardEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_move_backward",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE16do_move_backwardEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_copy",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE7do_copyEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_splat",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE8do_splatEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_destroy",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE10do_destroyEPvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_construct",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE12do_constructEPvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_move_forward",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE15do_move_forwardEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_move_backward",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE16do_move_backwardEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_copy",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE7do_copyEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_splat",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE8do_splatEPvPKvm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "function_name" : "android::RefBase::createWeak",
+ "linker_set_key" : "_ZNK7android7RefBase10createWeakEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIPN7android7RefBase12weakref_typeE",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::getWeakRefs",
+ "linker_set_key" : "_ZNK7android7RefBase11getWeakRefsEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIPN7android7RefBase12weakref_typeE",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::getWeakCount",
+ "linker_set_key" : "_ZNK7android7RefBase12weakref_type12getWeakCountEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBase12weakref_typeE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::refBase",
+ "linker_set_key" : "_ZNK7android7RefBase12weakref_type7refBaseEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBase12weakref_typeE"
+ }
+ ],
+ "return_type" : "_ZTIPN7android7RefBaseE",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::printRefs",
+ "linker_set_key" : "_ZNK7android7RefBase12weakref_type9printRefsEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBase12weakref_typeE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::forceIncStrong",
+ "linker_set_key" : "_ZNK7android7RefBase14forceIncStrongEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::getStrongCount",
+ "linker_set_key" : "_ZNK7android7RefBase14getStrongCountEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::incStrongRequireStrong",
+ "linker_set_key" : "_ZNK7android7RefBase22incStrongRequireStrongEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::decStrong",
+ "linker_set_key" : "_ZNK7android7RefBase9decStrongEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::incStrong",
+ "linker_set_key" : "_ZNK7android7RefBase9incStrongEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::String8::getPathDir",
+ "linker_set_key" : "_ZNK7android7String810getPathDirEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::getBasePath",
+ "linker_set_key" : "_ZNK7android7String811getBasePathEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::getPathLeaf",
+ "linker_set_key" : "_ZNK7android7String811getPathLeafEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String8::find_extension",
+ "linker_set_key" : "_ZNK7android7String814find_extensionEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIPc",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::getPathExtension",
+ "linker_set_key" : "_ZNK7android7String816getPathExtensionEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::find",
+ "linker_set_key" : "_ZNK7android7String84findEPKcm",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::length",
+ "linker_set_key" : "_ZNK7android7String86lengthEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIm",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::walkPath",
+ "linker_set_key" : "_ZNK7android7String88walkPathEPS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String16::startsWith",
+ "linker_set_key" : "_ZNK7android8String1610startsWithEPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::startsWith",
+ "linker_set_key" : "_ZNK7android8String1610startsWithERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::isStaticString",
+ "linker_set_key" : "_ZNK7android8String1614isStaticStringEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::staticStringSize",
+ "linker_set_key" : "_ZNK7android8String1616staticStringSizeEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIm",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::size",
+ "linker_set_key" : "_ZNK7android8String164sizeEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIm",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::contains",
+ "linker_set_key" : "_ZNK7android8String168containsEPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::findLast",
+ "linker_set_key" : "_ZNK7android8String168findLastEDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIDs"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::findFirst",
+ "linker_set_key" : "_ZNK7android8String169findFirstEDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIDs"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::StopWatch::elapsedTime",
+ "linker_set_key" : "_ZNK7android9StopWatch11elapsedTimeEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android9StopWatchE"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::StopWatch::name",
+ "linker_set_key" : "_ZNK7android9StopWatch4nameEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android9StopWatchE"
+ }
+ ],
+ "return_type" : "_ZTIPKc",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::getLocation",
+ "linker_set_key" : "_ZNK7android9Tokenizer11getLocationEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::peekRemainderOfLine",
+ "linker_set_key" : "_ZNK7android9Tokenizer19peekRemainderOfLineEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "androidCreateRawThreadEtc",
+ "linker_set_key" : "androidCreateRawThreadEtc",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFiPvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidCreateThread",
+ "linker_set_key" : "androidCreateThread",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFiPvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidCreateThreadEtc",
+ "linker_set_key" : "androidCreateThreadEtc",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFiPvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidGetThreadId",
+ "linker_set_key" : "androidGetThreadId",
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidGetThreadPriority",
+ "linker_set_key" : "androidGetThreadPriority",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidSetCreateThreadFunc",
+ "linker_set_key" : "androidSetCreateThreadFunc",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFiPFiPvES_PKcimPS_E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidSetThreadName",
+ "linker_set_key" : "androidSetThreadName",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidSetThreadPriority",
+ "linker_set_key" : "androidSetThreadPriority",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "strcmp16",
+ "linker_set_key" : "strcmp16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "strlen16",
+ "linker_set_key" : "strlen16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIm",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "strncmp16",
+ "linker_set_key" : "strncmp16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "strnlen16",
+ "linker_set_key" : "strnlen16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIm",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "strstr16",
+ "linker_set_key" : "strstr16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIPDs",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "strzcmp16",
+ "linker_set_key" : "strzcmp16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "systemTime",
+ "linker_set_key" : "systemTime",
+ "parameters" :
+ [
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/Timers.h"
+ },
+ {
+ "function_name" : "toMillisecondTimeoutDelay",
+ "linker_set_key" : "toMillisecondTimeoutDelay",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIl"
+ },
+ {
+ "referenced_type" : "_ZTIl"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Timers.h"
+ },
+ {
+ "function_name" : "utf16_to_utf8",
+ "linker_set_key" : "utf16_to_utf8",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf16_to_utf8_length",
+ "linker_set_key" : "utf16_to_utf8_length",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf32_from_utf8_at",
+ "linker_set_key" : "utf32_from_utf8_at",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPm"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf32_to_utf8",
+ "linker_set_key" : "utf32_to_utf8",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDi"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf32_to_utf8_length",
+ "linker_set_key" : "utf32_to_utf8_length",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDi"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf8_to_utf16",
+ "linker_set_key" : "utf8_to_utf16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKh"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIPDs",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf8_to_utf16_length",
+ "linker_set_key" : "utf8_to_utf16_length",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKh"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf8_to_utf16_no_null_terminator",
+ "linker_set_key" : "utf8_to_utf16_no_null_terminator",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKh"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "referenced_type" : "_ZTIPDs"
+ },
+ {
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "return_type" : "_ZTIPDs",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ }
+ ],
+ "global_vars" :
+ [
+ {
+ "access" : "private",
+ "linker_set_key" : "_ZN7android7FileMap9mPageSizeE",
+ "name" : "android::FileMap::mPageSize",
+ "referenced_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ }
+ ],
+ "lvalue_reference_types" :
+ [
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRA1_KDs",
+ "name" : "const char16_t (&)[1]",
+ "referenced_type" : "_ZTIA1_KDs",
+ "self_type" : "_ZTIRA1_KDs",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android10VectorImplE",
+ "name" : "const android::VectorImpl &",
+ "referenced_type" : "_ZTIKN7android10VectorImplE",
+ "self_type" : "_ZTIRKN7android10VectorImplE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android16ReferenceRenamerE",
+ "name" : "const android::ReferenceRenamer &",
+ "referenced_type" : "_ZTIKN7android16ReferenceRenamerE",
+ "self_type" : "_ZTIRKN7android16ReferenceRenamerE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android16SortedVectorImplE",
+ "name" : "const android::SortedVectorImpl &",
+ "referenced_type" : "_ZTIKN7android16SortedVectorImplE",
+ "self_type" : "_ZTIRKN7android16SortedVectorImplE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android28sysprop_change_callback_infoE",
+ "name" : "const android::sysprop_change_callback_info &",
+ "referenced_type" : "_ZTIKN7android28sysprop_change_callback_infoE",
+ "self_type" : "_ZTIRKN7android28sysprop_change_callback_infoE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android2spINS_14LooperCallbackEEE",
+ "name" : "const android::sp<android::LooperCallback> &",
+ "referenced_type" : "_ZTIKN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIRKN7android2spINS_14LooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android2spINS_14MessageHandlerEEE",
+ "name" : "const android::sp<android::MessageHandler> &",
+ "referenced_type" : "_ZTIKN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "const android::sp<android::SimpleLooperCallback> &",
+ "referenced_type" : "_ZTIKN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTIRKN7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android2spINS_6LooperEEE",
+ "name" : "const android::sp<android::Looper> &",
+ "referenced_type" : "_ZTIKN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIRKN7android2spINS_6LooperEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android2spINS_6ThreadEEE",
+ "name" : "const android::sp<android::Thread> &",
+ "referenced_type" : "_ZTIKN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIRKN7android2spINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android2wpINS_14MessageHandlerEEE",
+ "name" : "const android::wp<android::MessageHandler> &",
+ "referenced_type" : "_ZTIKN7android2wpINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIRKN7android2wpINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android6Looper15MessageEnvelopeE",
+ "name" : "const android::Looper::MessageEnvelope &",
+ "referenced_type" : "_ZTIKN7android6Looper15MessageEnvelopeE",
+ "self_type" : "_ZTIRKN7android6Looper15MessageEnvelopeE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android6Looper8ResponseE",
+ "name" : "const android::Looper::Response &",
+ "referenced_type" : "_ZTIKN7android6Looper8ResponseE",
+ "self_type" : "_ZTIRKN7android6Looper8ResponseE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "const android::Vector<android::sysprop_change_callback_info> &",
+ "referenced_type" : "_ZTIKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIRKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android7MessageE",
+ "name" : "const android::Message &",
+ "referenced_type" : "_ZTIKN7android7MessageE",
+ "self_type" : "_ZTIRKN7android7MessageE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android7String8E",
+ "name" : "const android::String8 &",
+ "referenced_type" : "_ZTIKN7android7String8E",
+ "self_type" : "_ZTIRKN7android7String8E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android8String1610StaticDataILm1EEE",
+ "name" : "const android::String16::StaticData<1> &",
+ "referenced_type" : "_ZTIKN7android8String1610StaticDataILm1EEE",
+ "self_type" : "_ZTIRKN7android8String1610StaticDataILm1EEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKN7android8String16E",
+ "name" : "const android::String16 &",
+ "referenced_type" : "_ZTIKN7android8String16E",
+ "self_type" : "_ZTIRKN7android8String16E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKa",
+ "name" : "const signed char &",
+ "referenced_type" : "_ZTIKa",
+ "self_type" : "_ZTIRKa",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKb",
+ "name" : "const bool &",
+ "referenced_type" : "_ZTIKb",
+ "self_type" : "_ZTIRKb",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKd",
+ "name" : "const double &",
+ "referenced_type" : "_ZTIKd",
+ "self_type" : "_ZTIRKd",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKf",
+ "name" : "const float &",
+ "referenced_type" : "_ZTIKf",
+ "self_type" : "_ZTIRKf",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKh",
+ "name" : "const unsigned char &",
+ "referenced_type" : "_ZTIKh",
+ "self_type" : "_ZTIRKh",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKi",
+ "name" : "const int &",
+ "referenced_type" : "_ZTIKi",
+ "self_type" : "_ZTIRKi",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKj",
+ "name" : "const unsigned int &",
+ "referenced_type" : "_ZTIKj",
+ "self_type" : "_ZTIRKj",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKl",
+ "name" : "const long &",
+ "referenced_type" : "_ZTIKl",
+ "self_type" : "_ZTIRKl",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKm",
+ "name" : "const unsigned long &",
+ "referenced_type" : "_ZTIKm",
+ "self_type" : "_ZTIRKm",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKs",
+ "name" : "const short &",
+ "referenced_type" : "_ZTIKs",
+ "self_type" : "_ZTIRKs",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRKt",
+ "name" : "const unsigned short &",
+ "referenced_type" : "_ZTIKt",
+ "self_type" : "_ZTIRKt",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android10VectorImplE",
+ "name" : "android::VectorImpl &",
+ "referenced_type" : "_ZTIN7android10VectorImplE",
+ "self_type" : "_ZTIRN7android10VectorImplE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android16SortedVectorImplE",
+ "name" : "android::SortedVectorImpl &",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE",
+ "self_type" : "_ZTIRN7android16SortedVectorImplE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android2spINS_14LooperCallbackEEE",
+ "name" : "android::sp<android::LooperCallback> &",
+ "referenced_type" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIRN7android2spINS_14LooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android2spINS_14MessageHandlerEEE",
+ "name" : "android::sp<android::MessageHandler> &",
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIRN7android2spINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "android::sp<android::SimpleLooperCallback> &",
+ "referenced_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTIRN7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android2spINS_6LooperEEE",
+ "name" : "android::sp<android::Looper> &",
+ "referenced_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIRN7android2spINS_6LooperEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android2spINS_6ThreadEEE",
+ "name" : "android::sp<android::Thread> &",
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIRN7android2spINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android5MutexE",
+ "name" : "android::Mutex &",
+ "referenced_type" : "_ZTIN7android5MutexE",
+ "self_type" : "_ZTIRN7android5MutexE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android6Looper8ResponseE",
+ "name" : "android::Looper::Response &",
+ "referenced_type" : "_ZTIN7android6Looper8ResponseE",
+ "self_type" : "_ZTIRN7android6Looper8ResponseE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android6RWLockE",
+ "name" : "android::RWLock &",
+ "referenced_type" : "_ZTIN7android6RWLockE",
+ "self_type" : "_ZTIRN7android6RWLockE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::Vector<android::sysprop_change_callback_info> &",
+ "referenced_type" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIRN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android7FileMapE",
+ "name" : "android::FileMap &",
+ "referenced_type" : "_ZTIN7android7FileMapE",
+ "self_type" : "_ZTIRN7android7FileMapE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android7PrinterE",
+ "name" : "android::Printer &",
+ "referenced_type" : "_ZTIN7android7PrinterE",
+ "self_type" : "_ZTIRN7android7PrinterE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android7String8E",
+ "name" : "android::String8 &",
+ "referenced_type" : "_ZTIN7android7String8E",
+ "self_type" : "_ZTIRN7android7String8E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRN7android8String16E",
+ "name" : "android::String16 &",
+ "referenced_type" : "_ZTIN7android8String16E",
+ "self_type" : "_ZTIRN7android8String16E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRP13native_handle",
+ "name" : "native_handle *&",
+ "referenced_type" : "_ZTIP13native_handle",
+ "self_type" : "_ZTIRP13native_handle",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRPFiiiPvE",
+ "name" : "int (*&)(int, int, void *)",
+ "referenced_type" : "_ZTIPFiiiPvE",
+ "self_type" : "_ZTIRPFiiiPvE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIRb",
+ "name" : "bool &",
+ "referenced_type" : "_ZTIb",
+ "self_type" : "_ZTIRb",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ }
+ ],
+ "pointer_types" :
+ [
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIP13native_handle",
+ "name" : "native_handle *",
+ "referenced_type" : "_ZTI13native_handle",
+ "self_type" : "_ZTIP13native_handle",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIP18android_flex_plane",
+ "name" : "android_flex_plane *",
+ "referenced_type" : "_ZTI18android_flex_plane",
+ "self_type" : "_ZTIP18android_flex_plane",
+ "size" : 8,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIP3DIR",
+ "name" : "DIR *",
+ "referenced_type" : "_ZTI3DIR",
+ "self_type" : "_ZTIP3DIR",
+ "size" : 8,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIP7__sFILE",
+ "name" : "__sFILE *",
+ "referenced_type" : "_ZTI7__sFILE",
+ "self_type" : "_ZTIP7__sFILE",
+ "size" : 8,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIP7log_msg",
+ "name" : "log_msg *",
+ "referenced_type" : "_ZTI7log_msg",
+ "self_type" : "_ZTIP7log_msg",
+ "size" : 8,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPDs",
+ "name" : "char16_t *",
+ "referenced_type" : "_ZTIDs",
+ "self_type" : "_ZTIPDs",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPFiPFiPvES_PKcimPS_E",
+ "name" : "int (*)(int (*)(void *), void *, const char *, int, unsigned long, void **)",
+ "referenced_type" : "_ZTIFiPFiPvES_PKcimPS_E",
+ "self_type" : "_ZTIPFiPFiPvES_PKcimPS_E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPFiPKvS0_E",
+ "name" : "int (*)(const void *, const void *)",
+ "referenced_type" : "_ZTIFiPKvS0_E",
+ "self_type" : "_ZTIPFiPKvS0_E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPFiPKvS0_PvE",
+ "name" : "int (*)(const void *, const void *, void *)",
+ "referenced_type" : "_ZTIFiPKvS0_PvE",
+ "self_type" : "_ZTIPFiPKvS0_PvE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPFiPvE",
+ "name" : "int (*)(void *)",
+ "referenced_type" : "_ZTIFiPvE",
+ "self_type" : "_ZTIPFiPvE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPFiiiPvE",
+ "name" : "int (*)(int, int, void *)",
+ "referenced_type" : "_ZTIFiiiPvE",
+ "self_type" : "_ZTIPFiiiPvE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPFvvE",
+ "name" : "void (*)()",
+ "referenced_type" : "_ZTIFvvE",
+ "self_type" : "_ZTIPFvvE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/misc.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPK13native_handle",
+ "name" : "const native_handle *",
+ "referenced_type" : "_ZTIK13native_handle",
+ "self_type" : "_ZTIPK13native_handle",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPK7log_msg",
+ "name" : "const log_msg *",
+ "referenced_type" : "_ZTIK7log_msg",
+ "self_type" : "_ZTIPK7log_msg",
+ "size" : 8,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKDi",
+ "name" : "const char32_t *",
+ "referenced_type" : "_ZTIKDi",
+ "self_type" : "_ZTIPKDi",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKDs",
+ "name" : "const char16_t *",
+ "referenced_type" : "_ZTIKDs",
+ "self_type" : "_ZTIPKDs",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android10VectorImplE",
+ "name" : "const android::VectorImpl *",
+ "referenced_type" : "_ZTIKN7android10VectorImplE",
+ "self_type" : "_ZTIPKN7android10VectorImplE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android12LightRefBaseINS_12NativeHandleEEE",
+ "name" : "const android::LightRefBase<android::NativeHandle> *",
+ "referenced_type" : "_ZTIKN7android12LightRefBaseINS_12NativeHandleEEE",
+ "self_type" : "_ZTIPKN7android12LightRefBaseINS_12NativeHandleEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android12NativeHandleE",
+ "name" : "const android::NativeHandle *",
+ "referenced_type" : "_ZTIKN7android12NativeHandleE",
+ "self_type" : "_ZTIPKN7android12NativeHandleE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android16SortedVectorImplE",
+ "name" : "const android::SortedVectorImpl *",
+ "referenced_type" : "_ZTIKN7android16SortedVectorImplE",
+ "self_type" : "_ZTIPKN7android16SortedVectorImplE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android28sysprop_change_callback_infoE",
+ "name" : "const android::sysprop_change_callback_info *",
+ "referenced_type" : "_ZTIKN7android28sysprop_change_callback_infoE",
+ "self_type" : "_ZTIPKN7android28sysprop_change_callback_infoE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android2spINS_14LooperCallbackEEE",
+ "name" : "const android::sp<android::LooperCallback> *",
+ "referenced_type" : "_ZTIKN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIPKN7android2spINS_14LooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android2spINS_14MessageHandlerEEE",
+ "name" : "const android::sp<android::MessageHandler> *",
+ "referenced_type" : "_ZTIKN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIPKN7android2spINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android2spINS_6LooperEEE",
+ "name" : "const android::sp<android::Looper> *",
+ "referenced_type" : "_ZTIKN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIPKN7android2spINS_6LooperEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android2spINS_6ThreadEEE",
+ "name" : "const android::sp<android::Thread> *",
+ "referenced_type" : "_ZTIKN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIPKN7android2spINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android2wpINS_14MessageHandlerEEE",
+ "name" : "const android::wp<android::MessageHandler> *",
+ "referenced_type" : "_ZTIKN7android2wpINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIPKN7android2wpINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android2wpINS_6ThreadEEE",
+ "name" : "const android::wp<android::Thread> *",
+ "referenced_type" : "_ZTIKN7android2wpINS_6ThreadEEE",
+ "self_type" : "_ZTIPKN7android2wpINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android4base11borrowed_fdE",
+ "name" : "const android::base::borrowed_fd *",
+ "referenced_type" : "_ZTIKN7android4base11borrowed_fdE",
+ "self_type" : "_ZTIPKN7android4base11borrowed_fdE",
+ "size" : 8,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "name" : "const android::base::unique_fd_impl<android::base::DefaultCloser> *",
+ "referenced_type" : "_ZTIKN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "self_type" : "_ZTIPKN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "size" : 8,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android6Looper15MessageEnvelopeE",
+ "name" : "const android::Looper::MessageEnvelope *",
+ "referenced_type" : "_ZTIKN7android6Looper15MessageEnvelopeE",
+ "self_type" : "_ZTIPKN7android6Looper15MessageEnvelopeE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android6Looper7RequestE",
+ "name" : "const android::Looper::Request *",
+ "referenced_type" : "_ZTIKN7android6Looper7RequestE",
+ "self_type" : "_ZTIPKN7android6Looper7RequestE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android6Looper8ResponseE",
+ "name" : "const android::Looper::Response *",
+ "referenced_type" : "_ZTIKN7android6Looper8ResponseE",
+ "self_type" : "_ZTIPKN7android6Looper8ResponseE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android6LooperE",
+ "name" : "const android::Looper *",
+ "referenced_type" : "_ZTIKN7android6LooperE",
+ "self_type" : "_ZTIPKN7android6LooperE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android6ThreadE",
+ "name" : "const android::Thread *",
+ "referenced_type" : "_ZTIKN7android6ThreadE",
+ "self_type" : "_ZTIPKN7android6ThreadE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "const android::Vector<android::sysprop_change_callback_info> *",
+ "referenced_type" : "_ZTIKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "const android::Vector<android::Looper::MessageEnvelope> *",
+ "referenced_type" : "_ZTIKN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE",
+ "name" : "const android::Vector<android::Looper::Response> *",
+ "referenced_type" : "_ZTIKN7android6VectorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android6VectorINS_7String8EEE",
+ "name" : "const android::Vector<android::String8> *",
+ "referenced_type" : "_ZTIKN7android6VectorINS_7String8EEE",
+ "self_type" : "_ZTIPKN7android6VectorINS_7String8EEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android7FileMapE",
+ "name" : "const android::FileMap *",
+ "referenced_type" : "_ZTIKN7android7FileMapE",
+ "self_type" : "_ZTIPKN7android7FileMapE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android7RefBase12weakref_typeE",
+ "name" : "const android::RefBase::weakref_type *",
+ "referenced_type" : "_ZTIKN7android7RefBase12weakref_typeE",
+ "self_type" : "_ZTIPKN7android7RefBase12weakref_typeE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android7RefBaseE",
+ "name" : "const android::RefBase *",
+ "referenced_type" : "_ZTIKN7android7RefBaseE",
+ "self_type" : "_ZTIPKN7android7RefBaseE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android7String8E",
+ "name" : "const android::String8 *",
+ "referenced_type" : "_ZTIKN7android7String8E",
+ "self_type" : "_ZTIPKN7android7String8E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android8String16E",
+ "name" : "const android::String16 *",
+ "referenced_type" : "_ZTIKN7android8String16E",
+ "self_type" : "_ZTIPKN7android8String16E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android9CallStackE",
+ "name" : "const android::CallStack *",
+ "referenced_type" : "_ZTIKN7android9CallStackE",
+ "self_type" : "_ZTIPKN7android9CallStackE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android9StopWatchE",
+ "name" : "const android::StopWatch *",
+ "referenced_type" : "_ZTIKN7android9StopWatchE",
+ "self_type" : "_ZTIPKN7android9StopWatchE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKN7android9TokenizerE",
+ "name" : "const android::Tokenizer *",
+ "referenced_type" : "_ZTIKN7android9TokenizerE",
+ "self_type" : "_ZTIPKN7android9TokenizerE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKc",
+ "name" : "const char *",
+ "referenced_type" : "_ZTIKc",
+ "self_type" : "_ZTIPKc",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKh",
+ "name" : "const unsigned char *",
+ "referenced_type" : "_ZTIKh",
+ "self_type" : "_ZTIPKh",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/JenkinsHash.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKt",
+ "name" : "const unsigned short *",
+ "referenced_type" : "_ZTIKt",
+ "self_type" : "_ZTIPKt",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/JenkinsHash.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPKv",
+ "name" : "const void *",
+ "referenced_type" : "_ZTIKv",
+ "self_type" : "_ZTIPKv",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android10LogPrinterE",
+ "name" : "android::LogPrinter *",
+ "referenced_type" : "_ZTIN7android10LogPrinterE",
+ "self_type" : "_ZTIPN7android10LogPrinterE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android10VectorImplE",
+ "name" : "android::VectorImpl *",
+ "referenced_type" : "_ZTIN7android10VectorImplE",
+ "self_type" : "_ZTIPN7android10VectorImplE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android11ScopedTraceE",
+ "name" : "android::ScopedTrace *",
+ "referenced_type" : "_ZTIN7android11ScopedTraceE",
+ "self_type" : "_ZTIPN7android11ScopedTraceE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Trace.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android12LightRefBaseINS_12NativeHandleEEE",
+ "name" : "android::LightRefBase<android::NativeHandle> *",
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE",
+ "self_type" : "_ZTIPN7android12LightRefBaseINS_12NativeHandleEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android12NativeHandleE",
+ "name" : "android::NativeHandle *",
+ "referenced_type" : "_ZTIN7android12NativeHandleE",
+ "self_type" : "_ZTIPN7android12NativeHandleE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android13PrefixPrinterE",
+ "name" : "android::PrefixPrinter *",
+ "referenced_type" : "_ZTIN7android13PrefixPrinterE",
+ "self_type" : "_ZTIPN7android13PrefixPrinterE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android14LooperCallbackE",
+ "name" : "android::LooperCallback *",
+ "referenced_type" : "_ZTIN7android14LooperCallbackE",
+ "self_type" : "_ZTIPN7android14LooperCallbackE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android14MessageHandlerE",
+ "name" : "android::MessageHandler *",
+ "referenced_type" : "_ZTIN7android14MessageHandlerE",
+ "self_type" : "_ZTIPN7android14MessageHandlerE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android14StaticString16ILm1EEE",
+ "name" : "android::StaticString16<1> *",
+ "referenced_type" : "_ZTIN7android14StaticString16ILm1EEE",
+ "self_type" : "_ZTIPN7android14StaticString16ILm1EEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android14String8PrinterE",
+ "name" : "android::String8Printer *",
+ "referenced_type" : "_ZTIN7android14String8PrinterE",
+ "self_type" : "_ZTIPN7android14String8PrinterE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android16ReferenceRenamerE",
+ "name" : "android::ReferenceRenamer *",
+ "referenced_type" : "_ZTIN7android16ReferenceRenamerE",
+ "self_type" : "_ZTIPN7android16ReferenceRenamerE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android16SortedVectorImplE",
+ "name" : "android::SortedVectorImpl *",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE",
+ "self_type" : "_ZTIPN7android16SortedVectorImplE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android18WeakMessageHandlerE",
+ "name" : "android::WeakMessageHandler *",
+ "referenced_type" : "_ZTIN7android18WeakMessageHandlerE",
+ "self_type" : "_ZTIPN7android18WeakMessageHandlerE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android19VirtualLightRefBaseE",
+ "name" : "android::VirtualLightRefBase *",
+ "referenced_type" : "_ZTIN7android19VirtualLightRefBaseE",
+ "self_type" : "_ZTIPN7android19VirtualLightRefBaseE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android20SimpleLooperCallbackE",
+ "name" : "android::SimpleLooperCallback *",
+ "referenced_type" : "_ZTIN7android20SimpleLooperCallbackE",
+ "self_type" : "_ZTIPN7android20SimpleLooperCallbackE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android28sysprop_change_callback_infoE",
+ "name" : "android::sysprop_change_callback_info *",
+ "referenced_type" : "_ZTIN7android28sysprop_change_callback_infoE",
+ "self_type" : "_ZTIPN7android28sysprop_change_callback_infoE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android2spINS_12NativeHandleEEE",
+ "name" : "android::sp<android::NativeHandle> *",
+ "referenced_type" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "self_type" : "_ZTIPN7android2spINS_12NativeHandleEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android2spINS_14LooperCallbackEEE",
+ "name" : "android::sp<android::LooperCallback> *",
+ "referenced_type" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIPN7android2spINS_14LooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android2spINS_14MessageHandlerEEE",
+ "name" : "android::sp<android::MessageHandler> *",
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIPN7android2spINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "android::sp<android::SimpleLooperCallback> *",
+ "referenced_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTIPN7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android2spINS_6LooperEEE",
+ "name" : "android::sp<android::Looper> *",
+ "referenced_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIPN7android2spINS_6LooperEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android2spINS_6ThreadEEE",
+ "name" : "android::sp<android::Thread> *",
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIPN7android2spINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android2wpINS_14MessageHandlerEEE",
+ "name" : "android::wp<android::MessageHandler> *",
+ "referenced_type" : "_ZTIN7android2wpINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIPN7android2wpINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android2wpINS_6ThreadEEE",
+ "name" : "android::wp<android::Thread> *",
+ "referenced_type" : "_ZTIN7android2wpINS_6ThreadEEE",
+ "self_type" : "_ZTIPN7android2wpINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android4base11borrowed_fdE",
+ "name" : "android::base::borrowed_fd *",
+ "referenced_type" : "_ZTIN7android4base11borrowed_fdE",
+ "self_type" : "_ZTIPN7android4base11borrowed_fdE",
+ "size" : 8,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "name" : "android::base::unique_fd_impl<android::base::DefaultCloser> *",
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "self_type" : "_ZTIPN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "size" : 8,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android5Mutex8AutolockE",
+ "name" : "android::Mutex::Autolock *",
+ "referenced_type" : "_ZTIN7android5Mutex8AutolockE",
+ "self_type" : "_ZTIPN7android5Mutex8AutolockE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android5MutexE",
+ "name" : "android::Mutex *",
+ "referenced_type" : "_ZTIN7android5MutexE",
+ "self_type" : "_ZTIPN7android5MutexE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6Looper15MessageEnvelopeE",
+ "name" : "android::Looper::MessageEnvelope *",
+ "referenced_type" : "_ZTIN7android6Looper15MessageEnvelopeE",
+ "self_type" : "_ZTIPN7android6Looper15MessageEnvelopeE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6Looper8ResponseE",
+ "name" : "android::Looper::Response *",
+ "referenced_type" : "_ZTIN7android6Looper8ResponseE",
+ "self_type" : "_ZTIPN7android6Looper8ResponseE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6LooperE",
+ "name" : "android::Looper *",
+ "referenced_type" : "_ZTIN7android6LooperE",
+ "self_type" : "_ZTIPN7android6LooperE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6RWLock9AutoRLockE",
+ "name" : "android::RWLock::AutoRLock *",
+ "referenced_type" : "_ZTIN7android6RWLock9AutoRLockE",
+ "self_type" : "_ZTIPN7android6RWLock9AutoRLockE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6RWLock9AutoWLockE",
+ "name" : "android::RWLock::AutoWLock *",
+ "referenced_type" : "_ZTIN7android6RWLock9AutoWLockE",
+ "self_type" : "_ZTIPN7android6RWLock9AutoWLockE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6RWLockE",
+ "name" : "android::RWLock *",
+ "referenced_type" : "_ZTIN7android6RWLockE",
+ "self_type" : "_ZTIPN7android6RWLockE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6ThreadE",
+ "name" : "android::Thread *",
+ "referenced_type" : "_ZTIN7android6ThreadE",
+ "self_type" : "_ZTIPN7android6ThreadE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::Vector<android::sysprop_change_callback_info> *",
+ "referenced_type" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIPN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::Vector<android::Looper::MessageEnvelope> *",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIPN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6VectorINS_6Looper8ResponseEEE",
+ "name" : "android::Vector<android::Looper::Response> *",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIPN7android6VectorINS_6Looper8ResponseEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android6VectorINS_7String8EEE",
+ "name" : "android::Vector<android::String8> *",
+ "referenced_type" : "_ZTIN7android6VectorINS_7String8EEE",
+ "self_type" : "_ZTIPN7android6VectorINS_7String8EEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android7FileMapE",
+ "name" : "android::FileMap *",
+ "referenced_type" : "_ZTIN7android7FileMapE",
+ "self_type" : "_ZTIPN7android7FileMapE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android7MessageE",
+ "name" : "android::Message *",
+ "referenced_type" : "_ZTIN7android7MessageE",
+ "self_type" : "_ZTIPN7android7MessageE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android7PrinterE",
+ "name" : "android::Printer *",
+ "referenced_type" : "_ZTIN7android7PrinterE",
+ "self_type" : "_ZTIPN7android7PrinterE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android7RefBase12weakref_implE",
+ "name" : "android::RefBase::weakref_impl *",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_implE",
+ "self_type" : "_ZTIPN7android7RefBase12weakref_implE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android7RefBase12weakref_typeE",
+ "name" : "android::RefBase::weakref_type *",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE",
+ "self_type" : "_ZTIPN7android7RefBase12weakref_typeE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android7RefBaseE",
+ "name" : "android::RefBase *",
+ "referenced_type" : "_ZTIN7android7RefBaseE",
+ "self_type" : "_ZTIPN7android7RefBaseE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android7String8E",
+ "name" : "android::String8 *",
+ "referenced_type" : "_ZTIN7android7String8E",
+ "self_type" : "_ZTIPN7android7String8E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android8String1610StaticDataILm1EEE",
+ "name" : "android::String16::StaticData<1> *",
+ "referenced_type" : "_ZTIN7android8String1610StaticDataILm1EEE",
+ "self_type" : "_ZTIPN7android8String1610StaticDataILm1EEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android8String16E",
+ "name" : "android::String16 *",
+ "referenced_type" : "_ZTIN7android8String16E",
+ "self_type" : "_ZTIPN7android8String16E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android9CallStack12StackDeleterE",
+ "name" : "android::CallStack::StackDeleter *",
+ "referenced_type" : "_ZTIN7android9CallStack12StackDeleterE",
+ "self_type" : "_ZTIPN7android9CallStack12StackDeleterE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android9CallStackE",
+ "name" : "android::CallStack *",
+ "referenced_type" : "_ZTIN7android9CallStackE",
+ "self_type" : "_ZTIPN7android9CallStackE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android9ConditionE",
+ "name" : "android::Condition *",
+ "referenced_type" : "_ZTIN7android9ConditionE",
+ "self_type" : "_ZTIPN7android9ConditionE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Condition.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android9FdPrinterE",
+ "name" : "android::FdPrinter *",
+ "referenced_type" : "_ZTIN7android9FdPrinterE",
+ "self_type" : "_ZTIPN7android9FdPrinterE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android9StopWatchE",
+ "name" : "android::StopWatch *",
+ "referenced_type" : "_ZTIN7android9StopWatchE",
+ "self_type" : "_ZTIPN7android9StopWatchE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPN7android9TokenizerE",
+ "name" : "android::Tokenizer *",
+ "referenced_type" : "_ZTIN7android9TokenizerE",
+ "self_type" : "_ZTIPN7android9TokenizerE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPPN7android9TokenizerE",
+ "name" : "android::Tokenizer **",
+ "referenced_type" : "_ZTIPN7android9TokenizerE",
+ "self_type" : "_ZTIPPN7android9TokenizerE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPPv",
+ "name" : "void **",
+ "referenced_type" : "_ZTIPv",
+ "self_type" : "_ZTIPPv",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPc",
+ "name" : "char *",
+ "referenced_type" : "_ZTIc",
+ "self_type" : "_ZTIPc",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPh",
+ "name" : "unsigned char *",
+ "referenced_type" : "_ZTIh",
+ "self_type" : "_ZTIPh",
+ "size" : 8,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPi",
+ "name" : "int *",
+ "referenced_type" : "_ZTIi",
+ "self_type" : "_ZTIPi",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPm",
+ "name" : "unsigned long *",
+ "referenced_type" : "_ZTIm",
+ "self_type" : "_ZTIPm",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIPv",
+ "name" : "void *",
+ "referenced_type" : "_ZTIv",
+ "self_type" : "_ZTIPv",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ }
+ ],
+ "qualified_types" :
+ [
+ {
+ "alignment" : 2,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIA1_KDs",
+ "name" : "const char16_t[1]",
+ "referenced_type" : "_ZTIA1_Ds",
+ "self_type" : "_ZTIA1_KDs",
+ "size" : 2,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIK13native_handle",
+ "name" : "const native_handle",
+ "referenced_type" : "_ZTI13native_handle",
+ "self_type" : "_ZTIK13native_handle",
+ "size" : 12,
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIK7log_msg",
+ "name" : "const log_msg",
+ "referenced_type" : "_ZTI7log_msg",
+ "self_type" : "_ZTIK7log_msg",
+ "size" : 5124,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKDi",
+ "name" : "const char32_t",
+ "referenced_type" : "_ZTIDi",
+ "self_type" : "_ZTIKDi",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 2,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKDs",
+ "name" : "const char16_t",
+ "referenced_type" : "_ZTIDs",
+ "self_type" : "_ZTIKDs",
+ "size" : 2,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android10VectorImplE",
+ "name" : "const android::VectorImpl",
+ "referenced_type" : "_ZTIN7android10VectorImplE",
+ "self_type" : "_ZTIKN7android10VectorImplE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android12LightRefBaseINS_12NativeHandleEEE",
+ "name" : "const android::LightRefBase<android::NativeHandle>",
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE",
+ "self_type" : "_ZTIKN7android12LightRefBaseINS_12NativeHandleEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android12NativeHandleE",
+ "name" : "const android::NativeHandle",
+ "referenced_type" : "_ZTIN7android12NativeHandleE",
+ "self_type" : "_ZTIKN7android12NativeHandleE",
+ "size" : 24,
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android16ReferenceRenamerE",
+ "name" : "const android::ReferenceRenamer",
+ "referenced_type" : "_ZTIN7android16ReferenceRenamerE",
+ "self_type" : "_ZTIKN7android16ReferenceRenamerE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android16SortedVectorImplE",
+ "name" : "const android::SortedVectorImpl",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE",
+ "self_type" : "_ZTIKN7android16SortedVectorImplE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android28sysprop_change_callback_infoE",
+ "name" : "const android::sysprop_change_callback_info",
+ "referenced_type" : "_ZTIN7android28sysprop_change_callback_infoE",
+ "self_type" : "_ZTIKN7android28sysprop_change_callback_infoE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2spINS_14LooperCallbackEEE",
+ "name" : "const android::sp<android::LooperCallback>",
+ "referenced_type" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIKN7android2spINS_14LooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2spINS_14MessageHandlerEEE",
+ "name" : "const android::sp<android::MessageHandler>",
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIKN7android2spINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "const android::sp<android::SimpleLooperCallback>",
+ "referenced_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTIKN7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2spINS_6LooperEEE",
+ "name" : "const android::sp<android::Looper>",
+ "referenced_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIKN7android2spINS_6LooperEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2spINS_6ThreadEEE",
+ "name" : "const android::sp<android::Thread>",
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIKN7android2spINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2wpINS_14MessageHandlerEEE",
+ "name" : "const android::wp<android::MessageHandler>",
+ "referenced_type" : "_ZTIN7android2wpINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIKN7android2wpINS_14MessageHandlerEEE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2wpINS_6ThreadEEE",
+ "name" : "const android::wp<android::Thread>",
+ "referenced_type" : "_ZTIN7android2wpINS_6ThreadEEE",
+ "self_type" : "_ZTIKN7android2wpINS_6ThreadEEE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android4base11borrowed_fdE",
+ "name" : "const android::base::borrowed_fd",
+ "referenced_type" : "_ZTIN7android4base11borrowed_fdE",
+ "self_type" : "_ZTIKN7android4base11borrowed_fdE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "name" : "const android::base::unique_fd_impl<android::base::DefaultCloser>",
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "self_type" : "_ZTIKN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6Looper15MessageEnvelopeE",
+ "name" : "const android::Looper::MessageEnvelope",
+ "referenced_type" : "_ZTIN7android6Looper15MessageEnvelopeE",
+ "self_type" : "_ZTIKN7android6Looper15MessageEnvelopeE",
+ "size" : 24,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6Looper7RequestE",
+ "name" : "const android::Looper::Request",
+ "referenced_type" : "_ZTIN7android6Looper7RequestE",
+ "self_type" : "_ZTIKN7android6Looper7RequestE",
+ "size" : 32,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6Looper8ResponseE",
+ "name" : "const android::Looper::Response",
+ "referenced_type" : "_ZTIN7android6Looper8ResponseE",
+ "self_type" : "_ZTIKN7android6Looper8ResponseE",
+ "size" : 48,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6LooperE",
+ "name" : "const android::Looper",
+ "referenced_type" : "_ZTIN7android6LooperE",
+ "self_type" : "_ZTIKN7android6LooperE",
+ "size" : 264,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6ThreadE",
+ "name" : "const android::Thread",
+ "referenced_type" : "_ZTIN7android6ThreadE",
+ "self_type" : "_ZTIKN7android6ThreadE",
+ "size" : 152,
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "const android::Vector<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "const android::Vector<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIKN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6VectorINS_6Looper8ResponseEEE",
+ "name" : "const android::Vector<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIKN7android6VectorINS_6Looper8ResponseEEE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6VectorINS_7String8EEE",
+ "name" : "const android::Vector<android::String8>",
+ "referenced_type" : "_ZTIN7android6VectorINS_7String8EEE",
+ "self_type" : "_ZTIKN7android6VectorINS_7String8EEE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android7FileMapE",
+ "name" : "const android::FileMap",
+ "referenced_type" : "_ZTIN7android7FileMapE",
+ "self_type" : "_ZTIKN7android7FileMapE",
+ "size" : 48,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android7MessageE",
+ "name" : "const android::Message",
+ "referenced_type" : "_ZTIN7android7MessageE",
+ "self_type" : "_ZTIKN7android7MessageE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 1,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android7RefBase12weakref_typeE",
+ "name" : "const android::RefBase::weakref_type",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE",
+ "self_type" : "_ZTIKN7android7RefBase12weakref_typeE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android7RefBaseE",
+ "name" : "const android::RefBase",
+ "referenced_type" : "_ZTIN7android7RefBaseE",
+ "self_type" : "_ZTIKN7android7RefBaseE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android7String8E",
+ "name" : "const android::String8",
+ "referenced_type" : "_ZTIN7android7String8E",
+ "self_type" : "_ZTIKN7android7String8E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android8String1610StaticDataILm1EEE",
+ "name" : "const android::String16::StaticData<1>",
+ "referenced_type" : "_ZTIN7android8String1610StaticDataILm1EEE",
+ "self_type" : "_ZTIKN7android8String1610StaticDataILm1EEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android8String16E",
+ "name" : "const android::String16",
+ "referenced_type" : "_ZTIN7android8String16E",
+ "self_type" : "_ZTIKN7android8String16E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android9CallStackE",
+ "name" : "const android::CallStack",
+ "referenced_type" : "_ZTIN7android9CallStackE",
+ "self_type" : "_ZTIKN7android9CallStackE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android9StopWatchE",
+ "name" : "const android::StopWatch",
+ "referenced_type" : "_ZTIN7android9StopWatchE",
+ "self_type" : "_ZTIKN7android9StopWatchE",
+ "size" : 24,
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android9TokenizerE",
+ "name" : "const android::Tokenizer",
+ "referenced_type" : "_ZTIN7android9TokenizerE",
+ "self_type" : "_ZTIKN7android9TokenizerE",
+ "size" : 56,
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKPKc",
+ "name" : "const char *const",
+ "referenced_type" : "_ZTIPKc",
+ "self_type" : "_ZTIKPKc",
+ "size" : 8,
+ "source_file" : "system/core/libprocessgroup/include/processgroup/processgroup.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKPN7android7RefBase12weakref_implE",
+ "name" : "android::RefBase::weakref_impl *const",
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_implE",
+ "self_type" : "_ZTIKPN7android7RefBase12weakref_implE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 1,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKa",
+ "name" : "const signed char",
+ "referenced_type" : "_ZTIa",
+ "self_type" : "_ZTIKa",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 1,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKb",
+ "name" : "const bool",
+ "referenced_type" : "_ZTIb",
+ "self_type" : "_ZTIKb",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 1,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKc",
+ "name" : "const char",
+ "referenced_type" : "_ZTIc",
+ "self_type" : "_ZTIKc",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKd",
+ "name" : "const double",
+ "referenced_type" : "_ZTId",
+ "self_type" : "_ZTIKd",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKf",
+ "name" : "const float",
+ "referenced_type" : "_ZTIf",
+ "self_type" : "_ZTIKf",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 1,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKh",
+ "name" : "const unsigned char",
+ "referenced_type" : "_ZTIh",
+ "self_type" : "_ZTIKh",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKi",
+ "name" : "const int",
+ "referenced_type" : "_ZTIi",
+ "self_type" : "_ZTIKi",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKj",
+ "name" : "const unsigned int",
+ "referenced_type" : "_ZTIj",
+ "self_type" : "_ZTIKj",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKl",
+ "name" : "const long",
+ "referenced_type" : "_ZTIl",
+ "self_type" : "_ZTIKl",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKm",
+ "name" : "const unsigned long",
+ "referenced_type" : "_ZTIm",
+ "self_type" : "_ZTIKm",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 2,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKs",
+ "name" : "const short",
+ "referenced_type" : "_ZTIs",
+ "self_type" : "_ZTIKs",
+ "size" : 2,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 2,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKt",
+ "name" : "const unsigned short",
+ "referenced_type" : "_ZTIt",
+ "self_type" : "_ZTIKt",
+ "size" : 2,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKv",
+ "name" : "const void",
+ "referenced_type" : "_ZTIv",
+ "self_type" : "_ZTIKv",
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 1,
+ "is_volatile" : true,
+ "linker_set_key" : "_ZTIVb",
+ "name" : "volatile bool",
+ "referenced_type" : "_ZTIb",
+ "self_type" : "_ZTIVb",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ }
+ ],
+ "record_types" :
+ [
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "len",
+ "referenced_type" : "_ZTIt"
+ },
+ {
+ "field_name" : "hdr_size",
+ "field_offset" : 16,
+ "referenced_type" : "_ZTIt"
+ },
+ {
+ "field_name" : "pid",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "tid",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "sec",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "nsec",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "lid",
+ "field_offset" : 160,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "uid",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "linker_set_key" : "_ZTI12logger_entry",
+ "name" : "logger_entry",
+ "referenced_type" : "_ZTI12logger_entry",
+ "self_type" : "_ZTI12logger_entry",
+ "size" : 28,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "field_name" : "y",
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "field_name" : "cb",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "field_name" : "cr",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "field_name" : "ystride",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "field_name" : "cstride",
+ "field_offset" : 256,
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "field_name" : "chroma_step",
+ "field_offset" : 320,
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "field_name" : "reserved",
+ "field_offset" : 384,
+ "referenced_type" : "_ZTIA8_j"
+ }
+ ],
+ "linker_set_key" : "_ZTI13android_ycbcr",
+ "name" : "android_ycbcr",
+ "referenced_type" : "_ZTI13android_ycbcr",
+ "self_type" : "_ZTI13android_ycbcr",
+ "size" : 80,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "version",
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "numFds",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "numInts",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "data",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIA0_i"
+ }
+ ],
+ "linker_set_key" : "_ZTI13native_handle",
+ "name" : "native_handle",
+ "referenced_type" : "_ZTI13native_handle",
+ "self_type" : "_ZTI13native_handle",
+ "size" : 12,
+ "source_file" : "system/core/libcutils/include_outside_system/cutils/native_handle.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "x",
+ "referenced_type" : "_ZTIf"
+ },
+ {
+ "field_name" : "y",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIf"
+ }
+ ],
+ "linker_set_key" : "_ZTI16android_xy_color",
+ "name" : "android_xy_color",
+ "referenced_type" : "_ZTI16android_xy_color",
+ "self_type" : "_ZTI16android_xy_color",
+ "size" : 8,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "field_name" : "top_left",
+ "referenced_type" : "_ZTIPh"
+ },
+ {
+ "field_name" : "component",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTI22android_flex_component"
+ },
+ {
+ "field_name" : "bits_per_component",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "bits_used",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "h_increment",
+ "field_offset" : 160,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "v_increment",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "h_subsampling",
+ "field_offset" : 224,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "v_subsampling",
+ "field_offset" : 256,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTI18android_flex_plane",
+ "name" : "android_flex_plane",
+ "referenced_type" : "_ZTI18android_flex_plane",
+ "self_type" : "_ZTI18android_flex_plane",
+ "size" : 40,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "field_name" : "format",
+ "referenced_type" : "_ZTI19android_flex_format"
+ },
+ {
+ "field_name" : "num_planes",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "planes",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIP18android_flex_plane"
+ }
+ ],
+ "linker_set_key" : "_ZTI19android_flex_layout",
+ "name" : "android_flex_layout",
+ "referenced_type" : "_ZTI19android_flex_layout",
+ "self_type" : "_ZTI19android_flex_layout",
+ "size" : 16,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "num_points",
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "reserved",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIA8_j"
+ },
+ {
+ "field_name" : "xyzc_points",
+ "field_offset" : 288,
+ "referenced_type" : "_ZTIA_f"
+ }
+ ],
+ "linker_set_key" : "_ZTI20android_depth_points",
+ "name" : "android_depth_points",
+ "referenced_type" : "_ZTI20android_depth_points",
+ "self_type" : "_ZTI20android_depth_points",
+ "size" : 36,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "field_name" : "struct_size",
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "field_name" : "buffer_id",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "priority",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "tag",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "field_name" : "file",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "field_name" : "line",
+ "field_offset" : 256,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "message",
+ "field_offset" : 320,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "linker_set_key" : "_ZTI21__android_log_message",
+ "name" : "__android_log_message",
+ "referenced_type" : "_ZTI21__android_log_message",
+ "self_type" : "_ZTI21__android_log_message",
+ "size" : 48,
+ "source_file" : "system/logging/liblog/include_vndk/android/log.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "maxContentLightLevel",
+ "referenced_type" : "_ZTIf"
+ },
+ {
+ "field_name" : "maxFrameAverageLightLevel",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIf"
+ }
+ ],
+ "linker_set_key" : "_ZTI25android_cta861_3_metadata",
+ "name" : "android_cta861_3_metadata",
+ "referenced_type" : "_ZTI25android_cta861_3_metadata",
+ "self_type" : "_ZTI25android_cta861_3_metadata",
+ "size" : 8,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "displayPrimaryRed",
+ "referenced_type" : "_ZTI16android_xy_color"
+ },
+ {
+ "field_name" : "displayPrimaryGreen",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTI16android_xy_color"
+ },
+ {
+ "field_name" : "displayPrimaryBlue",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTI16android_xy_color"
+ },
+ {
+ "field_name" : "whitePoint",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTI16android_xy_color"
+ },
+ {
+ "field_name" : "maxLuminance",
+ "field_offset" : 256,
+ "referenced_type" : "_ZTIf"
+ },
+ {
+ "field_name" : "minLuminance",
+ "field_offset" : 288,
+ "referenced_type" : "_ZTIf"
+ }
+ ],
+ "linker_set_key" : "_ZTI26android_smpte2086_metadata",
+ "name" : "android_smpte2086_metadata",
+ "referenced_type" : "_ZTI26android_smpte2086_metadata",
+ "self_type" : "_ZTI26android_smpte2086_metadata",
+ "size" : 40,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "referenced_type" : "_ZTIN7log_msgUt_E"
+ }
+ ],
+ "linker_set_key" : "_ZTI7log_msg",
+ "name" : "log_msg",
+ "referenced_type" : "_ZTI7log_msg",
+ "self_type" : "_ZTI7log_msg",
+ "size" : 5124,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 1,
+ "fields" :
+ [
+ {
+ "field_name" : "tv_sec",
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "tv_nsec",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "linker_set_key" : "_ZTI8log_time",
+ "name" : "log_time",
+ "referenced_type" : "_ZTI8log_time",
+ "self_type" : "_ZTI8log_time",
+ "size" : 8,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_time.h"
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android7PrinterE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mLogTag",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPriority",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTI19android_LogPriority"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPrefix",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mIgnoreBlankLines",
+ "field_offset" : 256,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android10LogPrinterE",
+ "name" : "android::LogPrinter",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android10LogPrinterE",
+ "self_type" : "_ZTIN7android10LogPrinterE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android10LogPrinterE"
+ },
+ {
+ "mangled_component_name" : "_ZN7android10LogPrinter9printLineEPKc"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android10LogPrinterD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android10LogPrinterD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mStorage",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mCount",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mFlags",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIKj"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mItemSize",
+ "field_offset" : 256,
+ "referenced_type" : "_ZTIKm"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android10VectorImplE",
+ "name" : "android::VectorImpl",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android10VectorImplE",
+ "self_type" : "_ZTIN7android10VectorImplE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android10VectorImplE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android10VectorImplD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android10VectorImplD0Ev"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl12do_constructEPvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl10do_destroyEPvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl7do_copyEPvPKvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl8do_splatEPvPKvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl15do_move_forwardEPvPKvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl16do_move_backwardEPvPKvm"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mTag",
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android11ScopedTraceE",
+ "name" : "android::ScopedTrace",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android11ScopedTraceE",
+ "self_type" : "_ZTIN7android11ScopedTraceE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Trace.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mCount",
+ "referenced_type" : "_ZTINSt3__16atomicIiEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE",
+ "name" : "android::LightRefBase<android::NativeHandle>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE",
+ "self_type" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h",
+ "template_args" :
+ [
+ "_ZTIN7android12NativeHandleE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mCount",
+ "referenced_type" : "_ZTINSt3__16atomicIiEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE",
+ "name" : "android::LightRefBase<android::VirtualLightRefBase>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE",
+ "self_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h",
+ "template_args" :
+ [
+ "_ZTIN7android19VirtualLightRefBaseE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mHandle",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIP13native_handle"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mOwnsHandle",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android12NativeHandleE",
+ "name" : "android::NativeHandle",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android12NativeHandleE",
+ "self_type" : "_ZTIN7android12NativeHandleE",
+ "size" : 24,
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android7PrinterE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mPrinter",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIRN7android7PrinterE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPrefix",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android13PrefixPrinterE",
+ "name" : "android::PrefixPrinter",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android13PrefixPrinterE",
+ "self_type" : "_ZTIN7android13PrefixPrinterE",
+ "size" : 24,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android13PrefixPrinterE"
+ },
+ {
+ "mangled_component_name" : "_ZN7android13PrefixPrinter9printLineEPKc"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android13PrefixPrinterD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android13PrefixPrinterD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::trait_pointer<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::trait_pointer<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEEE",
+ "name" : "android::trait_pointer<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "is_virtual" : true,
+ "referenced_type" : "_ZTIN7android7RefBaseE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android14LooperCallbackE",
+ "name" : "android::LooperCallback",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android14LooperCallbackE",
+ "self_type" : "_ZTIN7android14LooperCallbackE",
+ "size" : 24,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "vtable_components" :
+ [
+ {
+ "component_value" : 8,
+ "kind" : "vbase_offset"
+ },
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android14LooperCallbackE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14LooperCallbackD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14LooperCallbackD0Ev"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZN7android14LooperCallback11handleEventEiiPv"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -8,
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -8,
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android14LooperCallbackE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n24_N7android14LooperCallbackD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n24_N7android14LooperCallbackD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "is_virtual" : true,
+ "referenced_type" : "_ZTIN7android7RefBaseE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android14MessageHandlerE",
+ "name" : "android::MessageHandler",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android14MessageHandlerE",
+ "self_type" : "_ZTIN7android14MessageHandlerE",
+ "size" : 24,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "vtable_components" :
+ [
+ {
+ "component_value" : 8,
+ "kind" : "vbase_offset"
+ },
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android14MessageHandlerE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14MessageHandlerD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14MessageHandlerD0Ev"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZN7android14MessageHandler13handleMessageERKNS_7MessageE"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -8,
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -8,
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android14MessageHandlerE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n24_N7android14MessageHandlerD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n24_N7android14MessageHandlerD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android14ReferenceMoverE",
+ "name" : "android::ReferenceMover",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android14ReferenceMoverE",
+ "self_type" : "_ZTIN7android14ReferenceMoverE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android8String16E"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mData",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIKN7android8String1610StaticDataILm1EEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android14StaticString16ILm1EEE",
+ "name" : "android::StaticString16<1>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android14StaticString16ILm1EEE",
+ "self_type" : "_ZTIN7android14StaticString16ILm1EEE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android7PrinterE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mTarget",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPrefix",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android14String8PrinterE",
+ "name" : "android::String8Printer",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android14String8PrinterE",
+ "self_type" : "_ZTIN7android14String8PrinterE",
+ "size" : 24,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android14String8PrinterE"
+ },
+ {
+ "mangled_component_name" : "_ZN7android14String8Printer9printLineEPKc"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14String8PrinterD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14String8PrinterD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIN7android16ReferenceRenamerE",
+ "name" : "android::ReferenceRenamer",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android16ReferenceRenamerE",
+ "self_type" : "_ZTIN7android16ReferenceRenamerE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android16ReferenceRenamerE"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android16ReferenceRenamerclEm"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android10VectorImplE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android16SortedVectorImplE",
+ "name" : "android::SortedVectorImpl",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE",
+ "self_type" : "_ZTIN7android16SortedVectorImplE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android16SortedVectorImplE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android16SortedVectorImplD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android16SortedVectorImplD0Ev"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl12do_constructEPvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl10do_destroyEPvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl7do_copyEPvPKvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl8do_splatEPvPKvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl15do_move_forwardEPvPKvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl16do_move_backwardEPvPKvm"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android16SortedVectorImpl10do_compareEPKvS2_"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTINSt3__117integral_constantIbLb0EEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android16use_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::use_trivial_move<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android16use_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android16use_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTINSt3__117integral_constantIbLb0EEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android16use_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::use_trivial_move<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android16use_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android16use_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTINSt3__117integral_constantIbLb0EEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android16use_trivial_moveINS_6Looper8ResponseEEE",
+ "name" : "android::use_trivial_move<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android16use_trivial_moveINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android16use_trivial_moveINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android14MessageHandlerE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mHandler",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIN7android2wpINS_14MessageHandlerEEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18WeakMessageHandlerE",
+ "name" : "android::WeakMessageHandler",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android18WeakMessageHandlerE",
+ "self_type" : "_ZTIN7android18WeakMessageHandlerE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "vtable_components" :
+ [
+ {
+ "component_value" : 24,
+ "kind" : "vbase_offset"
+ },
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android18WeakMessageHandlerE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android18WeakMessageHandlerD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android18WeakMessageHandlerD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android18WeakMessageHandler13handleMessageERKNS_7MessageE"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -24,
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -24,
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android18WeakMessageHandlerE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n24_N7android18WeakMessageHandlerD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n24_N7android18WeakMessageHandlerD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::trait_trivial_copy<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::trait_trivial_copy<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEEE",
+ "name" : "android::trait_trivial_copy<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIbEE",
+ "name" : "android::trait_trivial_copy<bool>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIbEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIbEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIb"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIcEE",
+ "name" : "android::trait_trivial_copy<char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIcEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIcEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIc"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIdEE",
+ "name" : "android::trait_trivial_copy<double>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIdEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIdEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTId"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIfEE",
+ "name" : "android::trait_trivial_copy<float>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIfEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIfEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIf"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIhEE",
+ "name" : "android::trait_trivial_copy<unsigned char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIhEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIhEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIh"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIiEE",
+ "name" : "android::trait_trivial_copy<int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIiEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIiEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIi"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIjEE",
+ "name" : "android::trait_trivial_copy<unsigned int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIjEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIjEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIj"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIlEE",
+ "name" : "android::trait_trivial_copy<long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIlEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIlEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIl"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyImEE",
+ "name" : "android::trait_trivial_copy<unsigned long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyImEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyImEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIm"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIsEE",
+ "name" : "android::trait_trivial_copy<short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIsEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIsEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIs"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyItEE",
+ "name" : "android::trait_trivial_copy<unsigned short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyItEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyItEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIt"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIvEE",
+ "name" : "android::trait_trivial_copy<void>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIvEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIvEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIv"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIxEE",
+ "name" : "android::trait_trivial_copy<long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIxEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIxEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIx"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIyEE",
+ "name" : "android::trait_trivial_copy<unsigned long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIyEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIyEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIy"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::trait_trivial_ctor<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::trait_trivial_ctor<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEEE",
+ "name" : "android::trait_trivial_ctor<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIbEE",
+ "name" : "android::trait_trivial_ctor<bool>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIbEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIbEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIb"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIcEE",
+ "name" : "android::trait_trivial_ctor<char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIcEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIcEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIc"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIdEE",
+ "name" : "android::trait_trivial_ctor<double>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIdEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIdEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTId"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIfEE",
+ "name" : "android::trait_trivial_ctor<float>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIfEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIfEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIf"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIhEE",
+ "name" : "android::trait_trivial_ctor<unsigned char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIhEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIhEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIh"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIiEE",
+ "name" : "android::trait_trivial_ctor<int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIiEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIiEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIi"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIjEE",
+ "name" : "android::trait_trivial_ctor<unsigned int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIjEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIjEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIj"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIlEE",
+ "name" : "android::trait_trivial_ctor<long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIlEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIlEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIl"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorImEE",
+ "name" : "android::trait_trivial_ctor<unsigned long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorImEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorImEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIm"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIsEE",
+ "name" : "android::trait_trivial_ctor<short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIsEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIsEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIs"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorItEE",
+ "name" : "android::trait_trivial_ctor<unsigned short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorItEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorItEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIt"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIvEE",
+ "name" : "android::trait_trivial_ctor<void>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIvEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIvEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIv"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIxEE",
+ "name" : "android::trait_trivial_ctor<long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIxEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIxEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIx"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIyEE",
+ "name" : "android::trait_trivial_ctor<unsigned long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIyEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIyEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIy"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::trait_trivial_dtor<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::trait_trivial_dtor<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEEE",
+ "name" : "android::trait_trivial_dtor<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIbEE",
+ "name" : "android::trait_trivial_dtor<bool>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIbEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIbEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIb"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIcEE",
+ "name" : "android::trait_trivial_dtor<char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIcEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIcEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIc"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIdEE",
+ "name" : "android::trait_trivial_dtor<double>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIdEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIdEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTId"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIfEE",
+ "name" : "android::trait_trivial_dtor<float>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIfEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIfEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIf"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIhEE",
+ "name" : "android::trait_trivial_dtor<unsigned char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIhEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIhEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIh"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIiEE",
+ "name" : "android::trait_trivial_dtor<int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIiEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIiEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIi"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIjEE",
+ "name" : "android::trait_trivial_dtor<unsigned int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIjEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIjEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIj"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIlEE",
+ "name" : "android::trait_trivial_dtor<long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIlEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIlEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIl"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorImEE",
+ "name" : "android::trait_trivial_dtor<unsigned long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorImEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorImEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIm"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIsEE",
+ "name" : "android::trait_trivial_dtor<short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIsEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIsEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIs"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorItEE",
+ "name" : "android::trait_trivial_dtor<unsigned short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorItEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorItEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIt"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIvEE",
+ "name" : "android::trait_trivial_dtor<void>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIvEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIvEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIv"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIxEE",
+ "name" : "android::trait_trivial_dtor<long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIxEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIxEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIx"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIyEE",
+ "name" : "android::trait_trivial_dtor<unsigned long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIyEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIyEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIy"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::trait_trivial_move<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::trait_trivial_move<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEEE",
+ "name" : "android::trait_trivial_move<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE",
+ "name" : "android::trait_trivial_move<android::String8>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/String8.h",
+ "template_args" :
+ [
+ "_ZTIN7android7String8E"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_8String16EEE",
+ "name" : "android::trait_trivial_move<android::String16>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_8String16EEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_8String16EEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/String16.h",
+ "template_args" :
+ [
+ "_ZTIN7android8String16E"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIbEE",
+ "name" : "android::trait_trivial_move<bool>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIbEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIbEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIb"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIcEE",
+ "name" : "android::trait_trivial_move<char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIcEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIcEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIc"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIdEE",
+ "name" : "android::trait_trivial_move<double>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIdEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIdEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTId"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIfEE",
+ "name" : "android::trait_trivial_move<float>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIfEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIfEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIf"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIhEE",
+ "name" : "android::trait_trivial_move<unsigned char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIhEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIhEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIh"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIiEE",
+ "name" : "android::trait_trivial_move<int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIiEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIiEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIi"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIjEE",
+ "name" : "android::trait_trivial_move<unsigned int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIjEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIjEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIj"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIlEE",
+ "name" : "android::trait_trivial_move<long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIlEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIlEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIl"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveImEE",
+ "name" : "android::trait_trivial_move<unsigned long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveImEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveImEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIm"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIsEE",
+ "name" : "android::trait_trivial_move<short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIsEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIsEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIs"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveItEE",
+ "name" : "android::trait_trivial_move<unsigned short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveItEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveItEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIt"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIvEE",
+ "name" : "android::trait_trivial_move<void>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIvEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIvEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIv"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIxEE",
+ "name" : "android::trait_trivial_move<long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIxEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIxEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIx"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIyEE",
+ "name" : "android::trait_trivial_move<unsigned long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIyEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIyEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIy"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android19VirtualLightRefBaseE",
+ "name" : "android::VirtualLightRefBase",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android19VirtualLightRefBaseE",
+ "self_type" : "_ZTIN7android19VirtualLightRefBaseE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android19VirtualLightRefBaseE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android19VirtualLightRefBaseD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android19VirtualLightRefBaseD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android14LooperCallbackE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mCallback",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPFiiiPvE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android20SimpleLooperCallbackE",
+ "name" : "android::SimpleLooperCallback",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android20SimpleLooperCallbackE",
+ "self_type" : "_ZTIN7android20SimpleLooperCallbackE",
+ "size" : 32,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "vtable_components" :
+ [
+ {
+ "component_value" : 16,
+ "kind" : "vbase_offset"
+ },
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android20SimpleLooperCallbackE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android20SimpleLooperCallbackD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android20SimpleLooperCallbackD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android20SimpleLooperCallback11handleEventEiiPv"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -16,
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -16,
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android20SimpleLooperCallbackE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n24_N7android20SimpleLooperCallbackD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n24_N7android20SimpleLooperCallbackD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android12NativeHandleE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "name" : "android::sp<android::NativeHandle>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "self_type" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android12NativeHandleE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android14LooperCallbackE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "name" : "android::sp<android::LooperCallback>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android14LooperCallbackE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android14MessageHandlerE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "name" : "android::sp<android::MessageHandler>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android14MessageHandlerE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "android::sp<android::SimpleLooperCallback>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android20SimpleLooperCallbackE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_6LooperEEE",
+ "name" : "android::sp<android::Looper>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android6LooperE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_6ThreadEEE",
+ "name" : "android::sp<android::Thread>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android6ThreadE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android14MessageHandlerE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "m_refs",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2wpINS_14MessageHandlerEEE",
+ "name" : "android::wp<android::MessageHandler>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2wpINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIN7android2wpINS_14MessageHandlerEEE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "template_args" :
+ [
+ "_ZTIN7android14MessageHandlerE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "m_refs",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2wpINS_6ThreadEEE",
+ "name" : "android::wp<android::Thread>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2wpINS_6ThreadEEE",
+ "self_type" : "_ZTIN7android2wpINS_6ThreadEEE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "template_args" :
+ [
+ "_ZTIN7android6ThreadE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "fd_",
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android4base11borrowed_fdE",
+ "name" : "android::base::borrowed_fd",
+ "referenced_type" : "_ZTIN7android4base11borrowed_fdE",
+ "self_type" : "_ZTIN7android4base11borrowed_fdE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android4base13DefaultCloserE",
+ "name" : "android::base::DefaultCloser",
+ "referenced_type" : "_ZTIN7android4base13DefaultCloserE",
+ "self_type" : "_ZTIN7android4base13DefaultCloserE",
+ "size" : 1,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "fd_",
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "name" : "android::base::unique_fd_impl<android::base::DefaultCloser>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "self_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h",
+ "template_args" :
+ [
+ "_ZTIN7android4base13DefaultCloserE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mLock",
+ "referenced_type" : "_ZTIRN7android5MutexE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android5Mutex8AutolockE",
+ "name" : "android::Mutex::Autolock",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android5Mutex8AutolockE",
+ "self_type" : "_ZTIN7android5Mutex8AutolockE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mMutex",
+ "referenced_type" : "_ZTI15pthread_mutex_t"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android5MutexE",
+ "name" : "android::Mutex",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android5MutexE",
+ "self_type" : "_ZTIN7android5MutexE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h"
+ },
+ {
+ "access" : "private",
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "field_name" : "uptime",
+ "referenced_type" : "_ZTIl"
+ },
+ {
+ "field_name" : "handler",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE"
+ },
+ {
+ "field_name" : "message",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIN7android7MessageE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper15MessageEnvelopeE",
+ "name" : "android::Looper::MessageEnvelope",
+ "referenced_type" : "_ZTIN7android6Looper15MessageEnvelopeE",
+ "self_type" : "_ZTIN7android6Looper15MessageEnvelopeE",
+ "size" : 24,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "field_name" : "fd",
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "ident",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "events",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "callback",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIN7android2spINS_14LooperCallbackEEE"
+ },
+ {
+ "field_name" : "data",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper7RequestE",
+ "name" : "android::Looper::Request",
+ "referenced_type" : "_ZTIN7android6Looper7RequestE",
+ "self_type" : "_ZTIN7android6Looper7RequestE",
+ "size" : 32,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "field_name" : "seq",
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "field_name" : "events",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "request",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIN7android6Looper7RequestE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper8ResponseE",
+ "name" : "android::Looper::Response",
+ "referenced_type" : "_ZTIN7android6Looper8ResponseE",
+ "self_type" : "_ZTIN7android6Looper8ResponseE",
+ "size" : 48,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android7RefBaseE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mAllowNonCallbacks",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIKb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mWakeEventFd",
+ "field_offset" : 160,
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mLock",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIN7android5MutexE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mMessageEnvelopes",
+ "field_offset" : 512,
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mSendingMessage",
+ "field_offset" : 832,
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPolling",
+ "field_offset" : 840,
+ "referenced_type" : "_ZTIVb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mEpollFd",
+ "field_offset" : 864,
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mEpollRebuildRequired",
+ "field_offset" : 896,
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mRequests",
+ "field_offset" : 960,
+ "referenced_type" : "_ZTINSt3__113unordered_mapImN7android6Looper7RequestENS_4hashImEENS_8equal_toImEENS_9allocatorINS_4pairIKmS3_EEEEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mSequenceNumberByFd",
+ "field_offset" : 1280,
+ "referenced_type" : "_ZTINSt3__113unordered_mapIimNS_4hashIiEENS_8equal_toIiEENS_9allocatorINS_4pairIKimEEEEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mNextRequestSeq",
+ "field_offset" : 1600,
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mResponses",
+ "field_offset" : 1664,
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mResponseIndex",
+ "field_offset" : 1984,
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mNextMessageUptime",
+ "field_offset" : 2048,
+ "referenced_type" : "_ZTIl"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6LooperE",
+ "name" : "android::Looper",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6LooperE",
+ "self_type" : "_ZTIN7android6LooperE",
+ "size" : 264,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6LooperE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6LooperD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6LooperD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mLock",
+ "referenced_type" : "_ZTIRN7android6RWLockE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6RWLock9AutoRLockE",
+ "name" : "android::RWLock::AutoRLock",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6RWLock9AutoRLockE",
+ "self_type" : "_ZTIN7android6RWLock9AutoRLockE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mLock",
+ "referenced_type" : "_ZTIRN7android6RWLockE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6RWLock9AutoWLockE",
+ "name" : "android::RWLock::AutoWLock",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6RWLock9AutoWLockE",
+ "self_type" : "_ZTIN7android6RWLock9AutoWLockE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mRWLock",
+ "referenced_type" : "_ZTI16pthread_rwlock_t"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6RWLockE",
+ "name" : "android::RWLock",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6RWLockE",
+ "self_type" : "_ZTIN7android6RWLockE",
+ "size" : 56,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "is_virtual" : true,
+ "referenced_type" : "_ZTIN7android7RefBaseE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mCanCallJava",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIKb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mThread",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mLock",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIN7android5MutexE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mThreadExitedCondition",
+ "field_offset" : 512,
+ "referenced_type" : "_ZTIN7android9ConditionE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mStatus",
+ "field_offset" : 896,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mExitPending",
+ "field_offset" : 928,
+ "referenced_type" : "_ZTIVb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mRunning",
+ "field_offset" : 936,
+ "referenced_type" : "_ZTIVb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mHoldSelf",
+ "field_offset" : 960,
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mTid",
+ "field_offset" : 1024,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6ThreadE",
+ "name" : "android::Thread",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6ThreadE",
+ "self_type" : "_ZTIN7android6ThreadE",
+ "size" : 152,
+ "source_file" : "system/core/libutils/include/utils/Thread.h",
+ "vtable_components" :
+ [
+ {
+ "component_value" : 136,
+ "kind" : "vbase_offset"
+ },
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6ThreadE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6ThreadD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6ThreadD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android6Thread3runEPKcim"
+ },
+ {
+ "mangled_component_name" : "_ZN7android6Thread11requestExitEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android6Thread10readyToRunEv"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZN7android6Thread10threadLoopEv"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -136,
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -136,
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6ThreadE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n24_N7android6ThreadD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n24_N7android6ThreadD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "access" : "private",
+ "referenced_type" : "_ZTIN7android10VectorImplE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::Vector<android::sysprop_change_callback_info>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Vector.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ],
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_28sysprop_change_callback_infoEED1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_28sysprop_change_callback_infoEED0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE12do_constructEPvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE10do_destroyEPvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE7do_copyEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE8do_splatEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE15do_move_forwardEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE16do_move_backwardEPvPKvm"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "access" : "private",
+ "referenced_type" : "_ZTIN7android10VectorImplE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::Vector<android::Looper::MessageEnvelope>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Vector.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ],
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_6Looper15MessageEnvelopeEED1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_6Looper15MessageEnvelopeEED0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE12do_constructEPvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE10do_destroyEPvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE7do_copyEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE8do_splatEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE15do_move_forwardEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE16do_move_backwardEPvPKvm"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "access" : "private",
+ "referenced_type" : "_ZTIN7android10VectorImplE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE",
+ "name" : "android::Vector<android::Looper::Response>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Vector.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ],
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_6Looper8ResponseEED1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_6Looper8ResponseEED0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE12do_constructEPvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE10do_destroyEPvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE7do_copyEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE8do_splatEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE15do_move_forwardEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE16do_move_backwardEPvPKvm"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "access" : "private",
+ "referenced_type" : "_ZTIN7android10VectorImplE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6VectorINS_7String8EEE",
+ "name" : "android::Vector<android::String8>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6VectorINS_7String8EEE",
+ "self_type" : "_ZTIN7android6VectorINS_7String8EEE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/Vector.h",
+ "template_args" :
+ [
+ "_ZTIN7android7String8E"
+ ],
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6VectorINS_7String8EEE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_7String8EED1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_7String8EED0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE12do_constructEPvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE10do_destroyEPvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE7do_copyEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE8do_splatEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE15do_move_forwardEPvPKvm"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE16do_move_backwardEPvPKvm"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::traits<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::traits<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android6traitsINS_6Looper8ResponseEEE",
+ "name" : "android::traits<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android6traitsINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android6traitsINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mFileName",
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mBasePtr",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mBaseLength",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mDataOffset",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIl"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mDataPtr",
+ "field_offset" : 256,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mDataLength",
+ "field_offset" : 320,
+ "referenced_type" : "_ZTIm"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7FileMapE",
+ "name" : "android::FileMap",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android7FileMapE",
+ "self_type" : "_ZTIN7android7FileMapE",
+ "size" : 48,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "what",
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7MessageE",
+ "name" : "android::Message",
+ "referenced_type" : "_ZTIN7android7MessageE",
+ "self_type" : "_ZTIN7android7MessageE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTIN7android7PrinterE",
+ "name" : "android::Printer",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android7PrinterE",
+ "self_type" : "_ZTIN7android7PrinterE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android7PrinterE"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZN7android7Printer9printLineEPKc"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android7PrinterD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android7PrinterD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android7RefBase12weakref_typeE",
+ "name" : "android::RefBase::weakref_type",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE",
+ "self_type" : "_ZTIN7android7RefBase12weakref_typeE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mRefs",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIKPN7android7RefBase12weakref_implE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7RefBaseE",
+ "name" : "android::RefBase",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android7RefBaseE",
+ "self_type" : "_ZTIN7android7RefBaseE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android7RefBaseE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android7RefBaseD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android7RefBaseD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mString",
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7String8E",
+ "name" : "android::String8",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android7String8E",
+ "self_type" : "_ZTIN7android7String8E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "size",
+ "referenced_type" : "_ZTIKj"
+ },
+ {
+ "field_name" : "data",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIA1_Ds"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android8String1610StaticDataILm1EEE",
+ "name" : "android::String16::StaticData<1>",
+ "referenced_type" : "_ZTIN7android8String1610StaticDataILm1EEE",
+ "self_type" : "_ZTIN7android8String1610StaticDataILm1EEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mString",
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android8String16E",
+ "name" : "android::String16",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android8String16E",
+ "self_type" : "_ZTIN7android8String16E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android9CallStack12StackDeleterE",
+ "name" : "android::CallStack::StackDeleter",
+ "referenced_type" : "_ZTIN7android9CallStack12StackDeleterE",
+ "self_type" : "_ZTIN7android9CallStack12StackDeleterE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mFrameLines",
+ "referenced_type" : "_ZTIN7android6VectorINS_7String8EEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9CallStackE",
+ "name" : "android::CallStack",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android9CallStackE",
+ "self_type" : "_ZTIN7android9CallStackE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mCond",
+ "referenced_type" : "_ZTI14pthread_cond_t"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9ConditionE",
+ "name" : "android::Condition",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android9ConditionE",
+ "self_type" : "_ZTIN7android9ConditionE",
+ "size" : 48,
+ "source_file" : "system/core/libutils/include/utils/Condition.h"
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android7PrinterE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mFd",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mIndent",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPrefix",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mFormatString",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIA20_c"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9FdPrinterE",
+ "name" : "android::FdPrinter",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android9FdPrinterE",
+ "self_type" : "_ZTIN7android9FdPrinterE",
+ "size" : 48,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android9FdPrinterE"
+ },
+ {
+ "mangled_component_name" : "_ZN7android9FdPrinter9printLineEPKc"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android9FdPrinterD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android9FdPrinterD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mName",
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mClock",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mStartTime",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIl"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9StopWatchE",
+ "name" : "android::StopWatch",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android9StopWatchE",
+ "self_type" : "_ZTIN7android9StopWatchE",
+ "size" : 24,
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mFilename",
+ "referenced_type" : "_ZTIN7android7String8E"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mFileMap",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mBuffer",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mOwnBuffer",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mLength",
+ "field_offset" : 256,
+ "referenced_type" : "_ZTIm"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mCurrent",
+ "field_offset" : 320,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mLineNumber",
+ "field_offset" : 384,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9TokenizerE",
+ "name" : "android::Tokenizer",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android9TokenizerE",
+ "self_type" : "_ZTIN7android9TokenizerE",
+ "size" : 56,
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "buf",
+ "referenced_type" : "_ZTIA5121_h"
+ },
+ {
+ "field_name" : "entry",
+ "referenced_type" : "_ZTI12logger_entry"
+ }
+ ],
+ "is_anonymous" : true,
+ "linker_set_key" : "_ZTIN7log_msgUt_E",
+ "name" : "log_msg::(anonymous)",
+ "record_kind" : "union",
+ "referenced_type" : "_ZTIN7log_msgUt_E",
+ "self_type" : "_ZTIN7log_msgUt_E",
+ "size" : 5124,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ }
+ ],
+ "rvalue_reference_types" :
+ [
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTION7android2spINS_12NativeHandleEEE",
+ "name" : "android::sp<android::NativeHandle> &&",
+ "referenced_type" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "self_type" : "_ZTION7android2spINS_12NativeHandleEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTION7android2spINS_14MessageHandlerEEE",
+ "name" : "android::sp<android::MessageHandler> &&",
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTION7android2spINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTION7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "android::sp<android::SimpleLooperCallback> &&",
+ "referenced_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTION7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTION7android2spINS_6LooperEEE",
+ "name" : "android::sp<android::Looper> &&",
+ "referenced_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTION7android2spINS_6LooperEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTION7android2spINS_6ThreadEEE",
+ "name" : "android::sp<android::Thread> &&",
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTION7android2spINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTION7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "name" : "android::base::unique_fd_impl<android::base::DefaultCloser> &&",
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "self_type" : "_ZTION7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "size" : 8,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTION7android7FileMapE",
+ "name" : "android::FileMap &&",
+ "referenced_type" : "_ZTIN7android7FileMapE",
+ "self_type" : "_ZTION7android7FileMapE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTION7android8String16E",
+ "name" : "android::String16 &&",
+ "referenced_type" : "_ZTIN7android8String16E",
+ "self_type" : "_ZTION7android8String16E",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ }
+ ]
+}
diff --git a/libutils/abi-dumps/arm_arm64/source-based/libutils.so.lsdump b/libutils/abi-dumps/arm_arm64/source-based/libutils.so.lsdump
new file mode 100644
index 0000000..f88da15
--- /dev/null
+++ b/libutils/abi-dumps/arm_arm64/source-based/libutils.so.lsdump
@@ -0,0 +1,15549 @@
+{
+ "array_types" :
+ [
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIA0_i",
+ "name" : "int[0]",
+ "referenced_type" : "_ZTIi",
+ "self_type" : "_ZTIA0_i",
+ "source_file" : "system/core/libcutils/include_outside_system/cutils/native_handle.h"
+ },
+ {
+ "alignment" : 2,
+ "linker_set_key" : "_ZTIA1_Ds",
+ "name" : "char16_t[1]",
+ "referenced_type" : "_ZTIDs",
+ "self_type" : "_ZTIA1_Ds",
+ "size" : 2,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIA20_c",
+ "name" : "char[20]",
+ "referenced_type" : "_ZTIc",
+ "self_type" : "_ZTIA20_c",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIA5121_h",
+ "name" : "unsigned char[5121]",
+ "referenced_type" : "_ZTIh",
+ "self_type" : "_ZTIA5121_h",
+ "size" : 5121,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIA8_j",
+ "name" : "unsigned int[8]",
+ "referenced_type" : "_ZTIj",
+ "self_type" : "_ZTIA8_j",
+ "size" : 32,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "linker_set_key" : "_ZTIA_f",
+ "name" : "float[]",
+ "referenced_type" : "_ZTIf",
+ "self_type" : "_ZTIA_f",
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ }
+ ],
+ "builtin_types" :
+ [
+ {
+ "alignment" : 4,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIDi",
+ "name" : "char32_t",
+ "referenced_type" : "_ZTIDi",
+ "self_type" : "_ZTIDi",
+ "size" : 4
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIDn",
+ "name" : "std::nullptr_t",
+ "referenced_type" : "_ZTIDn",
+ "self_type" : "_ZTIDn",
+ "size" : 4
+ },
+ {
+ "alignment" : 2,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIDs",
+ "name" : "char16_t",
+ "referenced_type" : "_ZTIDs",
+ "self_type" : "_ZTIDs",
+ "size" : 2
+ },
+ {
+ "alignment" : 1,
+ "is_integral" : true,
+ "linker_set_key" : "_ZTIa",
+ "name" : "signed char",
+ "referenced_type" : "_ZTIa",
+ "self_type" : "_ZTIa",
+ "size" : 1
+ },
+ {
+ "alignment" : 1,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIb",
+ "name" : "bool",
+ "referenced_type" : "_ZTIb",
+ "self_type" : "_ZTIb",
+ "size" : 1
+ },
+ {
+ "alignment" : 1,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIc",
+ "name" : "char",
+ "referenced_type" : "_ZTIc",
+ "self_type" : "_ZTIc",
+ "size" : 1
+ },
+ {
+ "alignment" : 8,
+ "linker_set_key" : "_ZTId",
+ "name" : "double",
+ "referenced_type" : "_ZTId",
+ "self_type" : "_ZTId",
+ "size" : 8
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIf",
+ "name" : "float",
+ "referenced_type" : "_ZTIf",
+ "self_type" : "_ZTIf",
+ "size" : 4
+ },
+ {
+ "alignment" : 1,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIh",
+ "name" : "unsigned char",
+ "referenced_type" : "_ZTIh",
+ "self_type" : "_ZTIh",
+ "size" : 1
+ },
+ {
+ "alignment" : 4,
+ "is_integral" : true,
+ "linker_set_key" : "_ZTIi",
+ "name" : "int",
+ "referenced_type" : "_ZTIi",
+ "self_type" : "_ZTIi",
+ "size" : 4
+ },
+ {
+ "alignment" : 4,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIj",
+ "name" : "unsigned int",
+ "referenced_type" : "_ZTIj",
+ "self_type" : "_ZTIj",
+ "size" : 4
+ },
+ {
+ "alignment" : 4,
+ "is_integral" : true,
+ "linker_set_key" : "_ZTIl",
+ "name" : "long",
+ "referenced_type" : "_ZTIl",
+ "self_type" : "_ZTIl",
+ "size" : 4
+ },
+ {
+ "alignment" : 4,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIm",
+ "name" : "unsigned long",
+ "referenced_type" : "_ZTIm",
+ "self_type" : "_ZTIm",
+ "size" : 4
+ },
+ {
+ "alignment" : 2,
+ "is_integral" : true,
+ "linker_set_key" : "_ZTIs",
+ "name" : "short",
+ "referenced_type" : "_ZTIs",
+ "self_type" : "_ZTIs",
+ "size" : 2
+ },
+ {
+ "alignment" : 2,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIt",
+ "name" : "unsigned short",
+ "referenced_type" : "_ZTIt",
+ "self_type" : "_ZTIt",
+ "size" : 2
+ },
+ {
+ "linker_set_key" : "_ZTIv",
+ "name" : "void",
+ "referenced_type" : "_ZTIv",
+ "self_type" : "_ZTIv"
+ },
+ {
+ "alignment" : 8,
+ "is_integral" : true,
+ "linker_set_key" : "_ZTIx",
+ "name" : "long long",
+ "referenced_type" : "_ZTIx",
+ "self_type" : "_ZTIx",
+ "size" : 8
+ },
+ {
+ "alignment" : 8,
+ "is_integral" : true,
+ "is_unsigned" : true,
+ "linker_set_key" : "_ZTIy",
+ "name" : "unsigned long long",
+ "referenced_type" : "_ZTIy",
+ "self_type" : "_ZTIy",
+ "size" : 8
+ }
+ ],
+ "elf_functions" :
+ [
+ {
+ "name" : "_Z24androidCreateThreadGetIDPFiPvES_PS_"
+ },
+ {
+ "name" : "_ZN7android10LogPrinter8printRawEPKc"
+ },
+ {
+ "name" : "_ZN7android10LogPrinter9printLineEPKc"
+ },
+ {
+ "name" : "_ZN7android10LogPrinterC1EPKc19android_LogPriorityS2_b"
+ },
+ {
+ "name" : "_ZN7android10LogPrinterC2EPKc19android_LogPriorityS2_b"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl11appendArrayEPKvj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl11setCapacityEj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl12appendVectorERKS0_"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl13editArrayImplEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl13finish_vectorEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl13insertArrayAtEPKvjj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl13removeItemsAtEjj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl14insertVectorAtERKS0_j"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl15release_storageEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl16editItemLocationEj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl3addEPKv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl3addEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl3popEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl4pushEPKv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl4pushEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl4sortEPFiPKvS2_E"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl4sortEPFiPKvS2_PvES3_"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl5_growEjj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl5clearEv"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl6resizeEj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl7_shrinkEjj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl8insertAtEPKvjj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl8insertAtEjj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl9replaceAtEPKvj"
+ },
+ {
+ "name" : "_ZN7android10VectorImpl9replaceAtEj"
+ },
+ {
+ "name" : "_ZN7android10VectorImplC2ERKS0_"
+ },
+ {
+ "name" : "_ZN7android10VectorImplC2Ejj"
+ },
+ {
+ "name" : "_ZN7android10VectorImplD0Ev"
+ },
+ {
+ "name" : "_ZN7android10VectorImplD1Ev"
+ },
+ {
+ "name" : "_ZN7android10VectorImplD2Ev"
+ },
+ {
+ "name" : "_ZN7android10VectorImplaSERKS0_"
+ },
+ {
+ "name" : "_ZN7android11uptimeNanosEv"
+ },
+ {
+ "name" : "_ZN7android12NativeHandle6createEP13native_handleb"
+ },
+ {
+ "name" : "_ZN7android12NativeHandleC1EP13native_handleb"
+ },
+ {
+ "name" : "_ZN7android12NativeHandleC2EP13native_handleb"
+ },
+ {
+ "name" : "_ZN7android12NativeHandleD1Ev"
+ },
+ {
+ "name" : "_ZN7android12NativeHandleD2Ev"
+ },
+ {
+ "name" : "_ZN7android12SharedBuffer5allocEj"
+ },
+ {
+ "name" : "_ZN7android12SharedBuffer7deallocEPKS0_"
+ },
+ {
+ "name" : "_ZN7android12uptimeMillisEv"
+ },
+ {
+ "name" : "_ZN7android13PrefixPrinter9printLineEPKc"
+ },
+ {
+ "name" : "_ZN7android13PrefixPrinterC1ERNS_7PrinterEPKc"
+ },
+ {
+ "name" : "_ZN7android13PrefixPrinterC2ERNS_7PrinterEPKc"
+ },
+ {
+ "name" : "_ZN7android14LooperCallbackD0Ev"
+ },
+ {
+ "name" : "_ZN7android14LooperCallbackD1Ev"
+ },
+ {
+ "name" : "_ZN7android14LooperCallbackD2Ev"
+ },
+ {
+ "name" : "_ZN7android14MessageHandlerD0Ev"
+ },
+ {
+ "name" : "_ZN7android14MessageHandlerD1Ev"
+ },
+ {
+ "name" : "_ZN7android14MessageHandlerD2Ev"
+ },
+ {
+ "name" : "_ZN7android14String8Printer9printLineEPKc"
+ },
+ {
+ "name" : "_ZN7android14String8PrinterC1EPNS_7String8EPKc"
+ },
+ {
+ "name" : "_ZN7android14String8PrinterC2EPNS_7String8EPKc"
+ },
+ {
+ "name" : "_ZN7android14sp_report_raceEv"
+ },
+ {
+ "name" : "_ZN7android14statusToStringEi"
+ },
+ {
+ "name" : "_ZN7android15elapsedRealtimeEv"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImpl3addEPKv"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImpl5mergeERKNS_10VectorImplE"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImpl5mergeERKS0_"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImpl6removeEPKv"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplC2ERKNS_10VectorImplE"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplC2Ejj"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplD0Ev"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplD1Ev"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplD2Ev"
+ },
+ {
+ "name" : "_ZN7android16SortedVectorImplaSERKS0_"
+ },
+ {
+ "name" : "_ZN7android17JenkinsHashWhitenEj"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandler13handleMessageERKNS_7MessageE"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandlerC1ERKNS_2wpINS_14MessageHandlerEEE"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandlerC2ERKNS_2wpINS_14MessageHandlerEEE"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandlerD0Ev"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandlerD1Ev"
+ },
+ {
+ "name" : "_ZN7android18WeakMessageHandlerD2Ev"
+ },
+ {
+ "name" : "_ZN7android19JenkinsHashMixBytesEjPKhj"
+ },
+ {
+ "name" : "_ZN7android19elapsedRealtimeNanoEv"
+ },
+ {
+ "name" : "_ZN7android20JenkinsHashMixShortsEjPKtj"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallback11handleEventEiiPv"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallbackC1EPFiiiPvE"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallbackC2EPFiiiPvE"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallbackD0Ev"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallbackD1Ev"
+ },
+ {
+ "name" : "_ZN7android20SimpleLooperCallbackD2Ev"
+ },
+ {
+ "name" : "_ZN7android21report_sysprop_changeEv"
+ },
+ {
+ "name" : "_ZN7android23sp_report_stack_pointerEv"
+ },
+ {
+ "name" : "_ZN7android27add_sysprop_change_callbackEPFvvEi"
+ },
+ {
+ "name" : "_ZN7android30get_report_sysprop_change_funcEv"
+ },
+ {
+ "name" : "_ZN7android47LightRefBase_reportIncStrongRequireStrongFailedEPKv"
+ },
+ {
+ "name" : "_ZN7android6Looper10initTLSKeyEv"
+ },
+ {
+ "name" : "_ZN7android6Looper11sendMessageERKNS_2spINS_14MessageHandlerEEERKNS_7MessageE"
+ },
+ {
+ "name" : "_ZN7android6Looper12getForThreadEv"
+ },
+ {
+ "name" : "_ZN7android6Looper12setForThreadERKNS_2spIS0_EE"
+ },
+ {
+ "name" : "_ZN7android6Looper14removeMessagesERKNS_2spINS_14MessageHandlerEEE"
+ },
+ {
+ "name" : "_ZN7android6Looper14removeMessagesERKNS_2spINS_14MessageHandlerEEEi"
+ },
+ {
+ "name" : "_ZN7android6Looper16threadDestructorEPv"
+ },
+ {
+ "name" : "_ZN7android6Looper17sendMessageAtTimeExRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE"
+ },
+ {
+ "name" : "_ZN7android6Looper18rebuildEpollLockedEv"
+ },
+ {
+ "name" : "_ZN7android6Looper18sendMessageDelayedExRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE"
+ },
+ {
+ "name" : "_ZN7android6Looper26removeSequenceNumberLockedEy"
+ },
+ {
+ "name" : "_ZN7android6Looper26scheduleEpollRebuildLockedEv"
+ },
+ {
+ "name" : "_ZN7android6Looper4wakeEv"
+ },
+ {
+ "name" : "_ZN7android6Looper5addFdEiiiPFiiiPvES1_"
+ },
+ {
+ "name" : "_ZN7android6Looper5addFdEiiiRKNS_2spINS_14LooperCallbackEEEPv"
+ },
+ {
+ "name" : "_ZN7android6Looper6awokenEv"
+ },
+ {
+ "name" : "_ZN7android6Looper7pollAllEiPiS1_PPv"
+ },
+ {
+ "name" : "_ZN7android6Looper7prepareEi"
+ },
+ {
+ "name" : "_ZN7android6Looper8pollOnceEiPiS1_PPv"
+ },
+ {
+ "name" : "_ZN7android6Looper8removeFdEi"
+ },
+ {
+ "name" : "_ZN7android6Looper9pollInnerEi"
+ },
+ {
+ "name" : "_ZN7android6LooperC1Eb"
+ },
+ {
+ "name" : "_ZN7android6LooperC2Eb"
+ },
+ {
+ "name" : "_ZN7android6LooperD0Ev"
+ },
+ {
+ "name" : "_ZN7android6LooperD1Ev"
+ },
+ {
+ "name" : "_ZN7android6LooperD2Ev"
+ },
+ {
+ "name" : "_ZN7android6Thread10readyToRunEv"
+ },
+ {
+ "name" : "_ZN7android6Thread11_threadLoopEPv"
+ },
+ {
+ "name" : "_ZN7android6Thread11requestExitEv"
+ },
+ {
+ "name" : "_ZN7android6Thread18requestExitAndWaitEv"
+ },
+ {
+ "name" : "_ZN7android6Thread3runEPKcij"
+ },
+ {
+ "name" : "_ZN7android6Thread4joinEv"
+ },
+ {
+ "name" : "_ZN7android6ThreadC2Eb"
+ },
+ {
+ "name" : "_ZN7android6ThreadD0Ev"
+ },
+ {
+ "name" : "_ZN7android6ThreadD1Ev"
+ },
+ {
+ "name" : "_ZN7android6ThreadD2Ev"
+ },
+ {
+ "name" : "_ZN7android7FileMap6adviseENS0_9MapAdviceE"
+ },
+ {
+ "name" : "_ZN7android7FileMap6createEPKcixjb"
+ },
+ {
+ "name" : "_ZN7android7FileMapC1EOS0_"
+ },
+ {
+ "name" : "_ZN7android7FileMapC1Ev"
+ },
+ {
+ "name" : "_ZN7android7FileMapC2EOS0_"
+ },
+ {
+ "name" : "_ZN7android7FileMapC2Ev"
+ },
+ {
+ "name" : "_ZN7android7FileMapD1Ev"
+ },
+ {
+ "name" : "_ZN7android7FileMapD2Ev"
+ },
+ {
+ "name" : "_ZN7android7FileMapaSEOS0_"
+ },
+ {
+ "name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "name" : "_ZN7android7PrinterC2Ev"
+ },
+ {
+ "name" : "_ZN7android7PrinterD0Ev"
+ },
+ {
+ "name" : "_ZN7android7PrinterD1Ev"
+ },
+ {
+ "name" : "_ZN7android7PrinterD2Ev"
+ },
+ {
+ "name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "name" : "_ZN7android7RefBase10renameRefsEjRKNS_16ReferenceRenamerE"
+ },
+ {
+ "name" : "_ZN7android7RefBase11renameRefIdEPNS0_12weakref_typeEPKvS4_"
+ },
+ {
+ "name" : "_ZN7android7RefBase11renameRefIdEPS0_PKvS3_"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type14attemptIncWeakEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type16attemptIncStrongEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type18incWeakRequireWeakEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type7decWeakEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type7incWeakEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase12weakref_type7trackMeEbb"
+ },
+ {
+ "name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBase20extendObjectLifetimeEi"
+ },
+ {
+ "name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "name" : "_ZN7android7RefBaseC1Ev"
+ },
+ {
+ "name" : "_ZN7android7RefBaseC2Ev"
+ },
+ {
+ "name" : "_ZN7android7RefBaseD0Ev"
+ },
+ {
+ "name" : "_ZN7android7RefBaseD1Ev"
+ },
+ {
+ "name" : "_ZN7android7RefBaseD2Ev"
+ },
+ {
+ "name" : "_ZN7android7String810appendPathEPKc"
+ },
+ {
+ "name" : "_ZN7android7String810lockBufferEj"
+ },
+ {
+ "name" : "_ZN7android7String811real_appendEPKcj"
+ },
+ {
+ "name" : "_ZN7android7String812appendFormatEPKcz"
+ },
+ {
+ "name" : "_ZN7android7String812unlockBufferEj"
+ },
+ {
+ "name" : "_ZN7android7String812unlockBufferEv"
+ },
+ {
+ "name" : "_ZN7android7String813appendFormatVEPKcSt9__va_list"
+ },
+ {
+ "name" : "_ZN7android7String816convertToResPathEv"
+ },
+ {
+ "name" : "_ZN7android7String85clearEv"
+ },
+ {
+ "name" : "_ZN7android7String85setToEPKDij"
+ },
+ {
+ "name" : "_ZN7android7String85setToEPKDsj"
+ },
+ {
+ "name" : "_ZN7android7String85setToEPKc"
+ },
+ {
+ "name" : "_ZN7android7String85setToEPKcj"
+ },
+ {
+ "name" : "_ZN7android7String85setToERKS0_"
+ },
+ {
+ "name" : "_ZN7android7String86appendEPKc"
+ },
+ {
+ "name" : "_ZN7android7String86appendEPKcj"
+ },
+ {
+ "name" : "_ZN7android7String86appendERKS0_"
+ },
+ {
+ "name" : "_ZN7android7String86formatEPKcz"
+ },
+ {
+ "name" : "_ZN7android7String87formatVEPKcSt9__va_list"
+ },
+ {
+ "name" : "_ZN7android7String87toLowerEv"
+ },
+ {
+ "name" : "_ZN7android7String89removeAllEPKc"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKDi"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKDij"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKDs"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKDsj"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKc"
+ },
+ {
+ "name" : "_ZN7android7String8C1EPKcj"
+ },
+ {
+ "name" : "_ZN7android7String8C1ERKNS_8String16E"
+ },
+ {
+ "name" : "_ZN7android7String8C1ERKS0_"
+ },
+ {
+ "name" : "_ZN7android7String8C1Ev"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKDi"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKDij"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKDs"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKDsj"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKc"
+ },
+ {
+ "name" : "_ZN7android7String8C2EPKcj"
+ },
+ {
+ "name" : "_ZN7android7String8C2ERKNS_8String16E"
+ },
+ {
+ "name" : "_ZN7android7String8C2ERKS0_"
+ },
+ {
+ "name" : "_ZN7android7String8C2Ev"
+ },
+ {
+ "name" : "_ZN7android7String8D1Ev"
+ },
+ {
+ "name" : "_ZN7android7String8D2Ev"
+ },
+ {
+ "name" : "_ZN7android8String1610editResizeEj"
+ },
+ {
+ "name" : "_ZN7android8String1610replaceAllEDsDs"
+ },
+ {
+ "name" : "_ZN7android8String1613allocFromUTF8EPKcj"
+ },
+ {
+ "name" : "_ZN7android8String1614allocFromUTF16EPKDsj"
+ },
+ {
+ "name" : "_ZN7android8String164editEv"
+ },
+ {
+ "name" : "_ZN7android8String165allocEj"
+ },
+ {
+ "name" : "_ZN7android8String165setToEPKDs"
+ },
+ {
+ "name" : "_ZN7android8String165setToEPKDsj"
+ },
+ {
+ "name" : "_ZN7android8String165setToERKS0_"
+ },
+ {
+ "name" : "_ZN7android8String165setToERKS0_jj"
+ },
+ {
+ "name" : "_ZN7android8String166appendEPKDsj"
+ },
+ {
+ "name" : "_ZN7android8String166appendERKS0_"
+ },
+ {
+ "name" : "_ZN7android8String166insertEjPKDs"
+ },
+ {
+ "name" : "_ZN7android8String166insertEjPKDsj"
+ },
+ {
+ "name" : "_ZN7android8String167acquireEv"
+ },
+ {
+ "name" : "_ZN7android8String167releaseEv"
+ },
+ {
+ "name" : "_ZN7android8String16C1EOS0_"
+ },
+ {
+ "name" : "_ZN7android8String16C1EPKDs"
+ },
+ {
+ "name" : "_ZN7android8String16C1EPKDsj"
+ },
+ {
+ "name" : "_ZN7android8String16C1EPKc"
+ },
+ {
+ "name" : "_ZN7android8String16C1EPKcj"
+ },
+ {
+ "name" : "_ZN7android8String16C1ERKNS_7String8E"
+ },
+ {
+ "name" : "_ZN7android8String16C1ERKS0_"
+ },
+ {
+ "name" : "_ZN7android8String16C1ERKS0_jj"
+ },
+ {
+ "name" : "_ZN7android8String16C1Ev"
+ },
+ {
+ "name" : "_ZN7android8String16C2EOS0_"
+ },
+ {
+ "name" : "_ZN7android8String16C2EPKDs"
+ },
+ {
+ "name" : "_ZN7android8String16C2EPKDsj"
+ },
+ {
+ "name" : "_ZN7android8String16C2EPKc"
+ },
+ {
+ "name" : "_ZN7android8String16C2EPKcj"
+ },
+ {
+ "name" : "_ZN7android8String16C2ERKNS_7String8E"
+ },
+ {
+ "name" : "_ZN7android8String16C2ERKS0_"
+ },
+ {
+ "name" : "_ZN7android8String16C2ERKS0_jj"
+ },
+ {
+ "name" : "_ZN7android8String16C2Ev"
+ },
+ {
+ "name" : "_ZN7android8String16D1Ev"
+ },
+ {
+ "name" : "_ZN7android8String16D2Ev"
+ },
+ {
+ "name" : "_ZN7android8String16aSEOS0_"
+ },
+ {
+ "name" : "_ZN7android9FdPrinter9printLineEPKc"
+ },
+ {
+ "name" : "_ZN7android9FdPrinterC1EijPKc"
+ },
+ {
+ "name" : "_ZN7android9FdPrinterC2EijPKc"
+ },
+ {
+ "name" : "_ZN7android9StopWatch5resetEv"
+ },
+ {
+ "name" : "_ZN7android9StopWatchC1EPKci"
+ },
+ {
+ "name" : "_ZN7android9StopWatchC2EPKci"
+ },
+ {
+ "name" : "_ZN7android9StopWatchD1Ev"
+ },
+ {
+ "name" : "_ZN7android9StopWatchD2Ev"
+ },
+ {
+ "name" : "_ZN7android9Tokenizer12fromContentsERKNS_7String8EPKcPPS0_"
+ },
+ {
+ "name" : "_ZN7android9Tokenizer14skipDelimitersEPKc"
+ },
+ {
+ "name" : "_ZN7android9Tokenizer4openERKNS_7String8EPPS0_"
+ },
+ {
+ "name" : "_ZN7android9Tokenizer8nextLineEv"
+ },
+ {
+ "name" : "_ZN7android9Tokenizer9nextTokenEPKc"
+ },
+ {
+ "name" : "_ZN7android9TokenizerC1ERKNS_7String8EPNS_7FileMapEPcbj"
+ },
+ {
+ "name" : "_ZN7android9TokenizerC2ERKNS_7String8EPNS_7FileMapEPcbj"
+ },
+ {
+ "name" : "_ZN7android9TokenizerD1Ev"
+ },
+ {
+ "name" : "_ZN7android9TokenizerD2Ev"
+ },
+ {
+ "name" : "_ZNK7android10VectorImpl12itemLocationEj"
+ },
+ {
+ "name" : "_ZNK7android10VectorImpl8capacityEv"
+ },
+ {
+ "name" : "_ZNK7android10VectorImpl8itemSizeEv"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer10editResizeEj"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer11attemptEditEv"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer4editEv"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer5resetEj"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer7acquireEv"
+ },
+ {
+ "name" : "_ZNK7android12SharedBuffer7releaseEj"
+ },
+ {
+ "name" : "_ZNK7android16SortedVectorImpl13_indexOrderOfEPKvPj"
+ },
+ {
+ "name" : "_ZNK7android16SortedVectorImpl7indexOfEPKv"
+ },
+ {
+ "name" : "_ZNK7android16SortedVectorImpl7orderOfEPKv"
+ },
+ {
+ "name" : "_ZNK7android6Looper20getAllowNonCallbacksEv"
+ },
+ {
+ "name" : "_ZNK7android6Looper7Request14getEpollEventsEv"
+ },
+ {
+ "name" : "_ZNK7android6Looper9isPollingEv"
+ },
+ {
+ "name" : "_ZNK7android6Thread11exitPendingEv"
+ },
+ {
+ "name" : "_ZNK7android6Thread6getTidEv"
+ },
+ {
+ "name" : "_ZNK7android6Thread9isRunningEv"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE10do_destroyEPvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE12do_constructEPvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE15do_move_forwardEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE16do_move_backwardEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE7do_copyEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE8do_splatEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE10do_destroyEPvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE12do_constructEPvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE15do_move_forwardEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE16do_move_backwardEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE7do_copyEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE8do_splatEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE10do_destroyEPvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE12do_constructEPvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE15do_move_forwardEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE16do_move_backwardEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE7do_copyEPvPKvj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNK7android6VectorINS_6Looper8ResponseEE8do_splatEPvPKvj"
+ },
+ {
+ "name" : "_ZNK7android7RefBase10createWeakEPKv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase11getWeakRefsEv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase12weakref_type12getWeakCountEv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase12weakref_type7refBaseEv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase12weakref_type9printRefsEv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase14forceIncStrongEPKv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase14getStrongCountEv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase22incStrongRequireStrongEPKv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase9decStrongEPKv"
+ },
+ {
+ "name" : "_ZNK7android7RefBase9incStrongEPKv"
+ },
+ {
+ "name" : "_ZNK7android7String810getPathDirEv"
+ },
+ {
+ "name" : "_ZNK7android7String811getBasePathEv"
+ },
+ {
+ "name" : "_ZNK7android7String811getPathLeafEv"
+ },
+ {
+ "name" : "_ZNK7android7String814find_extensionEv"
+ },
+ {
+ "name" : "_ZNK7android7String816getPathExtensionEv"
+ },
+ {
+ "name" : "_ZNK7android7String84findEPKcj"
+ },
+ {
+ "name" : "_ZNK7android7String86lengthEv"
+ },
+ {
+ "name" : "_ZNK7android7String88walkPathEPS0_"
+ },
+ {
+ "name" : "_ZNK7android8String1610startsWithEPKDs"
+ },
+ {
+ "name" : "_ZNK7android8String1610startsWithERKS0_"
+ },
+ {
+ "name" : "_ZNK7android8String1614isStaticStringEv"
+ },
+ {
+ "name" : "_ZNK7android8String1616staticStringSizeEv"
+ },
+ {
+ "name" : "_ZNK7android8String164sizeEv"
+ },
+ {
+ "name" : "_ZNK7android8String168containsEPKDs"
+ },
+ {
+ "name" : "_ZNK7android8String168findLastEDs"
+ },
+ {
+ "name" : "_ZNK7android8String169findFirstEDs"
+ },
+ {
+ "name" : "_ZNK7android9StopWatch11elapsedTimeEv"
+ },
+ {
+ "name" : "_ZNK7android9StopWatch4nameEv"
+ },
+ {
+ "name" : "_ZNK7android9Tokenizer11getLocationEv"
+ },
+ {
+ "name" : "_ZNK7android9Tokenizer19peekRemainderOfLineEv"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIiyEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE14__erase_uniqueIiEEjRKT_"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIiyEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE25__emplace_unique_key_argsIiJRiRKyEEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEERKT_DpOT0_"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIiyEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE6rehashEj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIiyEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEE"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIiyEENS_22__unordered_map_hasherIiS2_NS_4hashIiEELb1EEENS_21__unordered_map_equalIiS2_NS_8equal_toIiEELb1EEENS_9allocatorIS2_EEE8__rehashEj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIyN7android6Looper7RequestEEENS_22__unordered_map_hasherIyS5_NS_4hashIyEELb1EEENS_21__unordered_map_equalIyS5_NS_8equal_toIyEELb1EEENS_9allocatorIS5_EEE25__emplace_unique_key_argsIyJRKyRS4_EEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEEbEERKT_DpOT0_"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIyN7android6Looper7RequestEEENS_22__unordered_map_hasherIyS5_NS_4hashIyEELb1EEENS_21__unordered_map_equalIyS5_NS_8equal_toIyEELb1EEENS_9allocatorIS5_EEE6rehashEj"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIyN7android6Looper7RequestEEENS_22__unordered_map_hasherIyS5_NS_4hashIyEELb1EEENS_21__unordered_map_equalIyS5_NS_8equal_toIyEELb1EEENS_9allocatorIS5_EEE6removeENS_21__hash_const_iteratorIPNS_11__hash_nodeIS5_PvEEEE"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIyN7android6Looper7RequestEEENS_22__unordered_map_hasherIyS5_NS_4hashIyEELb1EEENS_21__unordered_map_equalIyS5_NS_8equal_toIyEELb1EEENS_9allocatorIS5_EEE8__rehashEj"
+ },
+ {
+ "name" : "_ZTv0_n12_N7android14LooperCallbackD0Ev"
+ },
+ {
+ "name" : "_ZTv0_n12_N7android14LooperCallbackD1Ev"
+ },
+ {
+ "name" : "_ZTv0_n12_N7android14MessageHandlerD0Ev"
+ },
+ {
+ "name" : "_ZTv0_n12_N7android14MessageHandlerD1Ev"
+ },
+ {
+ "name" : "_ZTv0_n12_N7android18WeakMessageHandlerD0Ev"
+ },
+ {
+ "name" : "_ZTv0_n12_N7android18WeakMessageHandlerD1Ev"
+ },
+ {
+ "name" : "_ZTv0_n12_N7android20SimpleLooperCallbackD0Ev"
+ },
+ {
+ "name" : "_ZTv0_n12_N7android20SimpleLooperCallbackD1Ev"
+ },
+ {
+ "name" : "_ZTv0_n12_N7android6ThreadD0Ev"
+ },
+ {
+ "name" : "_ZTv0_n12_N7android6ThreadD1Ev"
+ },
+ {
+ "name" : "androidCreateRawThreadEtc"
+ },
+ {
+ "name" : "androidCreateThread"
+ },
+ {
+ "name" : "androidCreateThreadEtc"
+ },
+ {
+ "name" : "androidGetThreadId"
+ },
+ {
+ "name" : "androidGetThreadPriority"
+ },
+ {
+ "name" : "androidSetCreateThreadFunc"
+ },
+ {
+ "name" : "androidSetThreadName"
+ },
+ {
+ "name" : "androidSetThreadPriority"
+ },
+ {
+ "name" : "do_report_sysprop_change"
+ },
+ {
+ "name" : "strcmp16"
+ },
+ {
+ "name" : "strlen16"
+ },
+ {
+ "name" : "strncmp16"
+ },
+ {
+ "name" : "strnlen16"
+ },
+ {
+ "name" : "strstr16"
+ },
+ {
+ "name" : "strzcmp16"
+ },
+ {
+ "name" : "systemTime"
+ },
+ {
+ "name" : "toMillisecondTimeoutDelay"
+ },
+ {
+ "name" : "utf16_to_utf8"
+ },
+ {
+ "name" : "utf16_to_utf8_length"
+ },
+ {
+ "name" : "utf32_from_utf8_at"
+ },
+ {
+ "name" : "utf32_to_utf8"
+ },
+ {
+ "name" : "utf32_to_utf8_length"
+ },
+ {
+ "name" : "utf8_to_utf16"
+ },
+ {
+ "name" : "utf8_to_utf16_length"
+ },
+ {
+ "name" : "utf8_to_utf16_no_null_terminator"
+ }
+ ],
+ "elf_objects" :
+ [
+ {
+ "name" : "_ZN7android7FileMap9mPageSizeE"
+ },
+ {
+ "name" : "_ZTCN7android18WeakMessageHandlerE0_NS_14MessageHandlerE"
+ },
+ {
+ "name" : "_ZTCN7android20SimpleLooperCallbackE0_NS_14LooperCallbackE"
+ },
+ {
+ "name" : "_ZTTN7android14LooperCallbackE"
+ },
+ {
+ "name" : "_ZTTN7android14MessageHandlerE"
+ },
+ {
+ "name" : "_ZTTN7android18WeakMessageHandlerE"
+ },
+ {
+ "name" : "_ZTTN7android20SimpleLooperCallbackE"
+ },
+ {
+ "name" : "_ZTTN7android6ThreadE"
+ },
+ {
+ "name" : "_ZTVN7android10LogPrinterE"
+ },
+ {
+ "name" : "_ZTVN7android10VectorImplE"
+ },
+ {
+ "name" : "_ZTVN7android13PrefixPrinterE"
+ },
+ {
+ "name" : "_ZTVN7android14LooperCallbackE"
+ },
+ {
+ "name" : "_ZTVN7android14MessageHandlerE"
+ },
+ {
+ "name" : "_ZTVN7android14String8PrinterE"
+ },
+ {
+ "name" : "_ZTVN7android16SortedVectorImplE"
+ },
+ {
+ "name" : "_ZTVN7android18WeakMessageHandlerE"
+ },
+ {
+ "name" : "_ZTVN7android20SimpleLooperCallbackE"
+ },
+ {
+ "name" : "_ZTVN7android6LooperE"
+ },
+ {
+ "name" : "_ZTVN7android6ThreadE"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZTVN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZTVN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZTVN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "name" : "_ZTVN7android7PrinterE"
+ },
+ {
+ "name" : "_ZTVN7android7RefBaseE"
+ },
+ {
+ "name" : "_ZTVN7android9FdPrinterE"
+ }
+ ],
+ "enum_types" :
+ [
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : -1,
+ "name" : "SP_DEFAULT"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "SP_BACKGROUND"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "SP_FOREGROUND"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "SP_SYSTEM"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "SP_AUDIO_APP"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "SP_AUDIO_SYS"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "SP_TOP_APP"
+ },
+ {
+ "enum_field_value" : 6,
+ "name" : "SP_RT_APP"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "SP_RESTRICTED"
+ },
+ {
+ "enum_field_value" : 8,
+ "name" : "SP_CNT"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "SP_MAX"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "SP_SYSTEM_DEFAULT"
+ }
+ ],
+ "linker_set_key" : "_ZTI11SchedPolicy",
+ "name" : "SchedPolicy",
+ "referenced_type" : "_ZTI11SchedPolicy",
+ "self_type" : "_ZTI11SchedPolicy",
+ "size" : 4,
+ "source_file" : "system/core/libprocessgroup/include/processgroup/sched_policy.h",
+ "underlying_type" : "_ZTIi"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_HDR_DOLBY_VISION"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_HDR_HDR10"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_HDR_HLG"
+ }
+ ],
+ "linker_set_key" : "_ZTI13android_hdr_t",
+ "name" : "android_hdr_t",
+ "referenced_type" : "_ZTI13android_hdr_t",
+ "self_type" : "_ZTI13android_hdr_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 4,
+ "name" : "HAL_HDR_HDR10_PLUS"
+ }
+ ],
+ "linker_set_key" : "_ZTI18android_hdr_v1_2_t",
+ "name" : "android_hdr_v1_2_t",
+ "referenced_type" : "_ZTI18android_hdr_v1_2_t",
+ "self_type" : "_ZTI18android_hdr_v1_2_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.2.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "ANDROID_LOG_UNKNOWN"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "ANDROID_LOG_DEFAULT"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "ANDROID_LOG_VERBOSE"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "ANDROID_LOG_DEBUG"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "ANDROID_LOG_INFO"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "ANDROID_LOG_WARN"
+ },
+ {
+ "enum_field_value" : 6,
+ "name" : "ANDROID_LOG_ERROR"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "ANDROID_LOG_FATAL"
+ },
+ {
+ "enum_field_value" : 8,
+ "name" : "ANDROID_LOG_SILENT"
+ }
+ ],
+ "linker_set_key" : "_ZTI19android_LogPriority",
+ "name" : "android_LogPriority",
+ "referenced_type" : "_ZTI19android_LogPriority",
+ "self_type" : "_ZTI19android_LogPriority",
+ "size" : 4,
+ "source_file" : "system/logging/liblog/include_vndk/android/log.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_DATASPACE_UNKNOWN"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_DATASPACE_ARBITRARY"
+ },
+ {
+ "enum_field_value" : 16,
+ "name" : "HAL_DATASPACE_STANDARD_SHIFT"
+ },
+ {
+ "enum_field_value" : 4128768,
+ "name" : "HAL_DATASPACE_STANDARD_MASK"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_DATASPACE_STANDARD_UNSPECIFIED"
+ },
+ {
+ "enum_field_value" : 65536,
+ "name" : "HAL_DATASPACE_STANDARD_BT709"
+ },
+ {
+ "enum_field_value" : 131072,
+ "name" : "HAL_DATASPACE_STANDARD_BT601_625"
+ },
+ {
+ "enum_field_value" : 196608,
+ "name" : "HAL_DATASPACE_STANDARD_BT601_625_UNADJUSTED"
+ },
+ {
+ "enum_field_value" : 262144,
+ "name" : "HAL_DATASPACE_STANDARD_BT601_525"
+ },
+ {
+ "enum_field_value" : 327680,
+ "name" : "HAL_DATASPACE_STANDARD_BT601_525_UNADJUSTED"
+ },
+ {
+ "enum_field_value" : 393216,
+ "name" : "HAL_DATASPACE_STANDARD_BT2020"
+ },
+ {
+ "enum_field_value" : 458752,
+ "name" : "HAL_DATASPACE_STANDARD_BT2020_CONSTANT_LUMINANCE"
+ },
+ {
+ "enum_field_value" : 524288,
+ "name" : "HAL_DATASPACE_STANDARD_BT470M"
+ },
+ {
+ "enum_field_value" : 589824,
+ "name" : "HAL_DATASPACE_STANDARD_FILM"
+ },
+ {
+ "enum_field_value" : 655360,
+ "name" : "HAL_DATASPACE_STANDARD_DCI_P3"
+ },
+ {
+ "enum_field_value" : 720896,
+ "name" : "HAL_DATASPACE_STANDARD_ADOBE_RGB"
+ },
+ {
+ "enum_field_value" : 22,
+ "name" : "HAL_DATASPACE_TRANSFER_SHIFT"
+ },
+ {
+ "enum_field_value" : 130023424,
+ "name" : "HAL_DATASPACE_TRANSFER_MASK"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_DATASPACE_TRANSFER_UNSPECIFIED"
+ },
+ {
+ "enum_field_value" : 4194304,
+ "name" : "HAL_DATASPACE_TRANSFER_LINEAR"
+ },
+ {
+ "enum_field_value" : 8388608,
+ "name" : "HAL_DATASPACE_TRANSFER_SRGB"
+ },
+ {
+ "enum_field_value" : 12582912,
+ "name" : "HAL_DATASPACE_TRANSFER_SMPTE_170M"
+ },
+ {
+ "enum_field_value" : 16777216,
+ "name" : "HAL_DATASPACE_TRANSFER_GAMMA2_2"
+ },
+ {
+ "enum_field_value" : 20971520,
+ "name" : "HAL_DATASPACE_TRANSFER_GAMMA2_6"
+ },
+ {
+ "enum_field_value" : 25165824,
+ "name" : "HAL_DATASPACE_TRANSFER_GAMMA2_8"
+ },
+ {
+ "enum_field_value" : 29360128,
+ "name" : "HAL_DATASPACE_TRANSFER_ST2084"
+ },
+ {
+ "enum_field_value" : 33554432,
+ "name" : "HAL_DATASPACE_TRANSFER_HLG"
+ },
+ {
+ "enum_field_value" : 27,
+ "name" : "HAL_DATASPACE_RANGE_SHIFT"
+ },
+ {
+ "enum_field_value" : 939524096,
+ "name" : "HAL_DATASPACE_RANGE_MASK"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_DATASPACE_RANGE_UNSPECIFIED"
+ },
+ {
+ "enum_field_value" : 134217728,
+ "name" : "HAL_DATASPACE_RANGE_FULL"
+ },
+ {
+ "enum_field_value" : 268435456,
+ "name" : "HAL_DATASPACE_RANGE_LIMITED"
+ },
+ {
+ "enum_field_value" : 402653184,
+ "name" : "HAL_DATASPACE_RANGE_EXTENDED"
+ },
+ {
+ "enum_field_value" : 512,
+ "name" : "HAL_DATASPACE_SRGB_LINEAR"
+ },
+ {
+ "enum_field_value" : 138477568,
+ "name" : "HAL_DATASPACE_V0_SRGB_LINEAR"
+ },
+ {
+ "enum_field_value" : 406913024,
+ "name" : "HAL_DATASPACE_V0_SCRGB_LINEAR"
+ },
+ {
+ "enum_field_value" : 513,
+ "name" : "HAL_DATASPACE_SRGB"
+ },
+ {
+ "enum_field_value" : 142671872,
+ "name" : "HAL_DATASPACE_V0_SRGB"
+ },
+ {
+ "enum_field_value" : 411107328,
+ "name" : "HAL_DATASPACE_V0_SCRGB"
+ },
+ {
+ "enum_field_value" : 257,
+ "name" : "HAL_DATASPACE_JFIF"
+ },
+ {
+ "enum_field_value" : 146931712,
+ "name" : "HAL_DATASPACE_V0_JFIF"
+ },
+ {
+ "enum_field_value" : 258,
+ "name" : "HAL_DATASPACE_BT601_625"
+ },
+ {
+ "enum_field_value" : 281149440,
+ "name" : "HAL_DATASPACE_V0_BT601_625"
+ },
+ {
+ "enum_field_value" : 259,
+ "name" : "HAL_DATASPACE_BT601_525"
+ },
+ {
+ "enum_field_value" : 281280512,
+ "name" : "HAL_DATASPACE_V0_BT601_525"
+ },
+ {
+ "enum_field_value" : 260,
+ "name" : "HAL_DATASPACE_BT709"
+ },
+ {
+ "enum_field_value" : 281083904,
+ "name" : "HAL_DATASPACE_V0_BT709"
+ },
+ {
+ "enum_field_value" : 139067392,
+ "name" : "HAL_DATASPACE_DCI_P3_LINEAR"
+ },
+ {
+ "enum_field_value" : 155844608,
+ "name" : "HAL_DATASPACE_DCI_P3"
+ },
+ {
+ "enum_field_value" : 139067392,
+ "name" : "HAL_DATASPACE_DISPLAY_P3_LINEAR"
+ },
+ {
+ "enum_field_value" : 143261696,
+ "name" : "HAL_DATASPACE_DISPLAY_P3"
+ },
+ {
+ "enum_field_value" : 151715840,
+ "name" : "HAL_DATASPACE_ADOBE_RGB"
+ },
+ {
+ "enum_field_value" : 138805248,
+ "name" : "HAL_DATASPACE_BT2020_LINEAR"
+ },
+ {
+ "enum_field_value" : 147193856,
+ "name" : "HAL_DATASPACE_BT2020"
+ },
+ {
+ "enum_field_value" : 163971072,
+ "name" : "HAL_DATASPACE_BT2020_PQ"
+ },
+ {
+ "enum_field_value" : 4096,
+ "name" : "HAL_DATASPACE_DEPTH"
+ },
+ {
+ "enum_field_value" : 4097,
+ "name" : "HAL_DATASPACE_SENSOR"
+ }
+ ],
+ "linker_set_key" : "_ZTI19android_dataspace_t",
+ "name" : "android_dataspace_t",
+ "referenced_type" : "_ZTI19android_dataspace_t",
+ "self_type" : "_ZTI19android_dataspace_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "FLEX_FORMAT_INVALID"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "FLEX_FORMAT_Y"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "FLEX_FORMAT_YCbCr"
+ },
+ {
+ "enum_field_value" : 1073741831,
+ "name" : "FLEX_FORMAT_YCbCrA"
+ },
+ {
+ "enum_field_value" : 7168,
+ "name" : "FLEX_FORMAT_RGB"
+ },
+ {
+ "enum_field_value" : 1073748992,
+ "name" : "FLEX_FORMAT_RGBA"
+ }
+ ],
+ "linker_set_key" : "_ZTI19android_flex_format",
+ "name" : "android_flex_format",
+ "referenced_type" : "_ZTI19android_flex_format",
+ "self_type" : "_ZTI19android_flex_format",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_TRANSFORM_FLIP_H"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_TRANSFORM_FLIP_V"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "HAL_TRANSFORM_ROT_90"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_TRANSFORM_ROT_180"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "HAL_TRANSFORM_ROT_270"
+ }
+ ],
+ "linker_set_key" : "_ZTI19android_transform_t",
+ "name" : "android_transform_t",
+ "referenced_type" : "_ZTI19android_transform_t",
+ "self_type" : "_ZTI19android_transform_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_COLOR_MODE_NATIVE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_COLOR_MODE_STANDARD_BT601_625"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_COLOR_MODE_STANDARD_BT601_625_UNADJUSTED"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_COLOR_MODE_STANDARD_BT601_525"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "HAL_COLOR_MODE_STANDARD_BT601_525_UNADJUSTED"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "HAL_COLOR_MODE_STANDARD_BT709"
+ },
+ {
+ "enum_field_value" : 6,
+ "name" : "HAL_COLOR_MODE_DCI_P3"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "HAL_COLOR_MODE_SRGB"
+ },
+ {
+ "enum_field_value" : 8,
+ "name" : "HAL_COLOR_MODE_ADOBE_RGB"
+ },
+ {
+ "enum_field_value" : 9,
+ "name" : "HAL_COLOR_MODE_DISPLAY_P3"
+ }
+ ],
+ "linker_set_key" : "_ZTI20android_color_mode_t",
+ "name" : "android_color_mode_t",
+ "referenced_type" : "_ZTI20android_color_mode_t",
+ "self_type" : "_ZTI20android_color_mode_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "SYSTEM_TIME_REALTIME"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "SYSTEM_TIME_MONOTONIC"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "SYSTEM_TIME_PROCESS"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "SYSTEM_TIME_THREAD"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "SYSTEM_TIME_BOOTTIME"
+ }
+ ],
+ "linker_set_key" : "_ZTI21$SYSTEM_TIME_BOOTTIME",
+ "name" : "(unnamed)",
+ "referenced_type" : "_ZTI21$SYSTEM_TIME_BOOTTIME",
+ "self_type" : "_ZTI21$SYSTEM_TIME_BOOTTIME",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Timers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "FLEX_COMPONENT_Y"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "FLEX_COMPONENT_Cb"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "FLEX_COMPONENT_Cr"
+ },
+ {
+ "enum_field_value" : 1024,
+ "name" : "FLEX_COMPONENT_R"
+ },
+ {
+ "enum_field_value" : 2048,
+ "name" : "FLEX_COMPONENT_G"
+ },
+ {
+ "enum_field_value" : 4096,
+ "name" : "FLEX_COMPONENT_B"
+ },
+ {
+ "enum_field_value" : 1073741824,
+ "name" : "FLEX_COMPONENT_A"
+ }
+ ],
+ "linker_set_key" : "_ZTI22android_flex_component",
+ "name" : "android_flex_component",
+ "referenced_type" : "_ZTI22android_flex_component",
+ "self_type" : "_ZTI22android_flex_component",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_PIXEL_FORMAT_RGBA_8888"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_PIXEL_FORMAT_RGBX_8888"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_PIXEL_FORMAT_RGB_888"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "HAL_PIXEL_FORMAT_RGB_565"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "HAL_PIXEL_FORMAT_BGRA_8888"
+ },
+ {
+ "enum_field_value" : 16,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_422_SP"
+ },
+ {
+ "enum_field_value" : 17,
+ "name" : "HAL_PIXEL_FORMAT_YCRCB_420_SP"
+ },
+ {
+ "enum_field_value" : 20,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_422_I"
+ },
+ {
+ "enum_field_value" : 22,
+ "name" : "HAL_PIXEL_FORMAT_RGBA_FP16"
+ },
+ {
+ "enum_field_value" : 32,
+ "name" : "HAL_PIXEL_FORMAT_RAW16"
+ },
+ {
+ "enum_field_value" : 33,
+ "name" : "HAL_PIXEL_FORMAT_BLOB"
+ },
+ {
+ "enum_field_value" : 34,
+ "name" : "HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED"
+ },
+ {
+ "enum_field_value" : 35,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_420_888"
+ },
+ {
+ "enum_field_value" : 36,
+ "name" : "HAL_PIXEL_FORMAT_RAW_OPAQUE"
+ },
+ {
+ "enum_field_value" : 37,
+ "name" : "HAL_PIXEL_FORMAT_RAW10"
+ },
+ {
+ "enum_field_value" : 38,
+ "name" : "HAL_PIXEL_FORMAT_RAW12"
+ },
+ {
+ "enum_field_value" : 43,
+ "name" : "HAL_PIXEL_FORMAT_RGBA_1010102"
+ },
+ {
+ "enum_field_value" : 538982489,
+ "name" : "HAL_PIXEL_FORMAT_Y8"
+ },
+ {
+ "enum_field_value" : 540422489,
+ "name" : "HAL_PIXEL_FORMAT_Y16"
+ },
+ {
+ "enum_field_value" : 842094169,
+ "name" : "HAL_PIXEL_FORMAT_YV12"
+ }
+ ],
+ "linker_set_key" : "_ZTI22android_pixel_format_t",
+ "name" : "android_pixel_format_t",
+ "referenced_type" : "_ZTI22android_pixel_format_t",
+ "self_type" : "_ZTI22android_pixel_format_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 19,
+ "name" : "ANDROID_PRIORITY_LOWEST"
+ },
+ {
+ "enum_field_value" : 10,
+ "name" : "ANDROID_PRIORITY_BACKGROUND"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "ANDROID_PRIORITY_NORMAL"
+ },
+ {
+ "enum_field_value" : -2,
+ "name" : "ANDROID_PRIORITY_FOREGROUND"
+ },
+ {
+ "enum_field_value" : -4,
+ "name" : "ANDROID_PRIORITY_DISPLAY"
+ },
+ {
+ "enum_field_value" : -8,
+ "name" : "ANDROID_PRIORITY_URGENT_DISPLAY"
+ },
+ {
+ "enum_field_value" : -10,
+ "name" : "ANDROID_PRIORITY_VIDEO"
+ },
+ {
+ "enum_field_value" : -16,
+ "name" : "ANDROID_PRIORITY_AUDIO"
+ },
+ {
+ "enum_field_value" : -19,
+ "name" : "ANDROID_PRIORITY_URGENT_AUDIO"
+ },
+ {
+ "enum_field_value" : -20,
+ "name" : "ANDROID_PRIORITY_HIGHEST"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "ANDROID_PRIORITY_DEFAULT"
+ },
+ {
+ "enum_field_value" : -1,
+ "name" : "ANDROID_PRIORITY_MORE_FAVORABLE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "ANDROID_PRIORITY_LESS_FAVORABLE"
+ }
+ ],
+ "linker_set_key" : "_ZTI23$ANDROID_PRIORITY_AUDIO",
+ "name" : "(unnamed)",
+ "referenced_type" : "_ZTI23$ANDROID_PRIORITY_AUDIO",
+ "self_type" : "_ZTI23$ANDROID_PRIORITY_AUDIO",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/thread_defs.h",
+ "underlying_type" : "_ZTIi"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 281411584,
+ "name" : "HAL_DATASPACE_BT2020_ITU"
+ },
+ {
+ "enum_field_value" : 298188800,
+ "name" : "HAL_DATASPACE_BT2020_ITU_PQ"
+ },
+ {
+ "enum_field_value" : 302383104,
+ "name" : "HAL_DATASPACE_BT2020_ITU_HLG"
+ },
+ {
+ "enum_field_value" : 168165376,
+ "name" : "HAL_DATASPACE_BT2020_HLG"
+ }
+ ],
+ "linker_set_key" : "_ZTI24android_dataspace_v1_1_t",
+ "name" : "android_dataspace_v1_1_t",
+ "referenced_type" : "_ZTI24android_dataspace_v1_1_t",
+ "self_type" : "_ZTI24android_dataspace_v1_1_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.1.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 142999552,
+ "name" : "HAL_DATASPACE_DISPLAY_BT2020"
+ },
+ {
+ "enum_field_value" : 4098,
+ "name" : "HAL_DATASPACE_DYNAMIC_DEPTH"
+ },
+ {
+ "enum_field_value" : 4099,
+ "name" : "HAL_DATASPACE_JPEG_APP_SEGMENTS"
+ },
+ {
+ "enum_field_value" : 4100,
+ "name" : "HAL_DATASPACE_HEIF"
+ }
+ ],
+ "linker_set_key" : "_ZTI24android_dataspace_v1_2_t",
+ "name" : "android_dataspace_v1_2_t",
+ "referenced_type" : "_ZTI24android_dataspace_v1_2_t",
+ "self_type" : "_ZTI24android_dataspace_v1_2_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.2.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 10,
+ "name" : "HAL_COLOR_MODE_BT2020"
+ },
+ {
+ "enum_field_value" : 11,
+ "name" : "HAL_COLOR_MODE_BT2100_PQ"
+ },
+ {
+ "enum_field_value" : 12,
+ "name" : "HAL_COLOR_MODE_BT2100_HLG"
+ }
+ ],
+ "linker_set_key" : "_ZTI25android_color_mode_v1_1_t",
+ "name" : "android_color_mode_v1_1_t",
+ "referenced_type" : "_ZTI25android_color_mode_v1_1_t",
+ "self_type" : "_ZTI25android_color_mode_v1_1_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.1.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_COLOR_TRANSFORM_IDENTITY"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_COLOR_TRANSFORM_ARBITRARY_MATRIX"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_COLOR_TRANSFORM_VALUE_INVERSE"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_COLOR_TRANSFORM_GRAYSCALE"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "HAL_COLOR_TRANSFORM_CORRECT_PROTANOPIA"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "HAL_COLOR_TRANSFORM_CORRECT_DEUTERANOPIA"
+ },
+ {
+ "enum_field_value" : 6,
+ "name" : "HAL_COLOR_TRANSFORM_CORRECT_TRITANOPIA"
+ }
+ ],
+ "linker_set_key" : "_ZTI25android_color_transform_t",
+ "name" : "android_color_transform_t",
+ "referenced_type" : "_ZTI25android_color_transform_t",
+ "self_type" : "_ZTI25android_color_transform_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.0.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 39,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_422_888"
+ },
+ {
+ "enum_field_value" : 40,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_444_888"
+ },
+ {
+ "enum_field_value" : 41,
+ "name" : "HAL_PIXEL_FORMAT_FLEX_RGB_888"
+ },
+ {
+ "enum_field_value" : 42,
+ "name" : "HAL_PIXEL_FORMAT_FLEX_RGBA_8888"
+ }
+ ],
+ "linker_set_key" : "_ZTI25android_pixel_format_sw_t",
+ "name" : "android_pixel_format_sw_t",
+ "referenced_type" : "_ZTI25android_pixel_format_sw_t",
+ "self_type" : "_ZTI25android_pixel_format_sw_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-sw.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 48,
+ "name" : "HAL_PIXEL_FORMAT_DEPTH_16"
+ },
+ {
+ "enum_field_value" : 49,
+ "name" : "HAL_PIXEL_FORMAT_DEPTH_24"
+ },
+ {
+ "enum_field_value" : 50,
+ "name" : "HAL_PIXEL_FORMAT_DEPTH_24_STENCIL_8"
+ },
+ {
+ "enum_field_value" : 51,
+ "name" : "HAL_PIXEL_FORMAT_DEPTH_32F"
+ },
+ {
+ "enum_field_value" : 52,
+ "name" : "HAL_PIXEL_FORMAT_DEPTH_32F_STENCIL_8"
+ },
+ {
+ "enum_field_value" : 53,
+ "name" : "HAL_PIXEL_FORMAT_STENCIL_8"
+ },
+ {
+ "enum_field_value" : 54,
+ "name" : "HAL_PIXEL_FORMAT_YCBCR_P010"
+ }
+ ],
+ "linker_set_key" : "_ZTI27android_pixel_format_v1_1_t",
+ "name" : "android_pixel_format_v1_1_t",
+ "referenced_type" : "_ZTI27android_pixel_format_v1_1_t",
+ "self_type" : "_ZTI27android_pixel_format_v1_1_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.1.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 55,
+ "name" : "HAL_PIXEL_FORMAT_HSV_888"
+ }
+ ],
+ "linker_set_key" : "_ZTI27android_pixel_format_v1_2_t",
+ "name" : "android_pixel_format_v1_2_t",
+ "referenced_type" : "_ZTI27android_pixel_format_v1_2_t",
+ "self_type" : "_ZTI27android_pixel_format_v1_2_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.2.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "HAL_RENDER_INTENT_COLORIMETRIC"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "HAL_RENDER_INTENT_ENHANCE"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "HAL_RENDER_INTENT_TONE_MAP_COLORIMETRIC"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "HAL_RENDER_INTENT_TONE_MAP_ENHANCE"
+ }
+ ],
+ "linker_set_key" : "_ZTI28android_render_intent_v1_1_t",
+ "name" : "android_render_intent_v1_1_t",
+ "referenced_type" : "_ZTI28android_render_intent_v1_1_t",
+ "self_type" : "_ZTI28android_render_intent_v1_1_t",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics-base-v1.1.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "LOG_ID_MIN"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "LOG_ID_MAIN"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "LOG_ID_RADIO"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "LOG_ID_EVENTS"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "LOG_ID_SYSTEM"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "LOG_ID_CRASH"
+ },
+ {
+ "enum_field_value" : 5,
+ "name" : "LOG_ID_STATS"
+ },
+ {
+ "enum_field_value" : 6,
+ "name" : "LOG_ID_SECURITY"
+ },
+ {
+ "enum_field_value" : 7,
+ "name" : "LOG_ID_KERNEL"
+ },
+ {
+ "enum_field_value" : 8,
+ "name" : "LOG_ID_MAX"
+ },
+ {
+ "enum_field_value" : 2147483647,
+ "name" : "LOG_ID_DEFAULT"
+ }
+ ],
+ "linker_set_key" : "_ZTI6log_id",
+ "name" : "log_id",
+ "referenced_type" : "_ZTI6log_id",
+ "self_type" : "_ZTI6log_id",
+ "size" : 4,
+ "source_file" : "system/logging/liblog/include_vndk/android/log.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::VectorImpl::HAS_TRIVIAL_CTOR"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "android::VectorImpl::HAS_TRIVIAL_DTOR"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "android::VectorImpl::HAS_TRIVIAL_COPY"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE",
+ "name" : "android::VectorImpl::(unnamed)",
+ "referenced_type" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE",
+ "self_type" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_pointer<android::sysprop_change_callback_info>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEE6$valueE",
+ "name" : "android::trait_pointer<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEE6$valueE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_pointer<android::Looper::MessageEnvelope>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEE6$valueE",
+ "name" : "android::trait_pointer<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEE6$valueE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_pointer<android::Looper::Response>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEE6$valueE",
+ "name" : "android::trait_pointer<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEE6$valueE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::OK"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::NO_ERROR"
+ },
+ {
+ "enum_field_value" : -2147483648,
+ "name" : "android::UNKNOWN_ERROR"
+ },
+ {
+ "enum_field_value" : -12,
+ "name" : "android::NO_MEMORY"
+ },
+ {
+ "enum_field_value" : -38,
+ "name" : "android::INVALID_OPERATION"
+ },
+ {
+ "enum_field_value" : -22,
+ "name" : "android::BAD_VALUE"
+ },
+ {
+ "enum_field_value" : -2147483647,
+ "name" : "android::BAD_TYPE"
+ },
+ {
+ "enum_field_value" : -2,
+ "name" : "android::NAME_NOT_FOUND"
+ },
+ {
+ "enum_field_value" : -1,
+ "name" : "android::PERMISSION_DENIED"
+ },
+ {
+ "enum_field_value" : -19,
+ "name" : "android::NO_INIT"
+ },
+ {
+ "enum_field_value" : -17,
+ "name" : "android::ALREADY_EXISTS"
+ },
+ {
+ "enum_field_value" : -32,
+ "name" : "android::DEAD_OBJECT"
+ },
+ {
+ "enum_field_value" : -2147483646,
+ "name" : "android::FAILED_TRANSACTION"
+ },
+ {
+ "enum_field_value" : -75,
+ "name" : "android::BAD_INDEX"
+ },
+ {
+ "enum_field_value" : -61,
+ "name" : "android::NOT_ENOUGH_DATA"
+ },
+ {
+ "enum_field_value" : -11,
+ "name" : "android::WOULD_BLOCK"
+ },
+ {
+ "enum_field_value" : -110,
+ "name" : "android::TIMED_OUT"
+ },
+ {
+ "enum_field_value" : -74,
+ "name" : "android::UNKNOWN_TRANSACTION"
+ },
+ {
+ "enum_field_value" : -2147483641,
+ "name" : "android::FDS_NOT_ALLOWED"
+ },
+ {
+ "enum_field_value" : -2147483640,
+ "name" : "android::UNEXPECTED_NULL"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android15$ALREADY_EXISTSE",
+ "name" : "android::(unnamed)",
+ "referenced_type" : "_ZTIN7android15$ALREADY_EXISTSE",
+ "self_type" : "_ZTIN7android15$ALREADY_EXISTSE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Errors.h",
+ "underlying_type" : "_ZTIi"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 19,
+ "name" : "android::PRIORITY_LOWEST"
+ },
+ {
+ "enum_field_value" : 10,
+ "name" : "android::PRIORITY_BACKGROUND"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::PRIORITY_NORMAL"
+ },
+ {
+ "enum_field_value" : -2,
+ "name" : "android::PRIORITY_FOREGROUND"
+ },
+ {
+ "enum_field_value" : -4,
+ "name" : "android::PRIORITY_DISPLAY"
+ },
+ {
+ "enum_field_value" : -8,
+ "name" : "android::PRIORITY_URGENT_DISPLAY"
+ },
+ {
+ "enum_field_value" : -16,
+ "name" : "android::PRIORITY_AUDIO"
+ },
+ {
+ "enum_field_value" : -19,
+ "name" : "android::PRIORITY_URGENT_AUDIO"
+ },
+ {
+ "enum_field_value" : -20,
+ "name" : "android::PRIORITY_HIGHEST"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::PRIORITY_DEFAULT"
+ },
+ {
+ "enum_field_value" : -1,
+ "name" : "android::PRIORITY_MORE_FAVORABLE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::PRIORITY_LESS_FAVORABLE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android15$PRIORITY_AUDIOE",
+ "name" : "android::(unnamed)",
+ "referenced_type" : "_ZTIN7android15$PRIORITY_AUDIOE",
+ "self_type" : "_ZTIN7android15$PRIORITY_AUDIOE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/ThreadDefs.h",
+ "underlying_type" : "_ZTIi"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_copy<android::sysprop_change_callback_info>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEE6$valueE",
+ "name" : "android::trait_trivial_copy<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_copy<android::Looper::MessageEnvelope>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEE6$valueE",
+ "name" : "android::trait_trivial_copy<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_copy<android::Looper::Response>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEE6$valueE",
+ "name" : "android::trait_trivial_copy<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<bool>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIbE6$valueE",
+ "name" : "android::trait_trivial_copy<bool>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIbE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIbE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIcE6$valueE",
+ "name" : "android::trait_trivial_copy<char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIcE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIcE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<double>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIdE6$valueE",
+ "name" : "android::trait_trivial_copy<double>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIdE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIdE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<float>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIfE6$valueE",
+ "name" : "android::trait_trivial_copy<float>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIfE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIfE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<unsigned char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIhE6$valueE",
+ "name" : "android::trait_trivial_copy<unsigned char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIhE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIhE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIiE6$valueE",
+ "name" : "android::trait_trivial_copy<int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIiE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIiE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<unsigned int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIjE6$valueE",
+ "name" : "android::trait_trivial_copy<unsigned int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIjE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIjE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIlE6$valueE",
+ "name" : "android::trait_trivial_copy<long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIlE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIlE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<unsigned long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyImE6$valueE",
+ "name" : "android::trait_trivial_copy<unsigned long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyImE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyImE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIsE6$valueE",
+ "name" : "android::trait_trivial_copy<short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIsE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIsE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<unsigned short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyItE6$valueE",
+ "name" : "android::trait_trivial_copy<unsigned short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyItE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyItE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<void>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIvE6$valueE",
+ "name" : "android::trait_trivial_copy<void>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIvE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIvE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIxE6$valueE",
+ "name" : "android::trait_trivial_copy<long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIxE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIxE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_copy<unsigned long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIyE6$valueE",
+ "name" : "android::trait_trivial_copy<unsigned long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIyE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIyE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_ctor<android::sysprop_change_callback_info>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEE6$valueE",
+ "name" : "android::trait_trivial_ctor<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_ctor<android::Looper::MessageEnvelope>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "name" : "android::trait_trivial_ctor<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_ctor<android::Looper::Response>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEE6$valueE",
+ "name" : "android::trait_trivial_ctor<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<bool>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE",
+ "name" : "android::trait_trivial_ctor<bool>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE",
+ "name" : "android::trait_trivial_ctor<char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<double>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE",
+ "name" : "android::trait_trivial_ctor<double>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<float>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE",
+ "name" : "android::trait_trivial_ctor<float>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<unsigned char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE",
+ "name" : "android::trait_trivial_ctor<unsigned char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE",
+ "name" : "android::trait_trivial_ctor<int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<unsigned int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE",
+ "name" : "android::trait_trivial_ctor<unsigned int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE",
+ "name" : "android::trait_trivial_ctor<long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<unsigned long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorImE6$valueE",
+ "name" : "android::trait_trivial_ctor<unsigned long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorImE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorImE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE",
+ "name" : "android::trait_trivial_ctor<short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<unsigned short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorItE6$valueE",
+ "name" : "android::trait_trivial_ctor<unsigned short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorItE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorItE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<void>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE",
+ "name" : "android::trait_trivial_ctor<void>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE",
+ "name" : "android::trait_trivial_ctor<long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_ctor<unsigned long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE",
+ "name" : "android::trait_trivial_ctor<unsigned long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_dtor<android::sysprop_change_callback_info>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEE6$valueE",
+ "name" : "android::trait_trivial_dtor<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_dtor<android::Looper::MessageEnvelope>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "name" : "android::trait_trivial_dtor<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_dtor<android::Looper::Response>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEE6$valueE",
+ "name" : "android::trait_trivial_dtor<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<bool>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE",
+ "name" : "android::trait_trivial_dtor<bool>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE",
+ "name" : "android::trait_trivial_dtor<char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<double>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE",
+ "name" : "android::trait_trivial_dtor<double>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<float>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE",
+ "name" : "android::trait_trivial_dtor<float>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<unsigned char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE",
+ "name" : "android::trait_trivial_dtor<unsigned char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE",
+ "name" : "android::trait_trivial_dtor<int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<unsigned int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE",
+ "name" : "android::trait_trivial_dtor<unsigned int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE",
+ "name" : "android::trait_trivial_dtor<long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<unsigned long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorImE6$valueE",
+ "name" : "android::trait_trivial_dtor<unsigned long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorImE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorImE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE",
+ "name" : "android::trait_trivial_dtor<short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<unsigned short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorItE6$valueE",
+ "name" : "android::trait_trivial_dtor<unsigned short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorItE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorItE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<void>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE",
+ "name" : "android::trait_trivial_dtor<void>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE",
+ "name" : "android::trait_trivial_dtor<long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_dtor<unsigned long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE",
+ "name" : "android::trait_trivial_dtor<unsigned long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_move<android::sysprop_change_callback_info>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEE6$valueE",
+ "name" : "android::trait_trivial_move<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_move<android::Looper::MessageEnvelope>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEE6$valueE",
+ "name" : "android::trait_trivial_move<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::trait_trivial_move<android::Looper::Response>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEE6$valueE",
+ "name" : "android::trait_trivial_move<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<android::String8>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE",
+ "name" : "android::trait_trivial_move<android::String8>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<android::String16>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_8String16EE6$valueE",
+ "name" : "android::trait_trivial_move<android::String16>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_8String16EE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_8String16EE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<bool>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIbE6$valueE",
+ "name" : "android::trait_trivial_move<bool>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIbE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIbE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIcE6$valueE",
+ "name" : "android::trait_trivial_move<char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIcE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIcE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<double>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIdE6$valueE",
+ "name" : "android::trait_trivial_move<double>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIdE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIdE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<float>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIfE6$valueE",
+ "name" : "android::trait_trivial_move<float>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIfE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIfE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<unsigned char>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIhE6$valueE",
+ "name" : "android::trait_trivial_move<unsigned char>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIhE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIhE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIiE6$valueE",
+ "name" : "android::trait_trivial_move<int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIiE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIiE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<unsigned int>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIjE6$valueE",
+ "name" : "android::trait_trivial_move<unsigned int>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIjE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIjE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIlE6$valueE",
+ "name" : "android::trait_trivial_move<long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIlE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIlE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<unsigned long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveImE6$valueE",
+ "name" : "android::trait_trivial_move<unsigned long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveImE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveImE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIsE6$valueE",
+ "name" : "android::trait_trivial_move<short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIsE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIsE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<unsigned short>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveItE6$valueE",
+ "name" : "android::trait_trivial_move<unsigned short>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveItE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveItE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<void>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIvE6$valueE",
+ "name" : "android::trait_trivial_move<void>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIvE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIvE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIxE6$valueE",
+ "name" : "android::trait_trivial_move<long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIxE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIxE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::trait_trivial_move<unsigned long long>::value"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIyE6$valueE",
+ "name" : "android::trait_trivial_move<unsigned long long>::(unnamed)",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIyE6$valueE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIyE6$valueE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::Mutex::PRIVATE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::Mutex::SHARED"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android5Mutex8$PRIVATEE",
+ "name" : "android::Mutex::(unnamed)",
+ "referenced_type" : "_ZTIN7android5Mutex8$PRIVATEE",
+ "self_type" : "_ZTIN7android5Mutex8$PRIVATEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::Looper::EVENT_INPUT"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "android::Looper::EVENT_OUTPUT"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "android::Looper::EVENT_ERROR"
+ },
+ {
+ "enum_field_value" : 8,
+ "name" : "android::Looper::EVENT_HANGUP"
+ },
+ {
+ "enum_field_value" : 16,
+ "name" : "android::Looper::EVENT_INVALID"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper12$EVENT_ERRORE",
+ "name" : "android::Looper::(unnamed)",
+ "referenced_type" : "_ZTIN7android6Looper12$EVENT_ERRORE",
+ "self_type" : "_ZTIN7android6Looper12$EVENT_ERRORE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : -1,
+ "name" : "android::Looper::POLL_WAKE"
+ },
+ {
+ "enum_field_value" : -2,
+ "name" : "android::Looper::POLL_CALLBACK"
+ },
+ {
+ "enum_field_value" : -3,
+ "name" : "android::Looper::POLL_TIMEOUT"
+ },
+ {
+ "enum_field_value" : -4,
+ "name" : "android::Looper::POLL_ERROR"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper14$POLL_CALLBACKE",
+ "name" : "android::Looper::(unnamed)",
+ "referenced_type" : "_ZTIN7android6Looper14$POLL_CALLBACKE",
+ "self_type" : "_ZTIN7android6Looper14$POLL_CALLBACKE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "underlying_type" : "_ZTIi"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::Looper::PREPARE_ALLOW_NON_CALLBACKS"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper28$PREPARE_ALLOW_NON_CALLBACKSE",
+ "name" : "android::Looper::(unnamed)",
+ "referenced_type" : "_ZTIN7android6Looper28$PREPARE_ALLOW_NON_CALLBACKSE",
+ "self_type" : "_ZTIN7android6Looper28$PREPARE_ALLOW_NON_CALLBACKSE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::RWLock::PRIVATE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::RWLock::SHARED"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6RWLock8$PRIVATEE",
+ "name" : "android::RWLock::(unnamed)",
+ "referenced_type" : "_ZTIN7android6RWLock8$PRIVATEE",
+ "self_type" : "_ZTIN7android6RWLock8$PRIVATEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::sysprop_change_callback_info>::is_pointer"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::sysprop_change_callback_info>::has_trivial_ctor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::sysprop_change_callback_info>::has_trivial_dtor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::sysprop_change_callback_info>::has_trivial_copy"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::sysprop_change_callback_info>::has_trivial_move"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEE17$has_trivial_copyE",
+ "name" : "android::traits<android::sysprop_change_callback_info>::(unnamed)",
+ "referenced_type" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEE17$has_trivial_copyE",
+ "self_type" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEE17$has_trivial_copyE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::MessageEnvelope>::is_pointer"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::MessageEnvelope>::has_trivial_ctor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::MessageEnvelope>::has_trivial_dtor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::MessageEnvelope>::has_trivial_copy"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::MessageEnvelope>::has_trivial_move"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEE17$has_trivial_copyE",
+ "name" : "android::traits<android::Looper::MessageEnvelope>::(unnamed)",
+ "referenced_type" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEE17$has_trivial_copyE",
+ "self_type" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEE17$has_trivial_copyE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::Response>::is_pointer"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::Response>::has_trivial_ctor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::Response>::has_trivial_dtor"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::Response>::has_trivial_copy"
+ },
+ {
+ "enum_field_value" : 0,
+ "name" : "android::traits<android::Looper::Response>::has_trivial_move"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6traitsINS_6Looper8ResponseEE17$has_trivial_copyE",
+ "name" : "android::traits<android::Looper::Response>::(unnamed)",
+ "referenced_type" : "_ZTIN7android6traitsINS_6Looper8ResponseEE17$has_trivial_copyE",
+ "self_type" : "_ZTIN7android6traitsINS_6Looper8ResponseEE17$has_trivial_copyE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::FileMap::NORMAL"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::FileMap::RANDOM"
+ },
+ {
+ "enum_field_value" : 2,
+ "name" : "android::FileMap::SEQUENTIAL"
+ },
+ {
+ "enum_field_value" : 3,
+ "name" : "android::FileMap::WILLNEED"
+ },
+ {
+ "enum_field_value" : 4,
+ "name" : "android::FileMap::DONTNEED"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7FileMap9MapAdviceE",
+ "name" : "android::FileMap::MapAdvice",
+ "referenced_type" : "_ZTIN7android7FileMap9MapAdviceE",
+ "self_type" : "_ZTIN7android7FileMap9MapAdviceE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "access" : "protected",
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 1,
+ "name" : "android::RefBase::FIRST_INC_STRONG"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE",
+ "name" : "android::RefBase::(unnamed)",
+ "referenced_type" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE",
+ "self_type" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "access" : "protected",
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::RefBase::OBJECT_LIFETIME_STRONG"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::RefBase::OBJECT_LIFETIME_WEAK"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::RefBase::OBJECT_LIFETIME_MASK"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE",
+ "name" : "android::RefBase::(unnamed)",
+ "referenced_type" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE",
+ "self_type" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::Condition::WAKE_UP_ONE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::Condition::WAKE_UP_ALL"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9Condition10WakeUpTypeE",
+ "name" : "android::Condition::WakeUpType",
+ "referenced_type" : "_ZTIN7android9Condition10WakeUpTypeE",
+ "self_type" : "_ZTIN7android9Condition10WakeUpTypeE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Condition.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 0,
+ "name" : "android::Condition::PRIVATE"
+ },
+ {
+ "enum_field_value" : 1,
+ "name" : "android::Condition::SHARED"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9Condition8$PRIVATEE",
+ "name" : "android::Condition::(unnamed)",
+ "referenced_type" : "_ZTIN7android9Condition8$PRIVATEE",
+ "self_type" : "_ZTIN7android9Condition8$PRIVATEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Condition.h",
+ "underlying_type" : "_ZTIj"
+ },
+ {
+ "access" : "private",
+ "alignment" : 4,
+ "enum_fields" :
+ [
+ {
+ "enum_field_value" : 20,
+ "name" : "android::FdPrinter::MAX_FORMAT_STRING"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9FdPrinter18$MAX_FORMAT_STRINGE",
+ "name" : "android::FdPrinter::(unnamed)",
+ "referenced_type" : "_ZTIN7android9FdPrinter18$MAX_FORMAT_STRINGE",
+ "self_type" : "_ZTIN7android9FdPrinter18$MAX_FORMAT_STRINGE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "underlying_type" : "_ZTIj"
+ }
+ ],
+ "function_types" :
+ [
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFiPFiPvES_PKcijPS_E",
+ "name" : "int (int (*)(void *), void *, const char *, int, unsigned int, void **)",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFiPvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "referenced_type" : "_ZTIFiPFiPvES_PKcijPS_E",
+ "return_type" : "_ZTIi",
+ "self_type" : "_ZTIFiPFiPvES_PKcijPS_E",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFiPKvS0_E",
+ "name" : "int (const void *, const void *)",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "referenced_type" : "_ZTIFiPKvS0_E",
+ "return_type" : "_ZTIi",
+ "self_type" : "_ZTIFiPKvS0_E",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFiPKvS0_PvE",
+ "name" : "int (const void *, const void *, void *)",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "referenced_type" : "_ZTIFiPKvS0_PvE",
+ "return_type" : "_ZTIi",
+ "self_type" : "_ZTIFiPKvS0_PvE",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFiPvE",
+ "name" : "int (void *)",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "referenced_type" : "_ZTIFiPvE",
+ "return_type" : "_ZTIi",
+ "self_type" : "_ZTIFiPvE",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFiiiPvE",
+ "name" : "int (int, int, void *)",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "referenced_type" : "_ZTIFiiiPvE",
+ "return_type" : "_ZTIi",
+ "self_type" : "_ZTIFiiiPvE",
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIFvvE",
+ "name" : "void ()",
+ "referenced_type" : "_ZTIFvvE",
+ "return_type" : "_ZTIv",
+ "self_type" : "_ZTIFvvE",
+ "source_file" : "system/core/libutils/include/utils/misc.h"
+ }
+ ],
+ "functions" :
+ [
+ {
+ "access" : "private",
+ "function_name" : "android::LogPrinter::printRaw",
+ "linker_set_key" : "_ZN7android10LogPrinter8printRawEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10LogPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::LogPrinter::printLine",
+ "linker_set_key" : "_ZN7android10LogPrinter9printLineEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10LogPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::LogPrinter::LogPrinter",
+ "linker_set_key" : "_ZN7android10LogPrinterC1EPKc19android_LogPriorityS2_b",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10LogPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTI19android_LogPriority"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::LogPrinter::LogPrinter",
+ "linker_set_key" : "_ZN7android10LogPrinterC2EPKc19android_LogPriorityS2_b",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10LogPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTI19android_LogPriority"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::appendArray",
+ "linker_set_key" : "_ZN7android10VectorImpl11appendArrayEPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::setCapacity",
+ "linker_set_key" : "_ZN7android10VectorImpl11setCapacityEj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::appendVector",
+ "linker_set_key" : "_ZN7android10VectorImpl12appendVectorERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::editArrayImpl",
+ "linker_set_key" : "_ZN7android10VectorImpl13editArrayImplEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::finish_vector",
+ "linker_set_key" : "_ZN7android10VectorImpl13finish_vectorEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::insertArrayAt",
+ "linker_set_key" : "_ZN7android10VectorImpl13insertArrayAtEPKvjj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::removeItemsAt",
+ "linker_set_key" : "_ZN7android10VectorImpl13removeItemsAtEjj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::insertVectorAt",
+ "linker_set_key" : "_ZN7android10VectorImpl14insertVectorAtERKS0_j",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::VectorImpl::release_storage",
+ "linker_set_key" : "_ZN7android10VectorImpl15release_storageEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::editItemLocation",
+ "linker_set_key" : "_ZN7android10VectorImpl16editItemLocationEj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::add",
+ "linker_set_key" : "_ZN7android10VectorImpl3addEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::add",
+ "linker_set_key" : "_ZN7android10VectorImpl3addEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::pop",
+ "linker_set_key" : "_ZN7android10VectorImpl3popEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::push",
+ "linker_set_key" : "_ZN7android10VectorImpl4pushEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::push",
+ "linker_set_key" : "_ZN7android10VectorImpl4pushEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::sort",
+ "linker_set_key" : "_ZN7android10VectorImpl4sortEPFiPKvS2_E",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPFiPKvS0_E"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::sort",
+ "linker_set_key" : "_ZN7android10VectorImpl4sortEPFiPKvS2_PvES3_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPFiPKvS0_PvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::VectorImpl::_grow",
+ "linker_set_key" : "_ZN7android10VectorImpl5_growEjj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::clear",
+ "linker_set_key" : "_ZN7android10VectorImpl5clearEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::resize",
+ "linker_set_key" : "_ZN7android10VectorImpl6resizeEj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::VectorImpl::_shrink",
+ "linker_set_key" : "_ZN7android10VectorImpl7_shrinkEjj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::insertAt",
+ "linker_set_key" : "_ZN7android10VectorImpl8insertAtEPKvjj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::insertAt",
+ "linker_set_key" : "_ZN7android10VectorImpl8insertAtEjj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::replaceAt",
+ "linker_set_key" : "_ZN7android10VectorImpl9replaceAtEPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::replaceAt",
+ "linker_set_key" : "_ZN7android10VectorImpl9replaceAtEj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::VectorImpl",
+ "linker_set_key" : "_ZN7android10VectorImplC2ERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::VectorImpl",
+ "linker_set_key" : "_ZN7android10VectorImplC2Ejj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::~VectorImpl",
+ "linker_set_key" : "_ZN7android10VectorImplD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::~VectorImpl",
+ "linker_set_key" : "_ZN7android10VectorImplD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::~VectorImpl",
+ "linker_set_key" : "_ZN7android10VectorImplD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::operator=",
+ "linker_set_key" : "_ZN7android10VectorImplaSERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIRN7android10VectorImplE",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::uptimeNanos",
+ "linker_set_key" : "_ZN7android11uptimeNanosEv",
+ "return_type" : "_ZTIx",
+ "source_file" : "system/core/libutils/include/utils/SystemClock.h"
+ },
+ {
+ "function_name" : "android::NativeHandle::create",
+ "linker_set_key" : "_ZN7android12NativeHandle6createEP13native_handleb",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIP13native_handle"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::NativeHandle::NativeHandle",
+ "linker_set_key" : "_ZN7android12NativeHandleC1EP13native_handleb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android12NativeHandleE"
+ },
+ {
+ "referenced_type" : "_ZTIP13native_handle"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::NativeHandle::NativeHandle",
+ "linker_set_key" : "_ZN7android12NativeHandleC2EP13native_handleb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android12NativeHandleE"
+ },
+ {
+ "referenced_type" : "_ZTIP13native_handle"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::NativeHandle::~NativeHandle",
+ "linker_set_key" : "_ZN7android12NativeHandleD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android12NativeHandleE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::NativeHandle::~NativeHandle",
+ "linker_set_key" : "_ZN7android12NativeHandleD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android12NativeHandleE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "function_name" : "android::uptimeMillis",
+ "linker_set_key" : "_ZN7android12uptimeMillisEv",
+ "return_type" : "_ZTIx",
+ "source_file" : "system/core/libutils/include/utils/SystemClock.h"
+ },
+ {
+ "function_name" : "android::PrefixPrinter::printLine",
+ "linker_set_key" : "_ZN7android13PrefixPrinter9printLineEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android13PrefixPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::PrefixPrinter::PrefixPrinter",
+ "linker_set_key" : "_ZN7android13PrefixPrinterC1ERNS_7PrinterEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android13PrefixPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIRN7android7PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::PrefixPrinter::PrefixPrinter",
+ "linker_set_key" : "_ZN7android13PrefixPrinterC2ERNS_7PrinterEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android13PrefixPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIRN7android7PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::LooperCallback::~LooperCallback",
+ "linker_set_key" : "_ZN7android14LooperCallbackD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14LooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::LooperCallback::~LooperCallback",
+ "linker_set_key" : "_ZN7android14LooperCallbackD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14LooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::LooperCallback::~LooperCallback",
+ "linker_set_key" : "_ZN7android14LooperCallbackD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14LooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::MessageHandler::~MessageHandler",
+ "linker_set_key" : "_ZN7android14MessageHandlerD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14MessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::MessageHandler::~MessageHandler",
+ "linker_set_key" : "_ZN7android14MessageHandlerD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14MessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::MessageHandler::~MessageHandler",
+ "linker_set_key" : "_ZN7android14MessageHandlerD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14MessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::String8Printer::printLine",
+ "linker_set_key" : "_ZN7android14String8Printer9printLineEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14String8PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::String8Printer::String8Printer",
+ "linker_set_key" : "_ZN7android14String8PrinterC1EPNS_7String8EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14String8PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::String8Printer::String8Printer",
+ "linker_set_key" : "_ZN7android14String8PrinterC2EPNS_7String8EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android14String8PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::statusToString",
+ "linker_set_key" : "_ZN7android14statusToStringEi",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTINSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE",
+ "source_file" : "system/core/libutils/include/utils/Errors.h"
+ },
+ {
+ "function_name" : "android::elapsedRealtime",
+ "linker_set_key" : "_ZN7android15elapsedRealtimeEv",
+ "return_type" : "_ZTIx",
+ "source_file" : "system/core/libutils/include/utils/SystemClock.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::add",
+ "linker_set_key" : "_ZN7android16SortedVectorImpl3addEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::merge",
+ "linker_set_key" : "_ZN7android16SortedVectorImpl5mergeERKNS_10VectorImplE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::merge",
+ "linker_set_key" : "_ZN7android16SortedVectorImpl5mergeERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android16SortedVectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::remove",
+ "linker_set_key" : "_ZN7android16SortedVectorImpl6removeEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::SortedVectorImpl",
+ "linker_set_key" : "_ZN7android16SortedVectorImplC2ERKNS_10VectorImplE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::SortedVectorImpl",
+ "linker_set_key" : "_ZN7android16SortedVectorImplC2Ejj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::~SortedVectorImpl",
+ "linker_set_key" : "_ZN7android16SortedVectorImplD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::~SortedVectorImpl",
+ "linker_set_key" : "_ZN7android16SortedVectorImplD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::~SortedVectorImpl",
+ "linker_set_key" : "_ZN7android16SortedVectorImplD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::operator=",
+ "linker_set_key" : "_ZN7android16SortedVectorImplaSERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android16SortedVectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIRN7android16SortedVectorImplE",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::JenkinsHashWhiten",
+ "linker_set_key" : "_ZN7android17JenkinsHashWhitenEj",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/JenkinsHash.h"
+ },
+ {
+ "function_name" : "android::WeakMessageHandler::handleMessage",
+ "linker_set_key" : "_ZN7android18WeakMessageHandler13handleMessageERKNS_7MessageE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7MessageE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::WeakMessageHandler::WeakMessageHandler",
+ "linker_set_key" : "_ZN7android18WeakMessageHandlerC1ERKNS_2wpINS_14MessageHandlerEEE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2wpINS_14MessageHandlerEEE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::WeakMessageHandler::WeakMessageHandler",
+ "linker_set_key" : "_ZN7android18WeakMessageHandlerC2ERKNS_2wpINS_14MessageHandlerEEE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2wpINS_14MessageHandlerEEE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::WeakMessageHandler::~WeakMessageHandler",
+ "linker_set_key" : "_ZN7android18WeakMessageHandlerD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::WeakMessageHandler::~WeakMessageHandler",
+ "linker_set_key" : "_ZN7android18WeakMessageHandlerD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::WeakMessageHandler::~WeakMessageHandler",
+ "linker_set_key" : "_ZN7android18WeakMessageHandlerD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android18WeakMessageHandlerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::JenkinsHashMixBytes",
+ "linker_set_key" : "_ZN7android19JenkinsHashMixBytesEjPKhj",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPKh"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/JenkinsHash.h"
+ },
+ {
+ "function_name" : "android::elapsedRealtimeNano",
+ "linker_set_key" : "_ZN7android19elapsedRealtimeNanoEv",
+ "return_type" : "_ZTIx",
+ "source_file" : "system/core/libutils/include/utils/SystemClock.h"
+ },
+ {
+ "function_name" : "android::JenkinsHashMixShorts",
+ "linker_set_key" : "_ZN7android20JenkinsHashMixShortsEjPKtj",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPKt"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/JenkinsHash.h"
+ },
+ {
+ "function_name" : "android::SimpleLooperCallback::handleEvent",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallback11handleEventEiiPv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::SimpleLooperCallback::SimpleLooperCallback",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallbackC1EPFiiiPvE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ },
+ {
+ "referenced_type" : "_ZTIPFiiiPvE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::SimpleLooperCallback::SimpleLooperCallback",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallbackC2EPFiiiPvE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ },
+ {
+ "referenced_type" : "_ZTIPFiiiPvE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::SimpleLooperCallback::~SimpleLooperCallback",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallbackD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::SimpleLooperCallback::~SimpleLooperCallback",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallbackD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::SimpleLooperCallback::~SimpleLooperCallback",
+ "linker_set_key" : "_ZN7android20SimpleLooperCallbackD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::report_sysprop_change",
+ "linker_set_key" : "_ZN7android21report_sysprop_changeEv",
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/misc.h"
+ },
+ {
+ "function_name" : "android::add_sysprop_change_callback",
+ "linker_set_key" : "_ZN7android27add_sysprop_change_callbackEPFvvEi",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFvvE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/misc.h"
+ },
+ {
+ "function_name" : "android::LightRefBase_reportIncStrongRequireStrongFailed",
+ "linker_set_key" : "_ZN7android47LightRefBase_reportIncStrongRequireStrongFailedEPKv",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::initTLSKey",
+ "linker_set_key" : "_ZN7android6Looper10initTLSKeyEv",
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::sendMessage",
+ "linker_set_key" : "_ZN7android6Looper11sendMessageERKNS_2spINS_14MessageHandlerEEERKNS_7MessageE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7MessageE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::getForThread",
+ "linker_set_key" : "_ZN7android6Looper12getForThreadEv",
+ "return_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::setForThread",
+ "linker_set_key" : "_ZN7android6Looper12setForThreadERKNS_2spIS0_EE",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_6LooperEEE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::removeMessages",
+ "linker_set_key" : "_ZN7android6Looper14removeMessagesERKNS_2spINS_14MessageHandlerEEE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::removeMessages",
+ "linker_set_key" : "_ZN7android6Looper14removeMessagesERKNS_2spINS_14MessageHandlerEEEi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::threadDestructor",
+ "linker_set_key" : "_ZN7android6Looper16threadDestructorEPv",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::sendMessageAtTime",
+ "linker_set_key" : "_ZN7android6Looper17sendMessageAtTimeExRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIx"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7MessageE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::rebuildEpollLocked",
+ "linker_set_key" : "_ZN7android6Looper18rebuildEpollLockedEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::sendMessageDelayed",
+ "linker_set_key" : "_ZN7android6Looper18sendMessageDelayedExRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIx"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7MessageE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::removeSequenceNumberLocked",
+ "linker_set_key" : "_ZN7android6Looper26removeSequenceNumberLockedEy",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIy"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::scheduleEpollRebuildLocked",
+ "linker_set_key" : "_ZN7android6Looper26scheduleEpollRebuildLockedEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::wake",
+ "linker_set_key" : "_ZN7android6Looper4wakeEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::addFd",
+ "linker_set_key" : "_ZN7android6Looper5addFdEiiiPFiiiPvES1_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPFiiiPvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::addFd",
+ "linker_set_key" : "_ZN7android6Looper5addFdEiiiRKNS_2spINS_14LooperCallbackEEEPv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14LooperCallbackEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::awoken",
+ "linker_set_key" : "_ZN7android6Looper6awokenEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::pollAll",
+ "linker_set_key" : "_ZN7android6Looper7pollAllEiPiS1_PPv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::prepare",
+ "linker_set_key" : "_ZN7android6Looper7prepareEi",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::pollOnce",
+ "linker_set_key" : "_ZN7android6Looper8pollOnceEiPiS1_PPv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::removeFd",
+ "linker_set_key" : "_ZN7android6Looper8removeFdEi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Looper::pollInner",
+ "linker_set_key" : "_ZN7android6Looper9pollInnerEi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::Looper",
+ "linker_set_key" : "_ZN7android6LooperC1Eb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::Looper",
+ "linker_set_key" : "_ZN7android6LooperC2Eb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Looper::~Looper",
+ "linker_set_key" : "_ZN7android6LooperD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Looper::~Looper",
+ "linker_set_key" : "_ZN7android6LooperD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Looper::~Looper",
+ "linker_set_key" : "_ZN7android6LooperD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Thread::readyToRun",
+ "linker_set_key" : "_ZN7android6Thread10readyToRunEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Thread::_threadLoop",
+ "linker_set_key" : "_ZN7android6Thread11_threadLoopEPv",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::requestExit",
+ "linker_set_key" : "_ZN7android6Thread11requestExitEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::requestExitAndWait",
+ "linker_set_key" : "_ZN7android6Thread18requestExitAndWaitEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::run",
+ "linker_set_key" : "_ZN7android6Thread3runEPKcij",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::join",
+ "linker_set_key" : "_ZN7android6Thread4joinEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::Thread",
+ "linker_set_key" : "_ZN7android6ThreadC2Eb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::~Thread",
+ "linker_set_key" : "_ZN7android6ThreadD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::~Thread",
+ "linker_set_key" : "_ZN7android6ThreadD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::~Thread",
+ "linker_set_key" : "_ZN7android6ThreadD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::FileMap::advise",
+ "linker_set_key" : "_ZN7android7FileMap6adviseENS0_9MapAdviceE",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTIN7android7FileMap9MapAdviceE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::create",
+ "linker_set_key" : "_ZN7android7FileMap6createEPKcixjb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIx"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::FileMap",
+ "linker_set_key" : "_ZN7android7FileMapC1EOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTION7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::FileMap",
+ "linker_set_key" : "_ZN7android7FileMapC1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::FileMap",
+ "linker_set_key" : "_ZN7android7FileMapC2EOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTION7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::FileMap",
+ "linker_set_key" : "_ZN7android7FileMapC2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::~FileMap",
+ "linker_set_key" : "_ZN7android7FileMapD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::~FileMap",
+ "linker_set_key" : "_ZN7android7FileMapD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::FileMap::operator=",
+ "linker_set_key" : "_ZN7android7FileMapaSEOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTION7android7FileMapE"
+ }
+ ],
+ "return_type" : "_ZTIRN7android7FileMapE",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "function_name" : "android::Printer::printFormatLine",
+ "linker_set_key" : "_ZN7android7Printer15printFormatLineEPKcz",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7PrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Printer::Printer",
+ "linker_set_key" : "_ZN7android7PrinterC2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7PrinterE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Printer::~Printer",
+ "linker_set_key" : "_ZN7android7PrinterD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7PrinterE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Printer::~Printer",
+ "linker_set_key" : "_ZN7android7PrinterD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7PrinterE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Printer::~Printer",
+ "linker_set_key" : "_ZN7android7PrinterD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7PrinterE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::onFirstRef",
+ "linker_set_key" : "_ZN7android7RefBase10onFirstRefEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::RefBase::renameRefs",
+ "linker_set_key" : "_ZN7android7RefBase10renameRefsEjRKNS_16ReferenceRenamerE",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android16ReferenceRenamerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::RefBase::renameRefId",
+ "linker_set_key" : "_ZN7android7RefBase11renameRefIdEPNS0_12weakref_typeEPKvS4_",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::RefBase::renameRefId",
+ "linker_set_key" : "_ZN7android7RefBase11renameRefIdEPS0_PKvS3_",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::attemptIncWeak",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type14attemptIncWeakEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::attemptIncStrong",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type16attemptIncStrongEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::incWeakRequireWeak",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type18incWeakRequireWeakEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::decWeak",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type7decWeakEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::incWeak",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type7incWeakEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::trackMe",
+ "linker_set_key" : "_ZN7android7RefBase12weakref_type7trackMeEbb",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::onLastWeakRef",
+ "linker_set_key" : "_ZN7android7RefBase13onLastWeakRefEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::onLastStrongRef",
+ "linker_set_key" : "_ZN7android7RefBase15onLastStrongRefEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::extendObjectLifetime",
+ "linker_set_key" : "_ZN7android7RefBase20extendObjectLifetimeEi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::onIncStrongAttempted",
+ "linker_set_key" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::RefBase",
+ "linker_set_key" : "_ZN7android7RefBaseC1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::RefBase",
+ "linker_set_key" : "_ZN7android7RefBaseC2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::~RefBase",
+ "linker_set_key" : "_ZN7android7RefBaseD0Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::~RefBase",
+ "linker_set_key" : "_ZN7android7RefBaseD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::RefBase::~RefBase",
+ "linker_set_key" : "_ZN7android7RefBaseD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::String8::appendPath",
+ "linker_set_key" : "_ZN7android7String810appendPathEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIRN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::lockBuffer",
+ "linker_set_key" : "_ZN7android7String810lockBufferEj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIPc",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String8::real_append",
+ "linker_set_key" : "_ZN7android7String811real_appendEPKcj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::appendFormat",
+ "linker_set_key" : "_ZN7android7String812appendFormatEPKcz",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::unlockBuffer",
+ "linker_set_key" : "_ZN7android7String812unlockBufferEj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::unlockBuffer",
+ "linker_set_key" : "_ZN7android7String812unlockBufferEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::appendFormatV",
+ "linker_set_key" : "_ZN7android7String813appendFormatVEPKcSt9__va_list",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTISt9__va_list"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::convertToResPath",
+ "linker_set_key" : "_ZN7android7String816convertToResPathEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIRN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::clear",
+ "linker_set_key" : "_ZN7android7String85clearEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::setTo",
+ "linker_set_key" : "_ZN7android7String85setToEPKDij",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDi"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::setTo",
+ "linker_set_key" : "_ZN7android7String85setToEPKDsj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::setTo",
+ "linker_set_key" : "_ZN7android7String85setToEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::setTo",
+ "linker_set_key" : "_ZN7android7String85setToEPKcj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::setTo",
+ "linker_set_key" : "_ZN7android7String85setToERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::append",
+ "linker_set_key" : "_ZN7android7String86appendEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::append",
+ "linker_set_key" : "_ZN7android7String86appendEPKcj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::append",
+ "linker_set_key" : "_ZN7android7String86appendERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::format",
+ "linker_set_key" : "_ZN7android7String86formatEPKcz",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::formatV",
+ "linker_set_key" : "_ZN7android7String87formatVEPKcSt9__va_list",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTISt9__va_list"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::toLower",
+ "linker_set_key" : "_ZN7android7String87toLowerEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::removeAll",
+ "linker_set_key" : "_ZN7android7String89removeAllEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKDi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKDij",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDi"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKDsj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1EPKcj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1ERKNS_8String16E",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1ERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKDi",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKDij",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDi"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKDsj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2EPKcj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2ERKNS_8String16E",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2ERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::String8",
+ "linker_set_key" : "_ZN7android7String8C2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::~String8",
+ "linker_set_key" : "_ZN7android7String8D1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::~String8",
+ "linker_set_key" : "_ZN7android7String8D2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::editResize",
+ "linker_set_key" : "_ZN7android8String1610editResizeEj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::replaceAll",
+ "linker_set_key" : "_ZN7android8String1610replaceAllEDsDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIDs"
+ },
+ {
+ "referenced_type" : "_ZTIDs"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::allocFromUTF8",
+ "linker_set_key" : "_ZN7android8String1613allocFromUTF8EPKcj",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIPDs",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::allocFromUTF16",
+ "linker_set_key" : "_ZN7android8String1614allocFromUTF16EPKDsj",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIPDs",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::edit",
+ "linker_set_key" : "_ZN7android8String164editEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::alloc",
+ "linker_set_key" : "_ZN7android8String165allocEj",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::setTo",
+ "linker_set_key" : "_ZN7android8String165setToEPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::setTo",
+ "linker_set_key" : "_ZN7android8String165setToEPKDsj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::setTo",
+ "linker_set_key" : "_ZN7android8String165setToERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::setTo",
+ "linker_set_key" : "_ZN7android8String165setToERKS0_jj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::append",
+ "linker_set_key" : "_ZN7android8String166appendEPKDsj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::append",
+ "linker_set_key" : "_ZN7android8String166appendERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::insert",
+ "linker_set_key" : "_ZN7android8String166insertEjPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::insert",
+ "linker_set_key" : "_ZN7android8String166insertEjPKDsj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::acquire",
+ "linker_set_key" : "_ZN7android8String167acquireEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::release",
+ "linker_set_key" : "_ZN7android8String167releaseEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1EOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTION7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1EPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1EPKDsj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1EPKcj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1ERKNS_7String8E",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1ERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1ERKS0_jj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2EOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTION7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2EPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2EPKDsj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2EPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2EPKcj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2ERKNS_7String8E",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2ERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2ERKS0_jj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::String16",
+ "linker_set_key" : "_ZN7android8String16C2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::~String16",
+ "linker_set_key" : "_ZN7android8String16D1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::~String16",
+ "linker_set_key" : "_ZN7android8String16D2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::operator=",
+ "linker_set_key" : "_ZN7android8String16aSEOS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTION7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIRN7android8String16E",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::FdPrinter::printLine",
+ "linker_set_key" : "_ZN7android9FdPrinter9printLineEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9FdPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::FdPrinter::FdPrinter",
+ "linker_set_key" : "_ZN7android9FdPrinterC1EijPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9FdPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::FdPrinter::FdPrinter",
+ "linker_set_key" : "_ZN7android9FdPrinterC2EijPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9FdPrinterE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "function_name" : "android::StopWatch::reset",
+ "linker_set_key" : "_ZN7android9StopWatch5resetEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9StopWatchE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::StopWatch::StopWatch",
+ "linker_set_key" : "_ZN7android9StopWatchC1EPKci",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9StopWatchE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::StopWatch::StopWatch",
+ "linker_set_key" : "_ZN7android9StopWatchC2EPKci",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9StopWatchE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::StopWatch::~StopWatch",
+ "linker_set_key" : "_ZN7android9StopWatchD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9StopWatchE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::StopWatch::~StopWatch",
+ "linker_set_key" : "_ZN7android9StopWatchD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9StopWatchE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::fromContents",
+ "linker_set_key" : "_ZN7android9Tokenizer12fromContentsERKNS_7String8EPKcPPS0_",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIPPN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::skipDelimiters",
+ "linker_set_key" : "_ZN7android9Tokenizer14skipDelimitersEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::open",
+ "linker_set_key" : "_ZN7android9Tokenizer4openERKNS_7String8EPPS0_",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPPN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::nextLine",
+ "linker_set_key" : "_ZN7android9Tokenizer8nextLineEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::nextToken",
+ "linker_set_key" : "_ZN7android9Tokenizer9nextTokenEPKc",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Tokenizer::Tokenizer",
+ "linker_set_key" : "_ZN7android9TokenizerC1ERKNS_7String8EPNS_7FileMapEPcbj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::Tokenizer::Tokenizer",
+ "linker_set_key" : "_ZN7android9TokenizerC2ERKNS_7String8EPNS_7FileMapEPcbj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::~Tokenizer",
+ "linker_set_key" : "_ZN7android9TokenizerD1Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::~Tokenizer",
+ "linker_set_key" : "_ZN7android9TokenizerD2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::itemLocation",
+ "linker_set_key" : "_ZNK7android10VectorImpl12itemLocationEj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android10VectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIPKv",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::VectorImpl::capacity",
+ "linker_set_key" : "_ZNK7android10VectorImpl8capacityEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::VectorImpl::itemSize",
+ "linker_set_key" : "_ZNK7android10VectorImpl8itemSizeEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android10VectorImplE"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::SortedVectorImpl::_indexOrderOf",
+ "linker_set_key" : "_ZNK7android16SortedVectorImpl13_indexOrderOfEPKvPj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::indexOf",
+ "linker_set_key" : "_ZNK7android16SortedVectorImpl7indexOfEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::SortedVectorImpl::orderOf",
+ "linker_set_key" : "_ZNK7android16SortedVectorImpl7orderOfEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android16SortedVectorImplE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "function_name" : "android::Looper::getAllowNonCallbacks",
+ "linker_set_key" : "_ZNK7android6Looper20getAllowNonCallbacksEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::Request::getEpollEvents",
+ "linker_set_key" : "_ZNK7android6Looper7Request14getEpollEventsEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6Looper7RequestE"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "function_name" : "android::Looper::isPolling",
+ "linker_set_key" : "_ZNK7android6Looper9isPollingEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6LooperE"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Thread::exitPending",
+ "linker_set_key" : "_ZNK7android6Thread11exitPendingEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::getTid",
+ "linker_set_key" : "_ZNK7android6Thread6getTidEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "function_name" : "android::Thread::isRunning",
+ "linker_set_key" : "_ZNK7android6Thread9isRunningEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6ThreadE"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_destroy",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE10do_destroyEPvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_construct",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE12do_constructEPvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_move_forward",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE15do_move_forwardEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_move_backward",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE16do_move_backwardEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_copy",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE7do_copyEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::sysprop_change_callback_info>::do_splat",
+ "linker_set_key" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE8do_splatEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_destroy",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE10do_destroyEPvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_construct",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE12do_constructEPvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_move_forward",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE15do_move_forwardEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_move_backward",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE16do_move_backwardEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_copy",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE7do_copyEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::MessageEnvelope>::do_splat",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE8do_splatEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_destroy",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE10do_destroyEPvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_construct",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE12do_constructEPvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_move_forward",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE15do_move_forwardEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_move_backward",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE16do_move_backwardEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_copy",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE7do_copyEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "access" : "protected",
+ "function_name" : "android::Vector<android::Looper::Response>::do_splat",
+ "linker_set_key" : "_ZNK7android6VectorINS_6Looper8ResponseEE8do_splatEPvPKvj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "function_name" : "android::RefBase::createWeak",
+ "linker_set_key" : "_ZNK7android7RefBase10createWeakEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIPN7android7RefBase12weakref_typeE",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::getWeakRefs",
+ "linker_set_key" : "_ZNK7android7RefBase11getWeakRefsEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIPN7android7RefBase12weakref_typeE",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::getWeakCount",
+ "linker_set_key" : "_ZNK7android7RefBase12weakref_type12getWeakCountEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBase12weakref_typeE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::refBase",
+ "linker_set_key" : "_ZNK7android7RefBase12weakref_type7refBaseEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBase12weakref_typeE"
+ }
+ ],
+ "return_type" : "_ZTIPN7android7RefBaseE",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::weakref_type::printRefs",
+ "linker_set_key" : "_ZNK7android7RefBase12weakref_type9printRefsEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBase12weakref_typeE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::forceIncStrong",
+ "linker_set_key" : "_ZNK7android7RefBase14forceIncStrongEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::getStrongCount",
+ "linker_set_key" : "_ZNK7android7RefBase14getStrongCountEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::incStrongRequireStrong",
+ "linker_set_key" : "_ZNK7android7RefBase22incStrongRequireStrongEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::decStrong",
+ "linker_set_key" : "_ZNK7android7RefBase9decStrongEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::RefBase::incStrong",
+ "linker_set_key" : "_ZNK7android7RefBase9incStrongEPKv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7RefBaseE"
+ },
+ {
+ "referenced_type" : "_ZTIPKv"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "function_name" : "android::String8::getPathDir",
+ "linker_set_key" : "_ZNK7android7String810getPathDirEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::getBasePath",
+ "linker_set_key" : "_ZNK7android7String811getBasePathEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::getPathLeaf",
+ "linker_set_key" : "_ZNK7android7String811getPathLeafEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String8::find_extension",
+ "linker_set_key" : "_ZNK7android7String814find_extensionEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIPc",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::getPathExtension",
+ "linker_set_key" : "_ZNK7android7String816getPathExtensionEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::find",
+ "linker_set_key" : "_ZNK7android7String84findEPKcj",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::length",
+ "linker_set_key" : "_ZNK7android7String86lengthEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String8::walkPath",
+ "linker_set_key" : "_ZNK7android7String88walkPathEPS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android7String8E"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "function_name" : "android::String16::startsWith",
+ "linker_set_key" : "_ZNK7android8String1610startsWithEPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::startsWith",
+ "linker_set_key" : "_ZNK7android8String1610startsWithERKS0_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::isStaticString",
+ "linker_set_key" : "_ZNK7android8String1614isStaticStringEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "access" : "private",
+ "function_name" : "android::String16::staticStringSize",
+ "linker_set_key" : "_ZNK7android8String1616staticStringSizeEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::size",
+ "linker_set_key" : "_ZNK7android8String164sizeEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::contains",
+ "linker_set_key" : "_ZNK7android8String168containsEPKDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::findLast",
+ "linker_set_key" : "_ZNK7android8String168findLastEDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIDs"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::String16::findFirst",
+ "linker_set_key" : "_ZNK7android8String169findFirstEDs",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android8String16E"
+ },
+ {
+ "referenced_type" : "_ZTIDs"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "function_name" : "android::StopWatch::elapsedTime",
+ "linker_set_key" : "_ZNK7android9StopWatch11elapsedTimeEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android9StopWatchE"
+ }
+ ],
+ "return_type" : "_ZTIx",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::StopWatch::name",
+ "linker_set_key" : "_ZNK7android9StopWatch4nameEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android9StopWatchE"
+ }
+ ],
+ "return_type" : "_ZTIPKc",
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::getLocation",
+ "linker_set_key" : "_ZNK7android9Tokenizer11getLocationEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "android::Tokenizer::peekRemainderOfLine",
+ "linker_set_key" : "_ZNK7android9Tokenizer19peekRemainderOfLineEv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPKN7android9TokenizerE"
+ }
+ ],
+ "return_type" : "_ZTIN7android7String8E",
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "function_name" : "androidCreateRawThreadEtc",
+ "linker_set_key" : "androidCreateRawThreadEtc",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFiPvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidCreateThread",
+ "linker_set_key" : "androidCreateThread",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFiPvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidCreateThreadEtc",
+ "linker_set_key" : "androidCreateThreadEtc",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFiPvE"
+ },
+ {
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidGetThreadId",
+ "linker_set_key" : "androidGetThreadId",
+ "return_type" : "_ZTIPv",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidGetThreadPriority",
+ "linker_set_key" : "androidGetThreadPriority",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidSetCreateThreadFunc",
+ "linker_set_key" : "androidSetCreateThreadFunc",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPFiPFiPvES_PKcijPS_E"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidSetThreadName",
+ "linker_set_key" : "androidSetThreadName",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "androidSetThreadPriority",
+ "linker_set_key" : "androidSetThreadPriority",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "function_name" : "strcmp16",
+ "linker_set_key" : "strcmp16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "strlen16",
+ "linker_set_key" : "strlen16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "strncmp16",
+ "linker_set_key" : "strncmp16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "strnlen16",
+ "linker_set_key" : "strnlen16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIj",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "strstr16",
+ "linker_set_key" : "strstr16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "return_type" : "_ZTIPDs",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "strzcmp16",
+ "linker_set_key" : "strzcmp16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "systemTime",
+ "linker_set_key" : "systemTime",
+ "parameters" :
+ [
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "return_type" : "_ZTIx",
+ "source_file" : "system/core/libutils/include/utils/Timers.h"
+ },
+ {
+ "function_name" : "toMillisecondTimeoutDelay",
+ "linker_set_key" : "toMillisecondTimeoutDelay",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIx"
+ },
+ {
+ "referenced_type" : "_ZTIx"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Timers.h"
+ },
+ {
+ "function_name" : "utf16_to_utf8",
+ "linker_set_key" : "utf16_to_utf8",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf16_to_utf8_length",
+ "linker_set_key" : "utf16_to_utf8_length",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf32_from_utf8_at",
+ "linker_set_key" : "utf32_from_utf8_at",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf32_to_utf8",
+ "linker_set_key" : "utf32_to_utf8",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDi"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf32_to_utf8_length",
+ "linker_set_key" : "utf32_to_utf8_length",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKDi"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf8_to_utf16",
+ "linker_set_key" : "utf8_to_utf16",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKh"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIPDs",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf8_to_utf16_length",
+ "linker_set_key" : "utf8_to_utf16_length",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKh"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "default_arg" : true,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "return_type" : "_ZTIi",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "function_name" : "utf8_to_utf16_no_null_terminator",
+ "linker_set_key" : "utf8_to_utf16_no_null_terminator",
+ "parameters" :
+ [
+ {
+ "referenced_type" : "_ZTIPKh"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "referenced_type" : "_ZTIPDs"
+ },
+ {
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "return_type" : "_ZTIPDs",
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ }
+ ],
+ "global_vars" :
+ [
+ {
+ "access" : "private",
+ "linker_set_key" : "_ZN7android7FileMap9mPageSizeE",
+ "name" : "android::FileMap::mPageSize",
+ "referenced_type" : "_ZTIl",
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ }
+ ],
+ "lvalue_reference_types" :
+ [
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRA1_KDs",
+ "name" : "const char16_t (&)[1]",
+ "referenced_type" : "_ZTIA1_KDs",
+ "self_type" : "_ZTIRA1_KDs",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android10VectorImplE",
+ "name" : "const android::VectorImpl &",
+ "referenced_type" : "_ZTIKN7android10VectorImplE",
+ "self_type" : "_ZTIRKN7android10VectorImplE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android16ReferenceRenamerE",
+ "name" : "const android::ReferenceRenamer &",
+ "referenced_type" : "_ZTIKN7android16ReferenceRenamerE",
+ "self_type" : "_ZTIRKN7android16ReferenceRenamerE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android16SortedVectorImplE",
+ "name" : "const android::SortedVectorImpl &",
+ "referenced_type" : "_ZTIKN7android16SortedVectorImplE",
+ "self_type" : "_ZTIRKN7android16SortedVectorImplE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android28sysprop_change_callback_infoE",
+ "name" : "const android::sysprop_change_callback_info &",
+ "referenced_type" : "_ZTIKN7android28sysprop_change_callback_infoE",
+ "self_type" : "_ZTIRKN7android28sysprop_change_callback_infoE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android2spINS_14LooperCallbackEEE",
+ "name" : "const android::sp<android::LooperCallback> &",
+ "referenced_type" : "_ZTIKN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIRKN7android2spINS_14LooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android2spINS_14MessageHandlerEEE",
+ "name" : "const android::sp<android::MessageHandler> &",
+ "referenced_type" : "_ZTIKN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIRKN7android2spINS_14MessageHandlerEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "const android::sp<android::SimpleLooperCallback> &",
+ "referenced_type" : "_ZTIKN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTIRKN7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android2spINS_6LooperEEE",
+ "name" : "const android::sp<android::Looper> &",
+ "referenced_type" : "_ZTIKN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIRKN7android2spINS_6LooperEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android2spINS_6ThreadEEE",
+ "name" : "const android::sp<android::Thread> &",
+ "referenced_type" : "_ZTIKN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIRKN7android2spINS_6ThreadEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android2wpINS_14MessageHandlerEEE",
+ "name" : "const android::wp<android::MessageHandler> &",
+ "referenced_type" : "_ZTIKN7android2wpINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIRKN7android2wpINS_14MessageHandlerEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android6Looper15MessageEnvelopeE",
+ "name" : "const android::Looper::MessageEnvelope &",
+ "referenced_type" : "_ZTIKN7android6Looper15MessageEnvelopeE",
+ "self_type" : "_ZTIRKN7android6Looper15MessageEnvelopeE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android6Looper8ResponseE",
+ "name" : "const android::Looper::Response &",
+ "referenced_type" : "_ZTIKN7android6Looper8ResponseE",
+ "self_type" : "_ZTIRKN7android6Looper8ResponseE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "const android::Vector<android::sysprop_change_callback_info> &",
+ "referenced_type" : "_ZTIKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIRKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android7MessageE",
+ "name" : "const android::Message &",
+ "referenced_type" : "_ZTIKN7android7MessageE",
+ "self_type" : "_ZTIRKN7android7MessageE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android7String8E",
+ "name" : "const android::String8 &",
+ "referenced_type" : "_ZTIKN7android7String8E",
+ "self_type" : "_ZTIRKN7android7String8E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android8String1610StaticDataILj1EEE",
+ "name" : "const android::String16::StaticData<1> &",
+ "referenced_type" : "_ZTIKN7android8String1610StaticDataILj1EEE",
+ "self_type" : "_ZTIRKN7android8String1610StaticDataILj1EEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKN7android8String16E",
+ "name" : "const android::String16 &",
+ "referenced_type" : "_ZTIKN7android8String16E",
+ "self_type" : "_ZTIRKN7android8String16E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKa",
+ "name" : "const signed char &",
+ "referenced_type" : "_ZTIKa",
+ "self_type" : "_ZTIRKa",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKb",
+ "name" : "const bool &",
+ "referenced_type" : "_ZTIKb",
+ "self_type" : "_ZTIRKb",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKd",
+ "name" : "const double &",
+ "referenced_type" : "_ZTIKd",
+ "self_type" : "_ZTIRKd",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKf",
+ "name" : "const float &",
+ "referenced_type" : "_ZTIKf",
+ "self_type" : "_ZTIRKf",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKh",
+ "name" : "const unsigned char &",
+ "referenced_type" : "_ZTIKh",
+ "self_type" : "_ZTIRKh",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKi",
+ "name" : "const int &",
+ "referenced_type" : "_ZTIKi",
+ "self_type" : "_ZTIRKi",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKj",
+ "name" : "const unsigned int &",
+ "referenced_type" : "_ZTIKj",
+ "self_type" : "_ZTIRKj",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKs",
+ "name" : "const short &",
+ "referenced_type" : "_ZTIKs",
+ "self_type" : "_ZTIRKs",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKt",
+ "name" : "const unsigned short &",
+ "referenced_type" : "_ZTIKt",
+ "self_type" : "_ZTIRKt",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKx",
+ "name" : "const long long &",
+ "referenced_type" : "_ZTIKx",
+ "self_type" : "_ZTIRKx",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRKy",
+ "name" : "const unsigned long long &",
+ "referenced_type" : "_ZTIKy",
+ "self_type" : "_ZTIRKy",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android10VectorImplE",
+ "name" : "android::VectorImpl &",
+ "referenced_type" : "_ZTIN7android10VectorImplE",
+ "self_type" : "_ZTIRN7android10VectorImplE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android16SortedVectorImplE",
+ "name" : "android::SortedVectorImpl &",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE",
+ "self_type" : "_ZTIRN7android16SortedVectorImplE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android2spINS_14LooperCallbackEEE",
+ "name" : "android::sp<android::LooperCallback> &",
+ "referenced_type" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIRN7android2spINS_14LooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android2spINS_14MessageHandlerEEE",
+ "name" : "android::sp<android::MessageHandler> &",
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIRN7android2spINS_14MessageHandlerEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "android::sp<android::SimpleLooperCallback> &",
+ "referenced_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTIRN7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android2spINS_6LooperEEE",
+ "name" : "android::sp<android::Looper> &",
+ "referenced_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIRN7android2spINS_6LooperEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android2spINS_6ThreadEEE",
+ "name" : "android::sp<android::Thread> &",
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIRN7android2spINS_6ThreadEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android5MutexE",
+ "name" : "android::Mutex &",
+ "referenced_type" : "_ZTIN7android5MutexE",
+ "self_type" : "_ZTIRN7android5MutexE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android6Looper8ResponseE",
+ "name" : "android::Looper::Response &",
+ "referenced_type" : "_ZTIN7android6Looper8ResponseE",
+ "self_type" : "_ZTIRN7android6Looper8ResponseE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android6RWLockE",
+ "name" : "android::RWLock &",
+ "referenced_type" : "_ZTIN7android6RWLockE",
+ "self_type" : "_ZTIRN7android6RWLockE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::Vector<android::sysprop_change_callback_info> &",
+ "referenced_type" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIRN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android7FileMapE",
+ "name" : "android::FileMap &",
+ "referenced_type" : "_ZTIN7android7FileMapE",
+ "self_type" : "_ZTIRN7android7FileMapE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android7PrinterE",
+ "name" : "android::Printer &",
+ "referenced_type" : "_ZTIN7android7PrinterE",
+ "self_type" : "_ZTIRN7android7PrinterE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android7String8E",
+ "name" : "android::String8 &",
+ "referenced_type" : "_ZTIN7android7String8E",
+ "self_type" : "_ZTIRN7android7String8E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRN7android8String16E",
+ "name" : "android::String16 &",
+ "referenced_type" : "_ZTIN7android8String16E",
+ "self_type" : "_ZTIRN7android8String16E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRP13native_handle",
+ "name" : "native_handle *&",
+ "referenced_type" : "_ZTIP13native_handle",
+ "self_type" : "_ZTIRP13native_handle",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRPFiiiPvE",
+ "name" : "int (*&)(int, int, void *)",
+ "referenced_type" : "_ZTIPFiiiPvE",
+ "self_type" : "_ZTIRPFiiiPvE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIRb",
+ "name" : "bool &",
+ "referenced_type" : "_ZTIb",
+ "self_type" : "_ZTIRb",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ }
+ ],
+ "pointer_types" :
+ [
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIP13native_handle",
+ "name" : "native_handle *",
+ "referenced_type" : "_ZTI13native_handle",
+ "self_type" : "_ZTIP13native_handle",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIP18android_flex_plane",
+ "name" : "android_flex_plane *",
+ "referenced_type" : "_ZTI18android_flex_plane",
+ "self_type" : "_ZTIP18android_flex_plane",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIP3DIR",
+ "name" : "DIR *",
+ "referenced_type" : "_ZTI3DIR",
+ "self_type" : "_ZTIP3DIR",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIP7__sFILE",
+ "name" : "__sFILE *",
+ "referenced_type" : "_ZTI7__sFILE",
+ "self_type" : "_ZTIP7__sFILE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIP7log_msg",
+ "name" : "log_msg *",
+ "referenced_type" : "_ZTI7log_msg",
+ "self_type" : "_ZTIP7log_msg",
+ "size" : 4,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPDs",
+ "name" : "char16_t *",
+ "referenced_type" : "_ZTIDs",
+ "self_type" : "_ZTIPDs",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPFiPFiPvES_PKcijPS_E",
+ "name" : "int (*)(int (*)(void *), void *, const char *, int, unsigned int, void **)",
+ "referenced_type" : "_ZTIFiPFiPvES_PKcijPS_E",
+ "self_type" : "_ZTIPFiPFiPvES_PKcijPS_E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPFiPKvS0_E",
+ "name" : "int (*)(const void *, const void *)",
+ "referenced_type" : "_ZTIFiPKvS0_E",
+ "self_type" : "_ZTIPFiPKvS0_E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPFiPKvS0_PvE",
+ "name" : "int (*)(const void *, const void *, void *)",
+ "referenced_type" : "_ZTIFiPKvS0_PvE",
+ "self_type" : "_ZTIPFiPKvS0_PvE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPFiPvE",
+ "name" : "int (*)(void *)",
+ "referenced_type" : "_ZTIFiPvE",
+ "self_type" : "_ZTIPFiPvE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPFiiiPvE",
+ "name" : "int (*)(int, int, void *)",
+ "referenced_type" : "_ZTIFiiiPvE",
+ "self_type" : "_ZTIPFiiiPvE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPFvvE",
+ "name" : "void (*)()",
+ "referenced_type" : "_ZTIFvvE",
+ "self_type" : "_ZTIPFvvE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/misc.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPK13native_handle",
+ "name" : "const native_handle *",
+ "referenced_type" : "_ZTIK13native_handle",
+ "self_type" : "_ZTIPK13native_handle",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPK7log_msg",
+ "name" : "const log_msg *",
+ "referenced_type" : "_ZTIK7log_msg",
+ "self_type" : "_ZTIPK7log_msg",
+ "size" : 4,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKDi",
+ "name" : "const char32_t *",
+ "referenced_type" : "_ZTIKDi",
+ "self_type" : "_ZTIPKDi",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKDs",
+ "name" : "const char16_t *",
+ "referenced_type" : "_ZTIKDs",
+ "self_type" : "_ZTIPKDs",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android10VectorImplE",
+ "name" : "const android::VectorImpl *",
+ "referenced_type" : "_ZTIKN7android10VectorImplE",
+ "self_type" : "_ZTIPKN7android10VectorImplE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android12LightRefBaseINS_12NativeHandleEEE",
+ "name" : "const android::LightRefBase<android::NativeHandle> *",
+ "referenced_type" : "_ZTIKN7android12LightRefBaseINS_12NativeHandleEEE",
+ "self_type" : "_ZTIPKN7android12LightRefBaseINS_12NativeHandleEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android12NativeHandleE",
+ "name" : "const android::NativeHandle *",
+ "referenced_type" : "_ZTIKN7android12NativeHandleE",
+ "self_type" : "_ZTIPKN7android12NativeHandleE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android16SortedVectorImplE",
+ "name" : "const android::SortedVectorImpl *",
+ "referenced_type" : "_ZTIKN7android16SortedVectorImplE",
+ "self_type" : "_ZTIPKN7android16SortedVectorImplE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android28sysprop_change_callback_infoE",
+ "name" : "const android::sysprop_change_callback_info *",
+ "referenced_type" : "_ZTIKN7android28sysprop_change_callback_infoE",
+ "self_type" : "_ZTIPKN7android28sysprop_change_callback_infoE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android2spINS_14LooperCallbackEEE",
+ "name" : "const android::sp<android::LooperCallback> *",
+ "referenced_type" : "_ZTIKN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIPKN7android2spINS_14LooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android2spINS_14MessageHandlerEEE",
+ "name" : "const android::sp<android::MessageHandler> *",
+ "referenced_type" : "_ZTIKN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIPKN7android2spINS_14MessageHandlerEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android2spINS_6LooperEEE",
+ "name" : "const android::sp<android::Looper> *",
+ "referenced_type" : "_ZTIKN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIPKN7android2spINS_6LooperEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android2spINS_6ThreadEEE",
+ "name" : "const android::sp<android::Thread> *",
+ "referenced_type" : "_ZTIKN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIPKN7android2spINS_6ThreadEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android2wpINS_14MessageHandlerEEE",
+ "name" : "const android::wp<android::MessageHandler> *",
+ "referenced_type" : "_ZTIKN7android2wpINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIPKN7android2wpINS_14MessageHandlerEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android2wpINS_6ThreadEEE",
+ "name" : "const android::wp<android::Thread> *",
+ "referenced_type" : "_ZTIKN7android2wpINS_6ThreadEEE",
+ "self_type" : "_ZTIPKN7android2wpINS_6ThreadEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android4base11borrowed_fdE",
+ "name" : "const android::base::borrowed_fd *",
+ "referenced_type" : "_ZTIKN7android4base11borrowed_fdE",
+ "self_type" : "_ZTIPKN7android4base11borrowed_fdE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "name" : "const android::base::unique_fd_impl<android::base::DefaultCloser> *",
+ "referenced_type" : "_ZTIKN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "self_type" : "_ZTIPKN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android6Looper15MessageEnvelopeE",
+ "name" : "const android::Looper::MessageEnvelope *",
+ "referenced_type" : "_ZTIKN7android6Looper15MessageEnvelopeE",
+ "self_type" : "_ZTIPKN7android6Looper15MessageEnvelopeE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android6Looper7RequestE",
+ "name" : "const android::Looper::Request *",
+ "referenced_type" : "_ZTIKN7android6Looper7RequestE",
+ "self_type" : "_ZTIPKN7android6Looper7RequestE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android6Looper8ResponseE",
+ "name" : "const android::Looper::Response *",
+ "referenced_type" : "_ZTIKN7android6Looper8ResponseE",
+ "self_type" : "_ZTIPKN7android6Looper8ResponseE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android6LooperE",
+ "name" : "const android::Looper *",
+ "referenced_type" : "_ZTIKN7android6LooperE",
+ "self_type" : "_ZTIPKN7android6LooperE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android6ThreadE",
+ "name" : "const android::Thread *",
+ "referenced_type" : "_ZTIKN7android6ThreadE",
+ "self_type" : "_ZTIPKN7android6ThreadE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "const android::Vector<android::sysprop_change_callback_info> *",
+ "referenced_type" : "_ZTIKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIPKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "const android::Vector<android::Looper::MessageEnvelope> *",
+ "referenced_type" : "_ZTIKN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIPKN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE",
+ "name" : "const android::Vector<android::Looper::Response> *",
+ "referenced_type" : "_ZTIKN7android6VectorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIPKN7android6VectorINS_6Looper8ResponseEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android6VectorINS_7String8EEE",
+ "name" : "const android::Vector<android::String8> *",
+ "referenced_type" : "_ZTIKN7android6VectorINS_7String8EEE",
+ "self_type" : "_ZTIPKN7android6VectorINS_7String8EEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android7FileMapE",
+ "name" : "const android::FileMap *",
+ "referenced_type" : "_ZTIKN7android7FileMapE",
+ "self_type" : "_ZTIPKN7android7FileMapE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android7RefBase12weakref_typeE",
+ "name" : "const android::RefBase::weakref_type *",
+ "referenced_type" : "_ZTIKN7android7RefBase12weakref_typeE",
+ "self_type" : "_ZTIPKN7android7RefBase12weakref_typeE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android7RefBaseE",
+ "name" : "const android::RefBase *",
+ "referenced_type" : "_ZTIKN7android7RefBaseE",
+ "self_type" : "_ZTIPKN7android7RefBaseE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android7String8E",
+ "name" : "const android::String8 *",
+ "referenced_type" : "_ZTIKN7android7String8E",
+ "self_type" : "_ZTIPKN7android7String8E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android8String16E",
+ "name" : "const android::String16 *",
+ "referenced_type" : "_ZTIKN7android8String16E",
+ "self_type" : "_ZTIPKN7android8String16E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android9CallStackE",
+ "name" : "const android::CallStack *",
+ "referenced_type" : "_ZTIKN7android9CallStackE",
+ "self_type" : "_ZTIPKN7android9CallStackE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android9StopWatchE",
+ "name" : "const android::StopWatch *",
+ "referenced_type" : "_ZTIKN7android9StopWatchE",
+ "self_type" : "_ZTIPKN7android9StopWatchE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKN7android9TokenizerE",
+ "name" : "const android::Tokenizer *",
+ "referenced_type" : "_ZTIKN7android9TokenizerE",
+ "self_type" : "_ZTIPKN7android9TokenizerE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKc",
+ "name" : "const char *",
+ "referenced_type" : "_ZTIKc",
+ "self_type" : "_ZTIPKc",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKh",
+ "name" : "const unsigned char *",
+ "referenced_type" : "_ZTIKh",
+ "self_type" : "_ZTIPKh",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/JenkinsHash.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKt",
+ "name" : "const unsigned short *",
+ "referenced_type" : "_ZTIKt",
+ "self_type" : "_ZTIPKt",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/JenkinsHash.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPKv",
+ "name" : "const void *",
+ "referenced_type" : "_ZTIKv",
+ "self_type" : "_ZTIPKv",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android10LogPrinterE",
+ "name" : "android::LogPrinter *",
+ "referenced_type" : "_ZTIN7android10LogPrinterE",
+ "self_type" : "_ZTIPN7android10LogPrinterE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android10VectorImplE",
+ "name" : "android::VectorImpl *",
+ "referenced_type" : "_ZTIN7android10VectorImplE",
+ "self_type" : "_ZTIPN7android10VectorImplE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android11ScopedTraceE",
+ "name" : "android::ScopedTrace *",
+ "referenced_type" : "_ZTIN7android11ScopedTraceE",
+ "self_type" : "_ZTIPN7android11ScopedTraceE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Trace.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android12LightRefBaseINS_12NativeHandleEEE",
+ "name" : "android::LightRefBase<android::NativeHandle> *",
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE",
+ "self_type" : "_ZTIPN7android12LightRefBaseINS_12NativeHandleEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android12NativeHandleE",
+ "name" : "android::NativeHandle *",
+ "referenced_type" : "_ZTIN7android12NativeHandleE",
+ "self_type" : "_ZTIPN7android12NativeHandleE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android13PrefixPrinterE",
+ "name" : "android::PrefixPrinter *",
+ "referenced_type" : "_ZTIN7android13PrefixPrinterE",
+ "self_type" : "_ZTIPN7android13PrefixPrinterE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android14LooperCallbackE",
+ "name" : "android::LooperCallback *",
+ "referenced_type" : "_ZTIN7android14LooperCallbackE",
+ "self_type" : "_ZTIPN7android14LooperCallbackE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android14MessageHandlerE",
+ "name" : "android::MessageHandler *",
+ "referenced_type" : "_ZTIN7android14MessageHandlerE",
+ "self_type" : "_ZTIPN7android14MessageHandlerE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android14StaticString16ILj1EEE",
+ "name" : "android::StaticString16<1> *",
+ "referenced_type" : "_ZTIN7android14StaticString16ILj1EEE",
+ "self_type" : "_ZTIPN7android14StaticString16ILj1EEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android14String8PrinterE",
+ "name" : "android::String8Printer *",
+ "referenced_type" : "_ZTIN7android14String8PrinterE",
+ "self_type" : "_ZTIPN7android14String8PrinterE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android16ReferenceRenamerE",
+ "name" : "android::ReferenceRenamer *",
+ "referenced_type" : "_ZTIN7android16ReferenceRenamerE",
+ "self_type" : "_ZTIPN7android16ReferenceRenamerE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android16SortedVectorImplE",
+ "name" : "android::SortedVectorImpl *",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE",
+ "self_type" : "_ZTIPN7android16SortedVectorImplE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android18WeakMessageHandlerE",
+ "name" : "android::WeakMessageHandler *",
+ "referenced_type" : "_ZTIN7android18WeakMessageHandlerE",
+ "self_type" : "_ZTIPN7android18WeakMessageHandlerE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android19VirtualLightRefBaseE",
+ "name" : "android::VirtualLightRefBase *",
+ "referenced_type" : "_ZTIN7android19VirtualLightRefBaseE",
+ "self_type" : "_ZTIPN7android19VirtualLightRefBaseE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android20SimpleLooperCallbackE",
+ "name" : "android::SimpleLooperCallback *",
+ "referenced_type" : "_ZTIN7android20SimpleLooperCallbackE",
+ "self_type" : "_ZTIPN7android20SimpleLooperCallbackE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android28sysprop_change_callback_infoE",
+ "name" : "android::sysprop_change_callback_info *",
+ "referenced_type" : "_ZTIN7android28sysprop_change_callback_infoE",
+ "self_type" : "_ZTIPN7android28sysprop_change_callback_infoE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android2spINS_12NativeHandleEEE",
+ "name" : "android::sp<android::NativeHandle> *",
+ "referenced_type" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "self_type" : "_ZTIPN7android2spINS_12NativeHandleEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android2spINS_14LooperCallbackEEE",
+ "name" : "android::sp<android::LooperCallback> *",
+ "referenced_type" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIPN7android2spINS_14LooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android2spINS_14MessageHandlerEEE",
+ "name" : "android::sp<android::MessageHandler> *",
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIPN7android2spINS_14MessageHandlerEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "android::sp<android::SimpleLooperCallback> *",
+ "referenced_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTIPN7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android2spINS_6LooperEEE",
+ "name" : "android::sp<android::Looper> *",
+ "referenced_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIPN7android2spINS_6LooperEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android2spINS_6ThreadEEE",
+ "name" : "android::sp<android::Thread> *",
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIPN7android2spINS_6ThreadEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android2wpINS_14MessageHandlerEEE",
+ "name" : "android::wp<android::MessageHandler> *",
+ "referenced_type" : "_ZTIN7android2wpINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIPN7android2wpINS_14MessageHandlerEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android2wpINS_6ThreadEEE",
+ "name" : "android::wp<android::Thread> *",
+ "referenced_type" : "_ZTIN7android2wpINS_6ThreadEEE",
+ "self_type" : "_ZTIPN7android2wpINS_6ThreadEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android4base11borrowed_fdE",
+ "name" : "android::base::borrowed_fd *",
+ "referenced_type" : "_ZTIN7android4base11borrowed_fdE",
+ "self_type" : "_ZTIPN7android4base11borrowed_fdE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "name" : "android::base::unique_fd_impl<android::base::DefaultCloser> *",
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "self_type" : "_ZTIPN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android5Mutex8AutolockE",
+ "name" : "android::Mutex::Autolock *",
+ "referenced_type" : "_ZTIN7android5Mutex8AutolockE",
+ "self_type" : "_ZTIPN7android5Mutex8AutolockE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android5MutexE",
+ "name" : "android::Mutex *",
+ "referenced_type" : "_ZTIN7android5MutexE",
+ "self_type" : "_ZTIPN7android5MutexE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6Looper15MessageEnvelopeE",
+ "name" : "android::Looper::MessageEnvelope *",
+ "referenced_type" : "_ZTIN7android6Looper15MessageEnvelopeE",
+ "self_type" : "_ZTIPN7android6Looper15MessageEnvelopeE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6Looper8ResponseE",
+ "name" : "android::Looper::Response *",
+ "referenced_type" : "_ZTIN7android6Looper8ResponseE",
+ "self_type" : "_ZTIPN7android6Looper8ResponseE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6LooperE",
+ "name" : "android::Looper *",
+ "referenced_type" : "_ZTIN7android6LooperE",
+ "self_type" : "_ZTIPN7android6LooperE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6RWLock9AutoRLockE",
+ "name" : "android::RWLock::AutoRLock *",
+ "referenced_type" : "_ZTIN7android6RWLock9AutoRLockE",
+ "self_type" : "_ZTIPN7android6RWLock9AutoRLockE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6RWLock9AutoWLockE",
+ "name" : "android::RWLock::AutoWLock *",
+ "referenced_type" : "_ZTIN7android6RWLock9AutoWLockE",
+ "self_type" : "_ZTIPN7android6RWLock9AutoWLockE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6RWLockE",
+ "name" : "android::RWLock *",
+ "referenced_type" : "_ZTIN7android6RWLockE",
+ "self_type" : "_ZTIPN7android6RWLockE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6ThreadE",
+ "name" : "android::Thread *",
+ "referenced_type" : "_ZTIN7android6ThreadE",
+ "self_type" : "_ZTIPN7android6ThreadE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::Vector<android::sysprop_change_callback_info> *",
+ "referenced_type" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIPN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::Vector<android::Looper::MessageEnvelope> *",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIPN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6VectorINS_6Looper8ResponseEEE",
+ "name" : "android::Vector<android::Looper::Response> *",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIPN7android6VectorINS_6Looper8ResponseEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android6VectorINS_7String8EEE",
+ "name" : "android::Vector<android::String8> *",
+ "referenced_type" : "_ZTIN7android6VectorINS_7String8EEE",
+ "self_type" : "_ZTIPN7android6VectorINS_7String8EEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android7FileMapE",
+ "name" : "android::FileMap *",
+ "referenced_type" : "_ZTIN7android7FileMapE",
+ "self_type" : "_ZTIPN7android7FileMapE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android7MessageE",
+ "name" : "android::Message *",
+ "referenced_type" : "_ZTIN7android7MessageE",
+ "self_type" : "_ZTIPN7android7MessageE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android7PrinterE",
+ "name" : "android::Printer *",
+ "referenced_type" : "_ZTIN7android7PrinterE",
+ "self_type" : "_ZTIPN7android7PrinterE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android7RefBase12weakref_implE",
+ "name" : "android::RefBase::weakref_impl *",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_implE",
+ "self_type" : "_ZTIPN7android7RefBase12weakref_implE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android7RefBase12weakref_typeE",
+ "name" : "android::RefBase::weakref_type *",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE",
+ "self_type" : "_ZTIPN7android7RefBase12weakref_typeE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android7RefBaseE",
+ "name" : "android::RefBase *",
+ "referenced_type" : "_ZTIN7android7RefBaseE",
+ "self_type" : "_ZTIPN7android7RefBaseE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android7String8E",
+ "name" : "android::String8 *",
+ "referenced_type" : "_ZTIN7android7String8E",
+ "self_type" : "_ZTIPN7android7String8E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android8String1610StaticDataILj1EEE",
+ "name" : "android::String16::StaticData<1> *",
+ "referenced_type" : "_ZTIN7android8String1610StaticDataILj1EEE",
+ "self_type" : "_ZTIPN7android8String1610StaticDataILj1EEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android8String16E",
+ "name" : "android::String16 *",
+ "referenced_type" : "_ZTIN7android8String16E",
+ "self_type" : "_ZTIPN7android8String16E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android9CallStack12StackDeleterE",
+ "name" : "android::CallStack::StackDeleter *",
+ "referenced_type" : "_ZTIN7android9CallStack12StackDeleterE",
+ "self_type" : "_ZTIPN7android9CallStack12StackDeleterE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android9CallStackE",
+ "name" : "android::CallStack *",
+ "referenced_type" : "_ZTIN7android9CallStackE",
+ "self_type" : "_ZTIPN7android9CallStackE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android9ConditionE",
+ "name" : "android::Condition *",
+ "referenced_type" : "_ZTIN7android9ConditionE",
+ "self_type" : "_ZTIPN7android9ConditionE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Condition.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android9FdPrinterE",
+ "name" : "android::FdPrinter *",
+ "referenced_type" : "_ZTIN7android9FdPrinterE",
+ "self_type" : "_ZTIPN7android9FdPrinterE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Printer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android9StopWatchE",
+ "name" : "android::StopWatch *",
+ "referenced_type" : "_ZTIN7android9StopWatchE",
+ "self_type" : "_ZTIPN7android9StopWatchE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPN7android9TokenizerE",
+ "name" : "android::Tokenizer *",
+ "referenced_type" : "_ZTIN7android9TokenizerE",
+ "self_type" : "_ZTIPN7android9TokenizerE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPPN7android9TokenizerE",
+ "name" : "android::Tokenizer **",
+ "referenced_type" : "_ZTIPN7android9TokenizerE",
+ "self_type" : "_ZTIPPN7android9TokenizerE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPPv",
+ "name" : "void **",
+ "referenced_type" : "_ZTIPv",
+ "self_type" : "_ZTIPPv",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPc",
+ "name" : "char *",
+ "referenced_type" : "_ZTIc",
+ "self_type" : "_ZTIPc",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPh",
+ "name" : "unsigned char *",
+ "referenced_type" : "_ZTIh",
+ "self_type" : "_ZTIPh",
+ "size" : 4,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPi",
+ "name" : "int *",
+ "referenced_type" : "_ZTIi",
+ "self_type" : "_ZTIPi",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPj",
+ "name" : "unsigned int *",
+ "referenced_type" : "_ZTIj",
+ "self_type" : "_ZTIPj",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Unicode.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIPv",
+ "name" : "void *",
+ "referenced_type" : "_ZTIv",
+ "self_type" : "_ZTIPv",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ }
+ ],
+ "qualified_types" :
+ [
+ {
+ "alignment" : 2,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIA1_KDs",
+ "name" : "const char16_t[1]",
+ "referenced_type" : "_ZTIA1_Ds",
+ "self_type" : "_ZTIA1_KDs",
+ "size" : 2,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIK13native_handle",
+ "name" : "const native_handle",
+ "referenced_type" : "_ZTI13native_handle",
+ "self_type" : "_ZTIK13native_handle",
+ "size" : 12,
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIK7log_msg",
+ "name" : "const log_msg",
+ "referenced_type" : "_ZTI7log_msg",
+ "self_type" : "_ZTIK7log_msg",
+ "size" : 5124,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKDi",
+ "name" : "const char32_t",
+ "referenced_type" : "_ZTIDi",
+ "self_type" : "_ZTIKDi",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 2,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKDs",
+ "name" : "const char16_t",
+ "referenced_type" : "_ZTIDs",
+ "self_type" : "_ZTIKDs",
+ "size" : 2,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android10VectorImplE",
+ "name" : "const android::VectorImpl",
+ "referenced_type" : "_ZTIN7android10VectorImplE",
+ "self_type" : "_ZTIKN7android10VectorImplE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android12LightRefBaseINS_12NativeHandleEEE",
+ "name" : "const android::LightRefBase<android::NativeHandle>",
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE",
+ "self_type" : "_ZTIKN7android12LightRefBaseINS_12NativeHandleEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android12NativeHandleE",
+ "name" : "const android::NativeHandle",
+ "referenced_type" : "_ZTIN7android12NativeHandleE",
+ "self_type" : "_ZTIKN7android12NativeHandleE",
+ "size" : 12,
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android16ReferenceRenamerE",
+ "name" : "const android::ReferenceRenamer",
+ "referenced_type" : "_ZTIN7android16ReferenceRenamerE",
+ "self_type" : "_ZTIKN7android16ReferenceRenamerE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android16SortedVectorImplE",
+ "name" : "const android::SortedVectorImpl",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE",
+ "self_type" : "_ZTIKN7android16SortedVectorImplE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android28sysprop_change_callback_infoE",
+ "name" : "const android::sysprop_change_callback_info",
+ "referenced_type" : "_ZTIN7android28sysprop_change_callback_infoE",
+ "self_type" : "_ZTIKN7android28sysprop_change_callback_infoE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2spINS_14LooperCallbackEEE",
+ "name" : "const android::sp<android::LooperCallback>",
+ "referenced_type" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIKN7android2spINS_14LooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2spINS_14MessageHandlerEEE",
+ "name" : "const android::sp<android::MessageHandler>",
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIKN7android2spINS_14MessageHandlerEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "const android::sp<android::SimpleLooperCallback>",
+ "referenced_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTIKN7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2spINS_6LooperEEE",
+ "name" : "const android::sp<android::Looper>",
+ "referenced_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIKN7android2spINS_6LooperEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2spINS_6ThreadEEE",
+ "name" : "const android::sp<android::Thread>",
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIKN7android2spINS_6ThreadEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2wpINS_14MessageHandlerEEE",
+ "name" : "const android::wp<android::MessageHandler>",
+ "referenced_type" : "_ZTIN7android2wpINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIKN7android2wpINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android2wpINS_6ThreadEEE",
+ "name" : "const android::wp<android::Thread>",
+ "referenced_type" : "_ZTIN7android2wpINS_6ThreadEEE",
+ "self_type" : "_ZTIKN7android2wpINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android4base11borrowed_fdE",
+ "name" : "const android::base::borrowed_fd",
+ "referenced_type" : "_ZTIN7android4base11borrowed_fdE",
+ "self_type" : "_ZTIKN7android4base11borrowed_fdE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "name" : "const android::base::unique_fd_impl<android::base::DefaultCloser>",
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "self_type" : "_ZTIKN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6Looper15MessageEnvelopeE",
+ "name" : "const android::Looper::MessageEnvelope",
+ "referenced_type" : "_ZTIN7android6Looper15MessageEnvelopeE",
+ "self_type" : "_ZTIKN7android6Looper15MessageEnvelopeE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6Looper7RequestE",
+ "name" : "const android::Looper::Request",
+ "referenced_type" : "_ZTIN7android6Looper7RequestE",
+ "self_type" : "_ZTIKN7android6Looper7RequestE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6Looper8ResponseE",
+ "name" : "const android::Looper::Response",
+ "referenced_type" : "_ZTIN7android6Looper8ResponseE",
+ "self_type" : "_ZTIKN7android6Looper8ResponseE",
+ "size" : 32,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6LooperE",
+ "name" : "const android::Looper",
+ "referenced_type" : "_ZTIN7android6LooperE",
+ "self_type" : "_ZTIKN7android6LooperE",
+ "size" : 136,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6ThreadE",
+ "name" : "const android::Thread",
+ "referenced_type" : "_ZTIN7android6ThreadE",
+ "self_type" : "_ZTIKN7android6ThreadE",
+ "size" : 44,
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "const android::Vector<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIKN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "const android::Vector<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIKN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6VectorINS_6Looper8ResponseEEE",
+ "name" : "const android::Vector<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIKN7android6VectorINS_6Looper8ResponseEEE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android6VectorINS_7String8EEE",
+ "name" : "const android::Vector<android::String8>",
+ "referenced_type" : "_ZTIN7android6VectorINS_7String8EEE",
+ "self_type" : "_ZTIKN7android6VectorINS_7String8EEE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Vector.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android7FileMapE",
+ "name" : "const android::FileMap",
+ "referenced_type" : "_ZTIN7android7FileMapE",
+ "self_type" : "_ZTIKN7android7FileMapE",
+ "size" : 32,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android7MessageE",
+ "name" : "const android::Message",
+ "referenced_type" : "_ZTIN7android7MessageE",
+ "self_type" : "_ZTIKN7android7MessageE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 1,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android7RefBase12weakref_typeE",
+ "name" : "const android::RefBase::weakref_type",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE",
+ "self_type" : "_ZTIKN7android7RefBase12weakref_typeE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android7RefBaseE",
+ "name" : "const android::RefBase",
+ "referenced_type" : "_ZTIN7android7RefBaseE",
+ "self_type" : "_ZTIKN7android7RefBaseE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android7String8E",
+ "name" : "const android::String8",
+ "referenced_type" : "_ZTIN7android7String8E",
+ "self_type" : "_ZTIKN7android7String8E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android8String1610StaticDataILj1EEE",
+ "name" : "const android::String16::StaticData<1>",
+ "referenced_type" : "_ZTIN7android8String1610StaticDataILj1EEE",
+ "self_type" : "_ZTIKN7android8String1610StaticDataILj1EEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android8String16E",
+ "name" : "const android::String16",
+ "referenced_type" : "_ZTIN7android8String16E",
+ "self_type" : "_ZTIKN7android8String16E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android9CallStackE",
+ "name" : "const android::CallStack",
+ "referenced_type" : "_ZTIN7android9CallStackE",
+ "self_type" : "_ZTIKN7android9CallStackE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android9StopWatchE",
+ "name" : "const android::StopWatch",
+ "referenced_type" : "_ZTIN7android9StopWatchE",
+ "self_type" : "_ZTIKN7android9StopWatchE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKN7android9TokenizerE",
+ "name" : "const android::Tokenizer",
+ "referenced_type" : "_ZTIN7android9TokenizerE",
+ "self_type" : "_ZTIKN7android9TokenizerE",
+ "size" : 28,
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKPKc",
+ "name" : "const char *const",
+ "referenced_type" : "_ZTIPKc",
+ "self_type" : "_ZTIKPKc",
+ "size" : 4,
+ "source_file" : "system/core/libprocessgroup/include/processgroup/processgroup.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKPN7android7RefBase12weakref_implE",
+ "name" : "android::RefBase::weakref_impl *const",
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_implE",
+ "self_type" : "_ZTIKPN7android7RefBase12weakref_implE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 1,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKa",
+ "name" : "const signed char",
+ "referenced_type" : "_ZTIa",
+ "self_type" : "_ZTIKa",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 1,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKb",
+ "name" : "const bool",
+ "referenced_type" : "_ZTIb",
+ "self_type" : "_ZTIKb",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 1,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKc",
+ "name" : "const char",
+ "referenced_type" : "_ZTIc",
+ "self_type" : "_ZTIKc",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKd",
+ "name" : "const double",
+ "referenced_type" : "_ZTId",
+ "self_type" : "_ZTIKd",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKf",
+ "name" : "const float",
+ "referenced_type" : "_ZTIf",
+ "self_type" : "_ZTIKf",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 1,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKh",
+ "name" : "const unsigned char",
+ "referenced_type" : "_ZTIh",
+ "self_type" : "_ZTIKh",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKi",
+ "name" : "const int",
+ "referenced_type" : "_ZTIi",
+ "self_type" : "_ZTIKi",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 4,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKj",
+ "name" : "const unsigned int",
+ "referenced_type" : "_ZTIj",
+ "self_type" : "_ZTIKj",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 2,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKs",
+ "name" : "const short",
+ "referenced_type" : "_ZTIs",
+ "self_type" : "_ZTIKs",
+ "size" : 2,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 2,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKt",
+ "name" : "const unsigned short",
+ "referenced_type" : "_ZTIt",
+ "self_type" : "_ZTIKt",
+ "size" : 2,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKv",
+ "name" : "const void",
+ "referenced_type" : "_ZTIv",
+ "self_type" : "_ZTIKv",
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKx",
+ "name" : "const long long",
+ "referenced_type" : "_ZTIx",
+ "self_type" : "_ZTIKx",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 8,
+ "is_const" : true,
+ "linker_set_key" : "_ZTIKy",
+ "name" : "const unsigned long long",
+ "referenced_type" : "_ZTIy",
+ "self_type" : "_ZTIKy",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
+ },
+ {
+ "alignment" : 1,
+ "is_volatile" : true,
+ "linker_set_key" : "_ZTIVb",
+ "name" : "volatile bool",
+ "referenced_type" : "_ZTIb",
+ "self_type" : "_ZTIVb",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/Thread.h"
+ }
+ ],
+ "record_types" :
+ [
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "len",
+ "referenced_type" : "_ZTIt"
+ },
+ {
+ "field_name" : "hdr_size",
+ "field_offset" : 16,
+ "referenced_type" : "_ZTIt"
+ },
+ {
+ "field_name" : "pid",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "tid",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "sec",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "nsec",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "lid",
+ "field_offset" : 160,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "uid",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "linker_set_key" : "_ZTI12logger_entry",
+ "name" : "logger_entry",
+ "referenced_type" : "_ZTI12logger_entry",
+ "self_type" : "_ZTI12logger_entry",
+ "size" : 28,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "y",
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "field_name" : "cb",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "field_name" : "cr",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "field_name" : "ystride",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "cstride",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "chroma_step",
+ "field_offset" : 160,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "reserved",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIA8_j"
+ }
+ ],
+ "linker_set_key" : "_ZTI13android_ycbcr",
+ "name" : "android_ycbcr",
+ "referenced_type" : "_ZTI13android_ycbcr",
+ "self_type" : "_ZTI13android_ycbcr",
+ "size" : 56,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "version",
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "numFds",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "numInts",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "data",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIA0_i"
+ }
+ ],
+ "linker_set_key" : "_ZTI13native_handle",
+ "name" : "native_handle",
+ "referenced_type" : "_ZTI13native_handle",
+ "self_type" : "_ZTI13native_handle",
+ "size" : 12,
+ "source_file" : "system/core/libcutils/include_outside_system/cutils/native_handle.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "x",
+ "referenced_type" : "_ZTIf"
+ },
+ {
+ "field_name" : "y",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIf"
+ }
+ ],
+ "linker_set_key" : "_ZTI16android_xy_color",
+ "name" : "android_xy_color",
+ "referenced_type" : "_ZTI16android_xy_color",
+ "self_type" : "_ZTI16android_xy_color",
+ "size" : 8,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "top_left",
+ "referenced_type" : "_ZTIPh"
+ },
+ {
+ "field_name" : "component",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTI22android_flex_component"
+ },
+ {
+ "field_name" : "bits_per_component",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "bits_used",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "h_increment",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "v_increment",
+ "field_offset" : 160,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "h_subsampling",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "v_subsampling",
+ "field_offset" : 224,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTI18android_flex_plane",
+ "name" : "android_flex_plane",
+ "referenced_type" : "_ZTI18android_flex_plane",
+ "self_type" : "_ZTI18android_flex_plane",
+ "size" : 32,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "format",
+ "referenced_type" : "_ZTI19android_flex_format"
+ },
+ {
+ "field_name" : "num_planes",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "planes",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIP18android_flex_plane"
+ }
+ ],
+ "linker_set_key" : "_ZTI19android_flex_layout",
+ "name" : "android_flex_layout",
+ "referenced_type" : "_ZTI19android_flex_layout",
+ "self_type" : "_ZTI19android_flex_layout",
+ "size" : 12,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "num_points",
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "reserved",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIA8_j"
+ },
+ {
+ "field_name" : "xyzc_points",
+ "field_offset" : 288,
+ "referenced_type" : "_ZTIA_f"
+ }
+ ],
+ "linker_set_key" : "_ZTI20android_depth_points",
+ "name" : "android_depth_points",
+ "referenced_type" : "_ZTI20android_depth_points",
+ "self_type" : "_ZTI20android_depth_points",
+ "size" : 36,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "struct_size",
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "buffer_id",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "priority",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "tag",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "field_name" : "file",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "field_name" : "line",
+ "field_offset" : 160,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "message",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "linker_set_key" : "_ZTI21__android_log_message",
+ "name" : "__android_log_message",
+ "referenced_type" : "_ZTI21__android_log_message",
+ "self_type" : "_ZTI21__android_log_message",
+ "size" : 28,
+ "source_file" : "system/logging/liblog/include_vndk/android/log.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "maxContentLightLevel",
+ "referenced_type" : "_ZTIf"
+ },
+ {
+ "field_name" : "maxFrameAverageLightLevel",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIf"
+ }
+ ],
+ "linker_set_key" : "_ZTI25android_cta861_3_metadata",
+ "name" : "android_cta861_3_metadata",
+ "referenced_type" : "_ZTI25android_cta861_3_metadata",
+ "self_type" : "_ZTI25android_cta861_3_metadata",
+ "size" : 8,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "displayPrimaryRed",
+ "referenced_type" : "_ZTI16android_xy_color"
+ },
+ {
+ "field_name" : "displayPrimaryGreen",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTI16android_xy_color"
+ },
+ {
+ "field_name" : "displayPrimaryBlue",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTI16android_xy_color"
+ },
+ {
+ "field_name" : "whitePoint",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTI16android_xy_color"
+ },
+ {
+ "field_name" : "maxLuminance",
+ "field_offset" : 256,
+ "referenced_type" : "_ZTIf"
+ },
+ {
+ "field_name" : "minLuminance",
+ "field_offset" : 288,
+ "referenced_type" : "_ZTIf"
+ }
+ ],
+ "linker_set_key" : "_ZTI26android_smpte2086_metadata",
+ "name" : "android_smpte2086_metadata",
+ "referenced_type" : "_ZTI26android_smpte2086_metadata",
+ "self_type" : "_ZTI26android_smpte2086_metadata",
+ "size" : 40,
+ "source_file" : "system/core/libsystem/include/system/graphics.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "referenced_type" : "_ZTIN7log_msgUt_E"
+ }
+ ],
+ "linker_set_key" : "_ZTI7log_msg",
+ "name" : "log_msg",
+ "referenced_type" : "_ZTI7log_msg",
+ "self_type" : "_ZTI7log_msg",
+ "size" : 5124,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ },
+ {
+ "alignment" : 1,
+ "fields" :
+ [
+ {
+ "field_name" : "tv_sec",
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "field_name" : "tv_nsec",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "linker_set_key" : "_ZTI8log_time",
+ "name" : "log_time",
+ "referenced_type" : "_ZTI8log_time",
+ "self_type" : "_ZTI8log_time",
+ "size" : 8,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_time.h"
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android7PrinterE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mLogTag",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPriority",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTI19android_LogPriority"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPrefix",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mIgnoreBlankLines",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android10LogPrinterE",
+ "name" : "android::LogPrinter",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android10LogPrinterE",
+ "self_type" : "_ZTIN7android10LogPrinterE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android10LogPrinterE"
+ },
+ {
+ "mangled_component_name" : "_ZN7android10LogPrinter9printLineEPKc"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android10LogPrinterD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android10LogPrinterD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mStorage",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mCount",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mFlags",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIKj"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mItemSize",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIKj"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android10VectorImplE",
+ "name" : "android::VectorImpl",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android10VectorImplE",
+ "self_type" : "_ZTIN7android10VectorImplE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android10VectorImplE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android10VectorImplD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android10VectorImplD0Ev"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl12do_constructEPvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl10do_destroyEPvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl7do_copyEPvPKvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl8do_splatEPvPKvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl15do_move_forwardEPvPKvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl16do_move_backwardEPvPKvj"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mTag",
+ "referenced_type" : "_ZTIy"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android11ScopedTraceE",
+ "name" : "android::ScopedTrace",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android11ScopedTraceE",
+ "self_type" : "_ZTIN7android11ScopedTraceE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/Trace.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mCount",
+ "referenced_type" : "_ZTINSt3__16atomicIiEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE",
+ "name" : "android::LightRefBase<android::NativeHandle>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE",
+ "self_type" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h",
+ "template_args" :
+ [
+ "_ZTIN7android12NativeHandleE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mCount",
+ "referenced_type" : "_ZTINSt3__16atomicIiEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE",
+ "name" : "android::LightRefBase<android::VirtualLightRefBase>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE",
+ "self_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h",
+ "template_args" :
+ [
+ "_ZTIN7android19VirtualLightRefBaseE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_12NativeHandleEEE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mHandle",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIP13native_handle"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mOwnsHandle",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIb"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android12NativeHandleE",
+ "name" : "android::NativeHandle",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android12NativeHandleE",
+ "self_type" : "_ZTIN7android12NativeHandleE",
+ "size" : 12,
+ "source_file" : "system/core/libutils/include/utils/NativeHandle.h"
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android7PrinterE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mPrinter",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIRN7android7PrinterE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPrefix",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android13PrefixPrinterE",
+ "name" : "android::PrefixPrinter",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android13PrefixPrinterE",
+ "self_type" : "_ZTIN7android13PrefixPrinterE",
+ "size" : 12,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android13PrefixPrinterE"
+ },
+ {
+ "mangled_component_name" : "_ZN7android13PrefixPrinter9printLineEPKc"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android13PrefixPrinterD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android13PrefixPrinterD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::trait_pointer<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::trait_pointer<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEEE",
+ "name" : "android::trait_pointer<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android13trait_pointerINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "is_virtual" : true,
+ "referenced_type" : "_ZTIN7android7RefBaseE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android14LooperCallbackE",
+ "name" : "android::LooperCallback",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android14LooperCallbackE",
+ "self_type" : "_ZTIN7android14LooperCallbackE",
+ "size" : 12,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "vtable_components" :
+ [
+ {
+ "component_value" : 4,
+ "kind" : "vbase_offset"
+ },
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android14LooperCallbackE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14LooperCallbackD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14LooperCallbackD0Ev"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZN7android14LooperCallback11handleEventEiiPv"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -4,
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -4,
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android14LooperCallbackE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n12_N7android14LooperCallbackD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n12_N7android14LooperCallbackD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "is_virtual" : true,
+ "referenced_type" : "_ZTIN7android7RefBaseE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android14MessageHandlerE",
+ "name" : "android::MessageHandler",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android14MessageHandlerE",
+ "self_type" : "_ZTIN7android14MessageHandlerE",
+ "size" : 12,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "vtable_components" :
+ [
+ {
+ "component_value" : 4,
+ "kind" : "vbase_offset"
+ },
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android14MessageHandlerE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14MessageHandlerD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14MessageHandlerD0Ev"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZN7android14MessageHandler13handleMessageERKNS_7MessageE"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -4,
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -4,
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android14MessageHandlerE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n12_N7android14MessageHandlerD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n12_N7android14MessageHandlerD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android14ReferenceMoverE",
+ "name" : "android::ReferenceMover",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android14ReferenceMoverE",
+ "self_type" : "_ZTIN7android14ReferenceMoverE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android8String16E"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mData",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIKN7android8String1610StaticDataILj1EEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android14StaticString16ILj1EEE",
+ "name" : "android::StaticString16<1>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android14StaticString16ILj1EEE",
+ "self_type" : "_ZTIN7android14StaticString16ILj1EEE",
+ "size" : 12,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android7PrinterE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mTarget",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIPN7android7String8E"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPrefix",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android14String8PrinterE",
+ "name" : "android::String8Printer",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android14String8PrinterE",
+ "self_type" : "_ZTIN7android14String8PrinterE",
+ "size" : 12,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android14String8PrinterE"
+ },
+ {
+ "mangled_component_name" : "_ZN7android14String8Printer9printLineEPKc"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14String8PrinterD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android14String8PrinterD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIN7android16ReferenceRenamerE",
+ "name" : "android::ReferenceRenamer",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android16ReferenceRenamerE",
+ "self_type" : "_ZTIN7android16ReferenceRenamerE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android16ReferenceRenamerE"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android16ReferenceRenamerclEj"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android10VectorImplE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android16SortedVectorImplE",
+ "name" : "android::SortedVectorImpl",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE",
+ "self_type" : "_ZTIN7android16SortedVectorImplE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/VectorImpl.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android16SortedVectorImplE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android16SortedVectorImplD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android16SortedVectorImplD0Ev"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl12do_constructEPvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl10do_destroyEPvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl7do_copyEPvPKvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl8do_splatEPvPKvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl15do_move_forwardEPvPKvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android10VectorImpl16do_move_backwardEPvPKvj"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZNK7android16SortedVectorImpl10do_compareEPKvS2_"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTINSt3__117integral_constantIbLb0EEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android16use_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::use_trivial_move<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android16use_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android16use_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTINSt3__117integral_constantIbLb0EEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android16use_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::use_trivial_move<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android16use_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android16use_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTINSt3__117integral_constantIbLb0EEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android16use_trivial_moveINS_6Looper8ResponseEEE",
+ "name" : "android::use_trivial_move<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android16use_trivial_moveINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android16use_trivial_moveINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android14MessageHandlerE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mHandler",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIN7android2wpINS_14MessageHandlerEEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android18WeakMessageHandlerE",
+ "name" : "android::WeakMessageHandler",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android18WeakMessageHandlerE",
+ "self_type" : "_ZTIN7android18WeakMessageHandlerE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "vtable_components" :
+ [
+ {
+ "component_value" : 12,
+ "kind" : "vbase_offset"
+ },
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android18WeakMessageHandlerE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android18WeakMessageHandlerD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android18WeakMessageHandlerD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android18WeakMessageHandler13handleMessageERKNS_7MessageE"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -12,
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -12,
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android18WeakMessageHandlerE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n12_N7android18WeakMessageHandlerD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n12_N7android18WeakMessageHandlerD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::trait_trivial_copy<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::trait_trivial_copy<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEEE",
+ "name" : "android::trait_trivial_copy<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIbEE",
+ "name" : "android::trait_trivial_copy<bool>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIbEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIbEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIb"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIcEE",
+ "name" : "android::trait_trivial_copy<char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIcEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIcEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIc"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIdEE",
+ "name" : "android::trait_trivial_copy<double>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIdEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIdEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTId"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIfEE",
+ "name" : "android::trait_trivial_copy<float>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIfEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIfEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIf"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIhEE",
+ "name" : "android::trait_trivial_copy<unsigned char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIhEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIhEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIh"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIiEE",
+ "name" : "android::trait_trivial_copy<int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIiEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIiEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIi"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIjEE",
+ "name" : "android::trait_trivial_copy<unsigned int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIjEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIjEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIj"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIlEE",
+ "name" : "android::trait_trivial_copy<long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIlEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIlEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIl"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyImEE",
+ "name" : "android::trait_trivial_copy<unsigned long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyImEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyImEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIm"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIsEE",
+ "name" : "android::trait_trivial_copy<short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIsEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIsEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIs"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyItEE",
+ "name" : "android::trait_trivial_copy<unsigned short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyItEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyItEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIt"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIvEE",
+ "name" : "android::trait_trivial_copy<void>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIvEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIvEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIv"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIxEE",
+ "name" : "android::trait_trivial_copy<long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIxEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIxEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIx"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_copyIyEE",
+ "name" : "android::trait_trivial_copy<unsigned long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_copyIyEE",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIyEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIy"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::trait_trivial_ctor<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::trait_trivial_ctor<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEEE",
+ "name" : "android::trait_trivial_ctor<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIbEE",
+ "name" : "android::trait_trivial_ctor<bool>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIbEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIbEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIb"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIcEE",
+ "name" : "android::trait_trivial_ctor<char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIcEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIcEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIc"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIdEE",
+ "name" : "android::trait_trivial_ctor<double>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIdEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIdEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTId"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIfEE",
+ "name" : "android::trait_trivial_ctor<float>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIfEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIfEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIf"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIhEE",
+ "name" : "android::trait_trivial_ctor<unsigned char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIhEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIhEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIh"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIiEE",
+ "name" : "android::trait_trivial_ctor<int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIiEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIiEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIi"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIjEE",
+ "name" : "android::trait_trivial_ctor<unsigned int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIjEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIjEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIj"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIlEE",
+ "name" : "android::trait_trivial_ctor<long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIlEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIlEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIl"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorImEE",
+ "name" : "android::trait_trivial_ctor<unsigned long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorImEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorImEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIm"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIsEE",
+ "name" : "android::trait_trivial_ctor<short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIsEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIsEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIs"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorItEE",
+ "name" : "android::trait_trivial_ctor<unsigned short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorItEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorItEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIt"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIvEE",
+ "name" : "android::trait_trivial_ctor<void>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIvEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIvEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIv"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIxEE",
+ "name" : "android::trait_trivial_ctor<long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIxEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIxEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIx"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_ctorIyEE",
+ "name" : "android::trait_trivial_ctor<unsigned long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_ctorIyEE",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIyEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIy"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::trait_trivial_dtor<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::trait_trivial_dtor<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEEE",
+ "name" : "android::trait_trivial_dtor<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIbEE",
+ "name" : "android::trait_trivial_dtor<bool>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIbEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIbEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIb"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIcEE",
+ "name" : "android::trait_trivial_dtor<char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIcEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIcEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIc"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIdEE",
+ "name" : "android::trait_trivial_dtor<double>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIdEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIdEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTId"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIfEE",
+ "name" : "android::trait_trivial_dtor<float>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIfEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIfEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIf"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIhEE",
+ "name" : "android::trait_trivial_dtor<unsigned char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIhEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIhEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIh"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIiEE",
+ "name" : "android::trait_trivial_dtor<int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIiEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIiEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIi"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIjEE",
+ "name" : "android::trait_trivial_dtor<unsigned int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIjEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIjEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIj"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIlEE",
+ "name" : "android::trait_trivial_dtor<long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIlEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIlEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIl"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorImEE",
+ "name" : "android::trait_trivial_dtor<unsigned long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorImEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorImEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIm"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIsEE",
+ "name" : "android::trait_trivial_dtor<short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIsEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIsEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIs"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorItEE",
+ "name" : "android::trait_trivial_dtor<unsigned short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorItEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorItEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIt"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIvEE",
+ "name" : "android::trait_trivial_dtor<void>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIvEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIvEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIv"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIxEE",
+ "name" : "android::trait_trivial_dtor<long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIxEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIxEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIx"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_dtorIyEE",
+ "name" : "android::trait_trivial_dtor<unsigned long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_dtorIyEE",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIyEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIy"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::trait_trivial_move<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::trait_trivial_move<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEEE",
+ "name" : "android::trait_trivial_move<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE",
+ "name" : "android::trait_trivial_move<android::String8>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/String8.h",
+ "template_args" :
+ [
+ "_ZTIN7android7String8E"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_8String16EEE",
+ "name" : "android::trait_trivial_move<android::String16>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_8String16EEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_8String16EEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/String16.h",
+ "template_args" :
+ [
+ "_ZTIN7android8String16E"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIbEE",
+ "name" : "android::trait_trivial_move<bool>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIbEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIbEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIb"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIcEE",
+ "name" : "android::trait_trivial_move<char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIcEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIcEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIc"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIdEE",
+ "name" : "android::trait_trivial_move<double>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIdEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIdEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTId"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIfEE",
+ "name" : "android::trait_trivial_move<float>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIfEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIfEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIf"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIhEE",
+ "name" : "android::trait_trivial_move<unsigned char>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIhEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIhEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIh"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIiEE",
+ "name" : "android::trait_trivial_move<int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIiEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIiEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIi"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIjEE",
+ "name" : "android::trait_trivial_move<unsigned int>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIjEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIjEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIj"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIlEE",
+ "name" : "android::trait_trivial_move<long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIlEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIlEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIl"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveImEE",
+ "name" : "android::trait_trivial_move<unsigned long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveImEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveImEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIm"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIsEE",
+ "name" : "android::trait_trivial_move<short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIsEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIsEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIs"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveItEE",
+ "name" : "android::trait_trivial_move<unsigned short>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveItEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveItEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIt"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIvEE",
+ "name" : "android::trait_trivial_move<void>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIvEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIvEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIv"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIxEE",
+ "name" : "android::trait_trivial_move<long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIxEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIxEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIx"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android18trait_trivial_moveIyEE",
+ "name" : "android::trait_trivial_move<unsigned long long>",
+ "referenced_type" : "_ZTIN7android18trait_trivial_moveIyEE",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIyEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIy"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android19VirtualLightRefBaseE",
+ "name" : "android::VirtualLightRefBase",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android19VirtualLightRefBaseE",
+ "self_type" : "_ZTIN7android19VirtualLightRefBaseE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/LightRefBase.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android19VirtualLightRefBaseE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android19VirtualLightRefBaseD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android19VirtualLightRefBaseD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android14LooperCallbackE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mCallback",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIPFiiiPvE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android20SimpleLooperCallbackE",
+ "name" : "android::SimpleLooperCallback",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android20SimpleLooperCallbackE",
+ "self_type" : "_ZTIN7android20SimpleLooperCallbackE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "vtable_components" :
+ [
+ {
+ "component_value" : 8,
+ "kind" : "vbase_offset"
+ },
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android20SimpleLooperCallbackE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android20SimpleLooperCallbackD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android20SimpleLooperCallbackD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android20SimpleLooperCallback11handleEventEiiPv"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -8,
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -8,
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android20SimpleLooperCallbackE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n12_N7android20SimpleLooperCallbackD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n12_N7android20SimpleLooperCallbackD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android12NativeHandleE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "name" : "android::sp<android::NativeHandle>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "self_type" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android12NativeHandleE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android14LooperCallbackE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "name" : "android::sp<android::LooperCallback>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "self_type" : "_ZTIN7android2spINS_14LooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android14LooperCallbackE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android14MessageHandlerE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "name" : "android::sp<android::MessageHandler>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android14MessageHandlerE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android20SimpleLooperCallbackE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "android::sp<android::SimpleLooperCallback>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android20SimpleLooperCallbackE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_6LooperEEE",
+ "name" : "android::sp<android::Looper>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android6LooperE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2spINS_6ThreadEEE",
+ "name" : "android::sp<android::Thread>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h",
+ "template_args" :
+ [
+ "_ZTIN7android6ThreadE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android14MessageHandlerE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "m_refs",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2wpINS_14MessageHandlerEEE",
+ "name" : "android::wp<android::MessageHandler>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2wpINS_14MessageHandlerEEE",
+ "self_type" : "_ZTIN7android2wpINS_14MessageHandlerEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "template_args" :
+ [
+ "_ZTIN7android14MessageHandlerE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "m_ptr",
+ "referenced_type" : "_ZTIPN7android6ThreadE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "m_refs",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android2wpINS_6ThreadEEE",
+ "name" : "android::wp<android::Thread>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android2wpINS_6ThreadEEE",
+ "self_type" : "_ZTIN7android2wpINS_6ThreadEEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "template_args" :
+ [
+ "_ZTIN7android6ThreadE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "fd_",
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android4base11borrowed_fdE",
+ "name" : "android::base::borrowed_fd",
+ "referenced_type" : "_ZTIN7android4base11borrowed_fdE",
+ "self_type" : "_ZTIN7android4base11borrowed_fdE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android4base13DefaultCloserE",
+ "name" : "android::base::DefaultCloser",
+ "referenced_type" : "_ZTIN7android4base13DefaultCloserE",
+ "self_type" : "_ZTIN7android4base13DefaultCloserE",
+ "size" : 1,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "fd_",
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "name" : "android::base::unique_fd_impl<android::base::DefaultCloser>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "self_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h",
+ "template_args" :
+ [
+ "_ZTIN7android4base13DefaultCloserE"
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mLock",
+ "referenced_type" : "_ZTIRN7android5MutexE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android5Mutex8AutolockE",
+ "name" : "android::Mutex::Autolock",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android5Mutex8AutolockE",
+ "self_type" : "_ZTIN7android5Mutex8AutolockE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mMutex",
+ "referenced_type" : "_ZTI15pthread_mutex_t"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android5MutexE",
+ "name" : "android::Mutex",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android5MutexE",
+ "self_type" : "_ZTIN7android5MutexE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Mutex.h"
+ },
+ {
+ "access" : "private",
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "field_name" : "uptime",
+ "referenced_type" : "_ZTIx"
+ },
+ {
+ "field_name" : "handler",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE"
+ },
+ {
+ "field_name" : "message",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIN7android7MessageE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper15MessageEnvelopeE",
+ "name" : "android::Looper::MessageEnvelope",
+ "referenced_type" : "_ZTIN7android6Looper15MessageEnvelopeE",
+ "self_type" : "_ZTIN7android6Looper15MessageEnvelopeE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "fd",
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "ident",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "events",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "callback",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIN7android2spINS_14LooperCallbackEEE"
+ },
+ {
+ "field_name" : "data",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIPv"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper7RequestE",
+ "name" : "android::Looper::Request",
+ "referenced_type" : "_ZTIN7android6Looper7RequestE",
+ "self_type" : "_ZTIN7android6Looper7RequestE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "access" : "private",
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "field_name" : "seq",
+ "referenced_type" : "_ZTIy"
+ },
+ {
+ "field_name" : "events",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "field_name" : "request",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIN7android6Looper7RequestE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6Looper8ResponseE",
+ "name" : "android::Looper::Response",
+ "referenced_type" : "_ZTIN7android6Looper8ResponseE",
+ "self_type" : "_ZTIN7android6Looper8ResponseE",
+ "size" : 32,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 8,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android7RefBaseE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mAllowNonCallbacks",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIKb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mWakeEventFd",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mLock",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIN7android5MutexE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mMessageEnvelopes",
+ "field_offset" : 160,
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mSendingMessage",
+ "field_offset" : 320,
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPolling",
+ "field_offset" : 328,
+ "referenced_type" : "_ZTIVb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mEpollFd",
+ "field_offset" : 352,
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mEpollRebuildRequired",
+ "field_offset" : 384,
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mRequests",
+ "field_offset" : 416,
+ "referenced_type" : "_ZTINSt3__113unordered_mapIyN7android6Looper7RequestENS_4hashIyEENS_8equal_toIyEENS_9allocatorINS_4pairIKyS3_EEEEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mSequenceNumberByFd",
+ "field_offset" : 576,
+ "referenced_type" : "_ZTINSt3__113unordered_mapIiyNS_4hashIiEENS_8equal_toIiEENS_9allocatorINS_4pairIKiyEEEEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mNextRequestSeq",
+ "field_offset" : 768,
+ "referenced_type" : "_ZTIy"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mResponses",
+ "field_offset" : 832,
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mResponseIndex",
+ "field_offset" : 992,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mNextMessageUptime",
+ "field_offset" : 1024,
+ "referenced_type" : "_ZTIx"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6LooperE",
+ "name" : "android::Looper",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6LooperE",
+ "self_type" : "_ZTIN7android6LooperE",
+ "size" : 136,
+ "source_file" : "system/core/libutils/include/utils/Looper.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6LooperE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6LooperD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6LooperD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mLock",
+ "referenced_type" : "_ZTIRN7android6RWLockE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6RWLock9AutoRLockE",
+ "name" : "android::RWLock::AutoRLock",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6RWLock9AutoRLockE",
+ "self_type" : "_ZTIN7android6RWLock9AutoRLockE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mLock",
+ "referenced_type" : "_ZTIRN7android6RWLockE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6RWLock9AutoWLockE",
+ "name" : "android::RWLock::AutoWLock",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6RWLock9AutoWLockE",
+ "self_type" : "_ZTIN7android6RWLock9AutoWLockE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mRWLock",
+ "referenced_type" : "_ZTI16pthread_rwlock_t"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6RWLockE",
+ "name" : "android::RWLock",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6RWLockE",
+ "self_type" : "_ZTIN7android6RWLockE",
+ "size" : 40,
+ "source_file" : "system/core/libutils/include/utils/RWLock.h"
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "is_virtual" : true,
+ "referenced_type" : "_ZTIN7android7RefBaseE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mCanCallJava",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIKb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mThread",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mLock",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIN7android5MutexE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mThreadExitedCondition",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIN7android9ConditionE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mStatus",
+ "field_offset" : 160,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mExitPending",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIVb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mRunning",
+ "field_offset" : 200,
+ "referenced_type" : "_ZTIVb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mHoldSelf",
+ "field_offset" : 224,
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mTid",
+ "field_offset" : 256,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6ThreadE",
+ "name" : "android::Thread",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6ThreadE",
+ "self_type" : "_ZTIN7android6ThreadE",
+ "size" : 44,
+ "source_file" : "system/core/libutils/include/utils/Thread.h",
+ "vtable_components" :
+ [
+ {
+ "component_value" : 36,
+ "kind" : "vbase_offset"
+ },
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6ThreadE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6ThreadD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6ThreadD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android6Thread3runEPKcij"
+ },
+ {
+ "mangled_component_name" : "_ZN7android6Thread11requestExitEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android6Thread10readyToRunEv"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZN7android6Thread10threadLoopEv"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -36,
+ "kind" : "vcall_offset"
+ },
+ {
+ "component_value" : -36,
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6ThreadE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n12_N7android6ThreadD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZTv0_n12_N7android6ThreadD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "access" : "private",
+ "referenced_type" : "_ZTIN7android10VectorImplE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::Vector<android::sysprop_change_callback_info>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Vector.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ],
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6VectorINS_28sysprop_change_callback_infoEEE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_28sysprop_change_callback_infoEED1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_28sysprop_change_callback_infoEED0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE12do_constructEPvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE10do_destroyEPvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE7do_copyEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE8do_splatEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE15do_move_forwardEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_28sysprop_change_callback_infoEE16do_move_backwardEPvPKvj"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "access" : "private",
+ "referenced_type" : "_ZTIN7android10VectorImplE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::Vector<android::Looper::MessageEnvelope>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Vector.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ],
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6VectorINS_6Looper15MessageEnvelopeEEE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_6Looper15MessageEnvelopeEED1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_6Looper15MessageEnvelopeEED0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE12do_constructEPvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE10do_destroyEPvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE7do_copyEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE8do_splatEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE15do_move_forwardEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper15MessageEnvelopeEE16do_move_backwardEPvPKvj"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "access" : "private",
+ "referenced_type" : "_ZTIN7android10VectorImplE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE",
+ "name" : "android::Vector<android::Looper::Response>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Vector.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ],
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6VectorINS_6Looper8ResponseEEE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_6Looper8ResponseEED1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_6Looper8ResponseEED0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE12do_constructEPvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE10do_destroyEPvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE7do_copyEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE8do_splatEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE15do_move_forwardEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_6Looper8ResponseEE16do_move_backwardEPvPKvj"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "access" : "private",
+ "referenced_type" : "_ZTIN7android10VectorImplE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android6VectorINS_7String8EEE",
+ "name" : "android::Vector<android::String8>",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android6VectorINS_7String8EEE",
+ "self_type" : "_ZTIN7android6VectorINS_7String8EEE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/Vector.h",
+ "template_args" :
+ [
+ "_ZTIN7android7String8E"
+ ],
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android6VectorINS_7String8EEE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_7String8EED1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android6VectorINS_7String8EED0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE12do_constructEPvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE10do_destroyEPvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE7do_copyEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE8do_splatEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE15do_move_forwardEPvPKvj"
+ },
+ {
+ "mangled_component_name" : "_ZNK7android6VectorINS_7String8EE16do_move_backwardEPvPKvj"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEEE",
+ "name" : "android::traits<android::sysprop_change_callback_info>",
+ "referenced_type" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEEE",
+ "self_type" : "_ZTIN7android6traitsINS_28sysprop_change_callback_infoEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android28sysprop_change_callback_infoE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEEE",
+ "name" : "android::traits<android::Looper::MessageEnvelope>",
+ "referenced_type" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEEE",
+ "self_type" : "_ZTIN7android6traitsINS_6Looper15MessageEnvelopeEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper15MessageEnvelopeE"
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android6traitsINS_6Looper8ResponseEEE",
+ "name" : "android::traits<android::Looper::Response>",
+ "referenced_type" : "_ZTIN7android6traitsINS_6Looper8ResponseEEE",
+ "self_type" : "_ZTIN7android6traitsINS_6Looper8ResponseEEE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/TypeHelpers.h",
+ "template_args" :
+ [
+ "_ZTIN7android6Looper8ResponseE"
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mFileName",
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mBasePtr",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mBaseLength",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mDataOffset",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIx"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mDataPtr",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIPv"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mDataLength",
+ "field_offset" : 224,
+ "referenced_type" : "_ZTIj"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7FileMapE",
+ "name" : "android::FileMap",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android7FileMapE",
+ "self_type" : "_ZTIN7android7FileMapE",
+ "size" : 32,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "what",
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7MessageE",
+ "name" : "android::Message",
+ "referenced_type" : "_ZTIN7android7MessageE",
+ "self_type" : "_ZTIN7android7MessageE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTIN7android7PrinterE",
+ "name" : "android::Printer",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android7PrinterE",
+ "self_type" : "_ZTIN7android7PrinterE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android7PrinterE"
+ },
+ {
+ "is_pure" : true,
+ "mangled_component_name" : "_ZN7android7Printer9printLineEPKc"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android7PrinterD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android7PrinterD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android7RefBase12weakref_typeE",
+ "name" : "android::RefBase::weakref_type",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE",
+ "self_type" : "_ZTIN7android7RefBase12weakref_typeE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mRefs",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIKPN7android7RefBase12weakref_implE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7RefBaseE",
+ "name" : "android::RefBase",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android7RefBaseE",
+ "self_type" : "_ZTIN7android7RefBaseE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/RefBase.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android7RefBaseE"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android7RefBaseD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android7RefBaseD0Ev"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase10onFirstRefEv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase15onLastStrongRefEPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase20onIncStrongAttemptedEjPKv"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7RefBase13onLastWeakRefEPKv"
+ }
+ ]
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mString",
+ "referenced_type" : "_ZTIPKc"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android7String8E",
+ "name" : "android::String8",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android7String8E",
+ "self_type" : "_ZTIN7android7String8E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String8.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "size",
+ "referenced_type" : "_ZTIKj"
+ },
+ {
+ "field_name" : "data",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIA1_Ds"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android8String1610StaticDataILj1EEE",
+ "name" : "android::String16::StaticData<1>",
+ "referenced_type" : "_ZTIN7android8String1610StaticDataILj1EEE",
+ "self_type" : "_ZTIN7android8String1610StaticDataILj1EEE",
+ "size" : 8,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mString",
+ "referenced_type" : "_ZTIPKDs"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android8String16E",
+ "name" : "android::String16",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android8String16E",
+ "self_type" : "_ZTIN7android8String16E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ },
+ {
+ "alignment" : 1,
+ "linker_set_key" : "_ZTIN7android9CallStack12StackDeleterE",
+ "name" : "android::CallStack::StackDeleter",
+ "referenced_type" : "_ZTIN7android9CallStack12StackDeleterE",
+ "self_type" : "_ZTIN7android9CallStack12StackDeleterE",
+ "size" : 1,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mFrameLines",
+ "referenced_type" : "_ZTIN7android6VectorINS_7String8EEE"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9CallStackE",
+ "name" : "android::CallStack",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android9CallStackE",
+ "self_type" : "_ZTIN7android9CallStackE",
+ "size" : 20,
+ "source_file" : "system/core/libutils/include/utils/CallStack.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mCond",
+ "referenced_type" : "_ZTI14pthread_cond_t"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9ConditionE",
+ "name" : "android::Condition",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android9ConditionE",
+ "self_type" : "_ZTIN7android9ConditionE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/Condition.h"
+ },
+ {
+ "alignment" : 4,
+ "base_specifiers" :
+ [
+ {
+ "referenced_type" : "_ZTIN7android7PrinterE"
+ }
+ ],
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mFd",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mIndent",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mPrefix",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mFormatString",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIA20_c"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9FdPrinterE",
+ "name" : "android::FdPrinter",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android9FdPrinterE",
+ "self_type" : "_ZTIN7android9FdPrinterE",
+ "size" : 36,
+ "source_file" : "system/core/libutils/include/utils/Printer.h",
+ "vtable_components" :
+ [
+ {
+ "kind" : "offset_to_top"
+ },
+ {
+ "kind" : "rtti",
+ "mangled_component_name" : "_ZTIN7android9FdPrinterE"
+ },
+ {
+ "mangled_component_name" : "_ZN7android9FdPrinter9printLineEPKc"
+ },
+ {
+ "mangled_component_name" : "_ZN7android7Printer15printFormatLineEPKcz"
+ },
+ {
+ "kind" : "complete_dtor_pointer",
+ "mangled_component_name" : "_ZN7android9FdPrinterD1Ev"
+ },
+ {
+ "kind" : "deleting_dtor_pointer",
+ "mangled_component_name" : "_ZN7android9FdPrinterD0Ev"
+ }
+ ]
+ },
+ {
+ "alignment" : 8,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mName",
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mClock",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mStartTime",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIx"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9StopWatchE",
+ "name" : "android::StopWatch",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android9StopWatchE",
+ "self_type" : "_ZTIN7android9StopWatchE",
+ "size" : 16,
+ "source_file" : "system/core/libutils/include/utils/StopWatch.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "access" : "private",
+ "field_name" : "mFilename",
+ "referenced_type" : "_ZTIN7android7String8E"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mFileMap",
+ "field_offset" : 32,
+ "referenced_type" : "_ZTIPN7android7FileMapE"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mBuffer",
+ "field_offset" : 64,
+ "referenced_type" : "_ZTIPc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mOwnBuffer",
+ "field_offset" : 96,
+ "referenced_type" : "_ZTIb"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mLength",
+ "field_offset" : 128,
+ "referenced_type" : "_ZTIj"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mCurrent",
+ "field_offset" : 160,
+ "referenced_type" : "_ZTIPKc"
+ },
+ {
+ "access" : "private",
+ "field_name" : "mLineNumber",
+ "field_offset" : 192,
+ "referenced_type" : "_ZTIi"
+ }
+ ],
+ "linker_set_key" : "_ZTIN7android9TokenizerE",
+ "name" : "android::Tokenizer",
+ "record_kind" : "class",
+ "referenced_type" : "_ZTIN7android9TokenizerE",
+ "self_type" : "_ZTIN7android9TokenizerE",
+ "size" : 28,
+ "source_file" : "system/core/libutils/include/utils/Tokenizer.h"
+ },
+ {
+ "alignment" : 4,
+ "fields" :
+ [
+ {
+ "field_name" : "buf",
+ "referenced_type" : "_ZTIA5121_h"
+ },
+ {
+ "field_name" : "entry",
+ "referenced_type" : "_ZTI12logger_entry"
+ }
+ ],
+ "is_anonymous" : true,
+ "linker_set_key" : "_ZTIN7log_msgUt_E",
+ "name" : "log_msg::(anonymous)",
+ "record_kind" : "union",
+ "referenced_type" : "_ZTIN7log_msgUt_E",
+ "self_type" : "_ZTIN7log_msgUt_E",
+ "size" : 5124,
+ "source_file" : "system/logging/liblog/include_vndk/log/log_read.h"
+ }
+ ],
+ "rvalue_reference_types" :
+ [
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTION7android2spINS_12NativeHandleEEE",
+ "name" : "android::sp<android::NativeHandle> &&",
+ "referenced_type" : "_ZTIN7android2spINS_12NativeHandleEEE",
+ "self_type" : "_ZTION7android2spINS_12NativeHandleEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTION7android2spINS_14MessageHandlerEEE",
+ "name" : "android::sp<android::MessageHandler> &&",
+ "referenced_type" : "_ZTIN7android2spINS_14MessageHandlerEEE",
+ "self_type" : "_ZTION7android2spINS_14MessageHandlerEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTION7android2spINS_20SimpleLooperCallbackEEE",
+ "name" : "android::sp<android::SimpleLooperCallback> &&",
+ "referenced_type" : "_ZTIN7android2spINS_20SimpleLooperCallbackEEE",
+ "self_type" : "_ZTION7android2spINS_20SimpleLooperCallbackEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTION7android2spINS_6LooperEEE",
+ "name" : "android::sp<android::Looper> &&",
+ "referenced_type" : "_ZTIN7android2spINS_6LooperEEE",
+ "self_type" : "_ZTION7android2spINS_6LooperEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTION7android2spINS_6ThreadEEE",
+ "name" : "android::sp<android::Thread> &&",
+ "referenced_type" : "_ZTIN7android2spINS_6ThreadEEE",
+ "self_type" : "_ZTION7android2spINS_6ThreadEEE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTION7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "name" : "android::base::unique_fd_impl<android::base::DefaultCloser> &&",
+ "referenced_type" : "_ZTIN7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "self_type" : "_ZTION7android4base14unique_fd_implINS0_13DefaultCloserEEE",
+ "size" : 4,
+ "source_file" : "system/libbase/include/android-base/unique_fd.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTION7android7FileMapE",
+ "name" : "android::FileMap &&",
+ "referenced_type" : "_ZTIN7android7FileMapE",
+ "self_type" : "_ZTION7android7FileMapE",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/FileMap.h"
+ },
+ {
+ "alignment" : 4,
+ "linker_set_key" : "_ZTION7android8String16E",
+ "name" : "android::String16 &&",
+ "referenced_type" : "_ZTIN7android8String16E",
+ "self_type" : "_ZTION7android8String16E",
+ "size" : 4,
+ "source_file" : "system/core/libutils/include/utils/String16.h"
+ }
+ ]
+}
diff --git a/mkbootfs/mkbootfs.c b/mkbootfs/mkbootfs.c
index 05d1940..d3922bf 100644
--- a/mkbootfs/mkbootfs.c
+++ b/mkbootfs/mkbootfs.c
@@ -1,40 +1,32 @@
+#include <ctype.h>
+#include <dirent.h>
+#include <err.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <getopt.h>
+#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
-#include <unistd.h>
#include <string.h>
-#include <ctype.h>
-
-#include <sys/types.h>
#include <sys/stat.h>
-#include <dirent.h>
+#include <sys/sysmacros.h>
+#include <sys/types.h>
+#include <unistd.h>
-#include <stdarg.h>
-#include <fcntl.h>
+#include <linux/kdev_t.h>
#include <private/android_filesystem_config.h>
#include <private/fs_config.h>
/* NOTES
**
-** - see buffer-format.txt from the linux kernel docs for
-** an explanation of this file format
+** - see https://www.kernel.org/doc/Documentation/early-userspace/buffer-format.txt
+** for an explanation of this file format
** - dotfiles are ignored
** - directories named 'root' are ignored
-** - device notes, pipes, etc are not supported (error)
*/
-static void die(const char* why, ...) {
- va_list ap;
-
- va_start(ap, why);
- fprintf(stderr,"error: ");
- vfprintf(stderr, why, ap);
- fprintf(stderr,"\n");
- va_end(ap);
- exit(1);
-}
-
struct fs_config_entry {
char* name;
int uid, gid, mode;
@@ -43,17 +35,8 @@
static struct fs_config_entry* canned_config = NULL;
static const char* target_out_path = NULL;
-/* Each line in the canned file should be a path plus three ints (uid,
- * gid, mode). */
-#ifdef PATH_MAX
-#define CANNED_LINE_LENGTH (PATH_MAX+100)
-#else
-#define CANNED_LINE_LENGTH (1024)
-#endif
-
#define TRAILER "TRAILER!!!"
-static int verbose = 0;
static int total_size = 0;
static void fix_stat(const char *path, struct stat *s)
@@ -86,6 +69,10 @@
fs_config(path, is_dir, target_out_path, &s->st_uid, &s->st_gid, &st_mode, &capabilities);
s->st_mode = (typeof(s->st_mode)) st_mode;
}
+
+ if (S_ISREG(s->st_mode) || S_ISDIR(s->st_mode) || S_ISLNK(s->st_mode)) {
+ s->st_rdev = 0;
+ }
}
static void _eject(struct stat *s, char *out, int olen, char *data, unsigned datasize)
@@ -115,8 +102,8 @@
datasize,
0, // volmajor
0, // volminor
- 0, // devmajor
- 0, // devminor,
+ major(s->st_rdev),
+ minor(s->st_rdev),
olen + 1,
0,
out,
@@ -125,7 +112,7 @@
total_size += 6 + 8*13 + olen + 1;
- if(strlen(out) != (unsigned int)olen) die("ACK!");
+ if(strlen(out) != (unsigned int)olen) errx(1, "ACK!");
while(total_size & 3) {
total_size++;
@@ -159,23 +146,16 @@
static void _archive_dir(char *in, char *out, int ilen, int olen)
{
int i, t;
- DIR *d;
struct dirent *de;
- if(verbose) {
- fprintf(stderr,"_archive_dir('%s','%s',%d,%d)\n",
- in, out, ilen, olen);
- }
-
- d = opendir(in);
- if(d == 0) die("cannot open directory '%s'", in);
+ DIR* d = opendir(in);
+ if (d == NULL) err(1, "cannot open directory '%s'", in);
int size = 32;
int entries = 0;
char** names = malloc(size * sizeof(char*));
if (names == NULL) {
- fprintf(stderr, "failed to allocate dir names array (size %d)\n", size);
- exit(1);
+ errx(1, "failed to allocate dir names array (size %d)", size);
}
while((de = readdir(d)) != 0){
@@ -189,16 +169,12 @@
size *= 2;
names = realloc(names, size * sizeof(char*));
if (names == NULL) {
- fprintf(stderr, "failed to reallocate dir names array (size %d)\n",
- size);
- exit(1);
+ errx(1, "failed to reallocate dir names array (size %d)", size);
}
}
names[entries] = strdup(de->d_name);
if (names[entries] == NULL) {
- fprintf(stderr, "failed to strdup name \"%s\"\n",
- de->d_name);
- exit(1);
+ errx(1, "failed to strdup name \"%s\"", de->d_name);
}
++entries;
}
@@ -232,26 +208,17 @@
static void _archive(char *in, char *out, int ilen, int olen)
{
struct stat s;
-
- if(verbose) {
- fprintf(stderr,"_archive('%s','%s',%d,%d)\n",
- in, out, ilen, olen);
- }
-
- if(lstat(in, &s)) die("could not stat '%s'\n", in);
+ if(lstat(in, &s)) err(1, "could not stat '%s'", in);
if(S_ISREG(s.st_mode)){
- char *tmp;
- int fd;
+ int fd = open(in, O_RDONLY);
+ if(fd < 0) err(1, "cannot open '%s' for read", in);
- fd = open(in, O_RDONLY);
- if(fd < 0) die("cannot open '%s' for read", in);
-
- tmp = (char*) malloc(s.st_size);
- if(tmp == 0) die("cannot allocate %d bytes", s.st_size);
+ char* tmp = (char*) malloc(s.st_size);
+ if(tmp == 0) errx(1, "cannot allocate %zd bytes", s.st_size);
if(read(fd, tmp, s.st_size) != s.st_size) {
- die("cannot read %d bytes", s.st_size);
+ err(1, "cannot read %zd bytes", s.st_size);
}
_eject(&s, out, olen, tmp, s.st_size);
@@ -265,10 +232,13 @@
char buf[1024];
int size;
size = readlink(in, buf, 1024);
- if(size < 0) die("cannot read symlink '%s'", in);
+ if(size < 0) err(1, "cannot read symlink '%s'", in);
_eject(&s, out, olen, buf, size);
+ } else if(S_ISBLK(s.st_mode) || S_ISCHR(s.st_mode) ||
+ S_ISFIFO(s.st_mode) || S_ISSOCK(s.st_mode)) {
+ _eject(&s, out, olen, NULL, 0);
} else {
- die("Unknown '%s' (mode %d)?\n", in, s.st_mode);
+ errx(1, "Unknown '%s' (mode %d)?", in, s.st_mode);
}
}
@@ -290,17 +260,18 @@
canned_config =
(struct fs_config_entry*)malloc(allocated * sizeof(struct fs_config_entry));
- char line[CANNED_LINE_LENGTH];
- FILE* f = fopen(filename, "r");
- if (f == NULL) die("failed to open canned file '%s'", filename);
+ FILE* fp = fopen(filename, "r");
+ if (fp == NULL) err(1, "failed to open canned file '%s'", filename);
- while (fgets(line, CANNED_LINE_LENGTH, f) != NULL) {
+ char* line = NULL;
+ size_t allocated_len;
+ while (getline(&line, &allocated_len, fp) != -1) {
if (!line[0]) break;
if (used >= allocated) {
allocated *= 2;
canned_config = (struct fs_config_entry*)realloc(
canned_config, allocated * sizeof(struct fs_config_entry));
- if (canned_config == NULL) die("failed to reallocate memory");
+ if (canned_config == NULL) errx(1, "failed to reallocate memory");
}
struct fs_config_entry* cc = canned_config + used;
@@ -320,41 +291,166 @@
++allocated;
canned_config = (struct fs_config_entry*)realloc(
canned_config, allocated * sizeof(struct fs_config_entry));
- if (canned_config == NULL) die("failed to reallocate memory");
+ if (canned_config == NULL) errx(1, "failed to reallocate memory");
}
canned_config[used].name = NULL;
- fclose(f);
+ free(line);
+ fclose(fp);
}
+static void devnodes_desc_error(const char* filename, unsigned long line_num,
+ const char* msg)
+{
+ errx(1, "failed to read nodes desc file '%s' line %lu: %s", filename, line_num, msg);
+}
+
+static int append_devnodes_desc_dir(char* path, char* args)
+{
+ struct stat s;
+
+ if (sscanf(args, "%o %d %d", &s.st_mode, &s.st_uid, &s.st_gid) != 3) return -1;
+
+ s.st_mode |= S_IFDIR;
+
+ _eject(&s, path, strlen(path), NULL, 0);
+
+ return 0;
+}
+
+static int append_devnodes_desc_nod(char* path, char* args)
+{
+ int minor, major;
+ struct stat s;
+ char dev;
+
+ if (sscanf(args, "%o %d %d %c %d %d", &s.st_mode, &s.st_uid, &s.st_gid,
+ &dev, &major, &minor) != 6) return -1;
+
+ s.st_rdev = MKDEV(major, minor);
+ switch (dev) {
+ case 'b':
+ s.st_mode |= S_IFBLK;
+ break;
+ case 'c':
+ s.st_mode |= S_IFCHR;
+ break;
+ default:
+ return -1;
+ }
+
+ _eject(&s, path, strlen(path), NULL, 0);
+
+ return 0;
+}
+
+static void append_devnodes_desc(const char* filename)
+{
+ FILE* fp = fopen(filename, "re");
+ if (!fp) err(1, "failed to open nodes description file '%s'", filename);
+
+ unsigned long line_num = 0;
+
+ char* line = NULL;
+ size_t allocated_len;
+ while (getline(&line, &allocated_len, fp) != -1) {
+ char *type, *path, *args;
+
+ line_num++;
+
+ if (*line == '#') continue;
+
+ if (!(type = strtok(line, " \t"))) {
+ devnodes_desc_error(filename, line_num, "a type is missing");
+ }
+
+ if (*type == '\n') continue;
+
+ if (!(path = strtok(NULL, " \t"))) {
+ devnodes_desc_error(filename, line_num, "a path is missing");
+ }
+
+ if (!(args = strtok(NULL, "\n"))) {
+ devnodes_desc_error(filename, line_num, "args are missing");
+ }
+
+ if (!strcmp(type, "dir")) {
+ if (append_devnodes_desc_dir(path, args)) {
+ devnodes_desc_error(filename, line_num, "bad arguments for dir");
+ }
+ } else if (!strcmp(type, "nod")) {
+ if (append_devnodes_desc_nod(path, args)) {
+ devnodes_desc_error(filename, line_num, "bad arguments for nod");
+ }
+ } else {
+ devnodes_desc_error(filename, line_num, "type unknown");
+ }
+ }
+
+ free(line);
+ fclose(fp);
+}
+
+static const struct option long_options[] = {
+ { "dirname", required_argument, NULL, 'd' },
+ { "file", required_argument, NULL, 'f' },
+ { "help", no_argument, NULL, 'h' },
+ { "nodes", required_argument, NULL, 'n' },
+ { NULL, 0, NULL, 0 },
+};
+
+static void usage(void)
+{
+ fprintf(stderr,
+ "Usage: mkbootfs [-n FILE] [-d DIR|-F FILE] DIR...\n"
+ "\n"
+ "\t-d, --dirname=DIR: fs-config directory\n"
+ "\t-f, --file=FILE: Canned configuration file\n"
+ "\t-h, --help: Print this help\n"
+ "\t-n, --nodes=FILE: Dev nodes description file\n"
+ "\n"
+ "Dev nodes description:\n"
+ "\t[dir|nod] [perms] [uid] [gid] [c|b] [minor] [major]\n"
+ "\tExample:\n"
+ "\t\t# My device nodes\n"
+ "\t\tdir dev 0755 0 0\n"
+ "\t\tnod dev/null 0600 0 0 c 1 5\n"
+ );
+}
int main(int argc, char *argv[])
{
- if (argc == 1) {
- fprintf(stderr,
- "usage: %s [-d TARGET_OUTPUT_PATH] [-f CANNED_CONFIGURATION_PATH] DIRECTORIES...\n",
- argv[0]);
- exit(1);
+ int opt, unused;
+
+ while ((opt = getopt_long(argc, argv, "hd:f:n:", long_options, &unused)) != -1) {
+ switch (opt) {
+ case 'd':
+ target_out_path = argv[optind - 1];
+ break;
+ case 'f':
+ read_canned_config(argv[optind - 1]);
+ break;
+ case 'h':
+ usage();
+ return 0;
+ case 'n':
+ append_devnodes_desc(argv[optind - 1]);
+ break;
+ default:
+ usage();
+ errx(1, "Unknown option %s", argv[optind - 1]);
+ }
}
- argc--;
- argv++;
+ int num_dirs = argc - optind;
+ argv += optind;
- if (argc > 1 && strcmp(argv[0], "-d") == 0) {
- target_out_path = argv[1];
- argc -= 2;
- argv += 2;
+ if (num_dirs <= 0) {
+ usage();
+ errx(1, "no directories to process?!");
}
- if (argc > 1 && strcmp(argv[0], "-f") == 0) {
- read_canned_config(argv[1]);
- argc -= 2;
- argv += 2;
- }
-
- if(argc == 0) die("no directories to process?!");
-
- while(argc-- > 0){
+ while(num_dirs-- > 0){
char *x = strchr(*argv, '=');
if(x != 0) {
*x++ = 0;
diff --git a/rootdir/Android.mk b/rootdir/Android.mk
index fe23b62..3362872 100644
--- a/rootdir/Android.mk
+++ b/rootdir/Android.mk
@@ -213,4 +213,17 @@
$(hide) $(foreach lib,$(PRIVATE_SANITIZER_RUNTIME_LIBRARIES), \
echo $(lib) >> $@;)
+#######################################
+# ramdisk_node_list
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := ramdisk_node_list
+LOCAL_MODULE_CLASS := ETC
+LOCAL_SRC_FILES := $(LOCAL_MODULE)
+LOCAL_MODULE_PATH := $(PRODUCT_OUT)
+
+LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
+LOCAL_LICENSE_CONDITIONS := notice
+include $(BUILD_PREBUILT)
+
include $(call all-makefiles-under,$(LOCAL_PATH))
diff --git a/rootdir/init.rc b/rootdir/init.rc
index d8e6b55..86c6eaa 100644
--- a/rootdir/init.rc
+++ b/rootdir/init.rc
@@ -47,6 +47,9 @@
# Allow up to 32K FDs per process
setrlimit nofile 32768 32768
+ # set RLIMIT_MEMLOCK to 64KB
+ setrlimit memlock 65536 65536
+
# Set up linker config subdirectories based on mount namespaces
mkdir /linkerconfig/bootstrap 0755
mkdir /linkerconfig/default 0755
@@ -55,10 +58,11 @@
# Read more in b/136247322
write /sys/module/dm_verity/parameters/prefetch_cluster 0
- # Generate ld.config.txt for early executed processes
- exec -- /system/bin/bootstrap/linkerconfig --target /linkerconfig/bootstrap
+ # Generate empty ld.config.txt for early executed processes which rely on
+ # /system/lib libraries.
+ write /linkerconfig/bootstrap/ld.config.txt \#
+ write /linkerconfig/default/ld.config.txt \#
chmod 644 /linkerconfig/bootstrap/ld.config.txt
- copy /linkerconfig/bootstrap/ld.config.txt /linkerconfig/default/ld.config.txt
chmod 644 /linkerconfig/default/ld.config.txt
# Mount bootstrap linker configuration as current
@@ -489,18 +493,26 @@
service boringssl_self_test32 /system/bin/boringssl_self_test32
reboot_on_failure reboot,boringssl-self-check-failed
stdio_to_kmsg
+ # Explicitly specify that boringssl_self_test32 doesn't require any capabilities
+ capabilities
service boringssl_self_test64 /system/bin/boringssl_self_test64
reboot_on_failure reboot,boringssl-self-check-failed
stdio_to_kmsg
+ # Explicitly specify that boringssl_self_test64 doesn't require any capabilities
+ capabilities
service boringssl_self_test_apex32 /apex/com.android.conscrypt/bin/boringssl_self_test32
reboot_on_failure reboot,boringssl-self-check-failed
stdio_to_kmsg
+ # Explicitly specify that boringssl_self_test_apex32 doesn't require any capabilities
+ capabilities
service boringssl_self_test_apex64 /apex/com.android.conscrypt/bin/boringssl_self_test64
reboot_on_failure reboot,boringssl-self-check-failed
stdio_to_kmsg
+ # Explicitly specify that boringssl_self_test_apex64 doesn't require any capabilities
+ capabilities
# Healthd can trigger a full boot from charger mode by signaling this
@@ -631,7 +643,7 @@
chmod 0755 /sys/kernel/tracing
chmod 0755 /sys/kernel/debug/tracing
- # HALs required before storage encryption can get unlocked (FBE/FDE)
+ # HALs required before storage encryption can get unlocked (FBE)
class_start early_hal
# Load trusted keys from dm-verity protected partitions
@@ -734,9 +746,8 @@
# /data/apex is now available. Start apexd to scan and activate APEXes.
#
- # To handle userspace reboots as well as devices that use FDE, make sure
- # that apexd is started cleanly here (set apexd.status="") and that it is
- # restarted if it's already running.
+ # To handle userspace reboots, make sure that apexd is started cleanly here
+ # (set apexd.status="") and that it is restarted if it's already running.
#
# /data/apex uses encryption=None because direct I/O support is needed on
# APEX files, but some devices don't support direct I/O on encrypted files.
@@ -838,7 +849,7 @@
# Delete any stale files owned by the old virtualizationservice uid (b/230056726).
chmod 0770 /data/misc/virtualizationservice
exec - virtualizationservice system -- /bin/rm -rf /data/misc/virtualizationservice
- mkdir /data/misc/virtualizationservice 0770 system system
+ mkdir /data/misc/virtualizationservice 0771 system system
# /data/preloads uses encryption=None because it only contains preloaded
# files that are public information, similar to the system image.
@@ -1274,13 +1285,16 @@
group shell log readproc
seclabel u:r:shell:s0
setenv HOSTNAME console
+ shutdown critical
on property:ro.debuggable=1
- # Give writes to anyone for the trace folder on debug builds.
+ # Give writes to the same group for the trace folder on debug builds,
+ # it's further protected by selinux policy.
# The folder is used to store method traces.
chmod 0773 /data/misc/trace
- # Give reads to anyone for the window trace folder on debug builds.
- chmod 0775 /data/misc/wmtrace
+ # Give writes and reads to anyone for the window trace folder on debug builds,
+ # it's further protected by selinux policy.
+ chmod 0777 /data/misc/wmtrace
# Give reads to anyone for the accessibility trace folder on debug builds.
chmod 0775 /data/misc/a11ytrace
diff --git a/rootdir/init.zygote32.rc b/rootdir/init.zygote32.rc
index 63b09c0..2f0ec8a 100644
--- a/rootdir/init.zygote32.rc
+++ b/rootdir/init.zygote32.rc
@@ -7,6 +7,9 @@
socket usap_pool_primary stream 660 root system
onrestart exec_background - system system -- /system/bin/vdc volume abort_fuse
onrestart write /sys/power/state on
+ # NOTE: If the wakelock name here is changed, then also
+ # update it in SystemSuspend.cpp
+ onrestart write /sys/power/wake_lock zygote_kwl
onrestart restart audioserver
onrestart restart cameraserver
onrestart restart media
diff --git a/rootdir/init.zygote64.rc b/rootdir/init.zygote64.rc
index b6ca5c0..74a64c8 100644
--- a/rootdir/init.zygote64.rc
+++ b/rootdir/init.zygote64.rc
@@ -7,6 +7,9 @@
socket usap_pool_primary stream 660 root system
onrestart exec_background - system system -- /system/bin/vdc volume abort_fuse
onrestart write /sys/power/state on
+ # NOTE: If the wakelock name here is changed, then also
+ # update it in SystemSuspend.cpp
+ onrestart write /sys/power/wake_lock zygote_kwl
onrestart restart audioserver
onrestart restart cameraserver
onrestart restart media
diff --git a/rootdir/ramdisk_node_list b/rootdir/ramdisk_node_list
new file mode 100644
index 0000000..d3ab8a6
--- /dev/null
+++ b/rootdir/ramdisk_node_list
@@ -0,0 +1,3 @@
+dir dev 0755 0 0
+nod dev/null 0600 0 0 c 1 3
+nod dev/console 0600 0 0 c 5 1
diff --git a/rootdir/ueventd.rc b/rootdir/ueventd.rc
index 4ec59af..0b7ffb8 100644
--- a/rootdir/ueventd.rc
+++ b/rootdir/ueventd.rc
@@ -69,8 +69,8 @@
# CDMA radio interface MUX
/dev/ppp 0660 radio vpn
-/dev/kvm 0600 system system
-/dev/vhost-vsock 0600 system system
+/dev/kvm 0666 root root
+/dev/vhost-vsock 0666 root root
# sysfs properties
/sys/devices/platform/trusty.* trusty_version 0440 root log
diff --git a/storaged/Android.bp b/storaged/Android.bp
index 7960af3..c3447d2 100644
--- a/storaged/Android.bp
+++ b/storaged/Android.bp
@@ -24,7 +24,7 @@
shared_libs: [
"android.hardware.health@1.0",
"android.hardware.health@2.0",
- "android.hardware.health-V1-ndk",
+ "android.hardware.health-V2-ndk",
"libbase",
"libbinder",
"libbinder_ndk",
diff --git a/storaged/tests/storaged_test.cpp b/storaged/tests/storaged_test.cpp
index bb71bf3..9a281c2 100644
--- a/storaged/tests/storaged_test.cpp
+++ b/storaged/tests/storaged_test.cpp
@@ -284,6 +284,8 @@
dsm_detect.update_mean();
dsm_detect.update_std();
+ // FixLater: avoid floating point loop counters
+ // NOLINTNEXTLINE(clang-analyzer-security.FloatLoopCounter,cert-flp30-c)
for (double i = 0; i < 2 * dsm_detect.mSigma; i += 0.5) {
struct disk_perf test_perf;
struct disk_perf test_mean = dsm_detect.mMean;
diff --git a/toolbox/modprobe.cpp b/toolbox/modprobe.cpp
index 711586a..17f8156 100644
--- a/toolbox/modprobe.cpp
+++ b/toolbox/modprobe.cpp
@@ -23,8 +23,11 @@
#include <android-base/file.h>
#include <android-base/logging.h>
#include <android-base/strings.h>
+#include <android-base/stringprintf.h>
#include <modprobe/modprobe.h>
+#include <sys/utsname.h>
+
namespace {
enum modprobe_mode {
@@ -37,9 +40,8 @@
void print_usage(void) {
LOG(INFO) << "Usage:";
LOG(INFO);
- // -d option is required on Android
- LOG(INFO) << " modprobe [options] -d DIR [--all=FILE|MODULE]...";
- LOG(INFO) << " modprobe [options] -d DIR MODULE [symbol=value]...";
+ LOG(INFO) << " modprobe [options] [-d DIR] [--all=FILE|MODULE]...";
+ LOG(INFO) << " modprobe [options] [-d DIR] MODULE [symbol=value]...";
LOG(INFO);
LOG(INFO) << "Options:";
LOG(INFO) << " --all=FILE: FILE to acquire module names from";
@@ -189,6 +191,12 @@
}
}
+ if (mod_dirs.empty()) {
+ utsname uts;
+ uname(&uts);
+ mod_dirs.emplace_back(android::base::StringPrintf("/lib/modules/%s", uts.release));
+ }
+
LOG(DEBUG) << "mode is " << mode;
LOG(DEBUG) << "mod_dirs is: " << android::base::Join(mod_dirs, " ");
LOG(DEBUG) << "modules is: " << android::base::Join(modules, " ");
diff --git a/trusty/keymaster/Android.bp b/trusty/keymaster/Android.bp
index 31f0a72..b249013 100644
--- a/trusty/keymaster/Android.bp
+++ b/trusty/keymaster/Android.bp
@@ -181,3 +181,30 @@
"-Werror",
],
}
+
+cc_binary {
+ name: "trusty_keymaster_set_attestation_ids",
+ vendor: true,
+
+ srcs: [
+ "set_attestation_ids/set_attestation_ids.cpp",
+ "ipc/trusty_keymaster_ipc.cpp",
+ ],
+
+ local_include_dirs: ["include"],
+
+ shared_libs: [
+ "libbase",
+ "libc",
+ "libcrypto",
+ "liblog",
+ "libtrusty",
+ "libhardware",
+ "libkeymaster_messages",
+ "libutils",
+ ],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
+}
diff --git a/trusty/keymaster/TEST_MAPPING b/trusty/keymaster/TEST_MAPPING
index ae48327..0dd39fb 100644
--- a/trusty/keymaster/TEST_MAPPING
+++ b/trusty/keymaster/TEST_MAPPING
@@ -1,9 +1,6 @@
{
"presubmit": [
{
- "name": "RemoteProvisionerUnitTests"
- },
- {
"name": "VtsAidlKeyMintTargetTest"
},
{
diff --git a/trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty.xml b/trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty.xml
index 77dc854..3dc9c88 100644
--- a/trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty.xml
+++ b/trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty.xml
@@ -1,7 +1,7 @@
<manifest version="1.0" type="device">
<hal format="aidl">
<name>android.hardware.security.keymint</name>
- <version>2</version>
+ <version>3</version>
<fqname>IKeyMintDevice/default</fqname>
</hal>
<hal format="aidl">
diff --git a/trusty/keymaster/set_attestation_ids/set_attestation_ids.cpp b/trusty/keymaster/set_attestation_ids/set_attestation_ids.cpp
new file mode 100644
index 0000000..e944167
--- /dev/null
+++ b/trusty/keymaster/set_attestation_ids/set_attestation_ids.cpp
@@ -0,0 +1,162 @@
+/*
+ * Copyright (C) 2020 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <getopt.h>
+
+#include <string>
+
+#include <android-base/properties.h>
+#include <trusty_keymaster/ipc/trusty_keymaster_ipc.h>
+
+namespace {
+
+const char* sopts = "hb:d:p:s:M:m:i:c:";
+const struct option lopts[] = {
+ {"help", no_argument, nullptr, 'h'},
+ {"brand", required_argument, nullptr, 'b'},
+ {"device", required_argument, nullptr, 'd'},
+ {"product", required_argument, nullptr, 'p'},
+ {"serial", required_argument, nullptr, 's'},
+ {"manufacturer", required_argument, nullptr, 'M'},
+ {"model", required_argument, nullptr, 'm'},
+ {"imei", required_argument, nullptr, 'i'},
+ {"meid", required_argument, nullptr, 'c'},
+ {0, 0, 0, 0},
+};
+
+std::string buf2string(const keymaster::Buffer& buf) {
+ return std::string(reinterpret_cast<const char*>(buf.peek_read()), buf.available_read());
+}
+
+void print_usage(const char* prog, const keymaster::SetAttestationIdsRequest& req) {
+ fprintf(stderr,
+ "Usage: %s [options]\n"
+ "\n"
+ "options:\n"
+ " -h, --help prints this message and exit\n"
+ " -b, --brand <val> set brand (default '%s')\n"
+ " -d, --device <val> set device (default '%s')\n"
+ " -p, --product <val> set product (default '%s')\n"
+ " -s, --serial <val> set serial (default '%s')\n"
+ " -M, --manufacturer <val> set manufacturer (default '%s')\n"
+ " -m, --model <val> set model (default '%s')\n"
+ " -i, --imei <val> set IMEI (default '%s')\n"
+ " -c, --meid <val> set MEID (default '%s')\n"
+ "\n",
+ prog, buf2string(req.brand).c_str(), buf2string(req.device).c_str(),
+ buf2string(req.product).c_str(), buf2string(req.serial).c_str(),
+ buf2string(req.manufacturer).c_str(), buf2string(req.model).c_str(),
+ buf2string(req.imei).c_str(), buf2string(req.meid).c_str());
+}
+
+void set_from_prop(keymaster::Buffer* buf, const std::string& prop) {
+ std::string prop_value = ::android::base::GetProperty(prop, /* default_value = */ "");
+ if (!prop_value.empty()) {
+ buf->Reinitialize(prop_value.data(), prop_value.size());
+ }
+}
+
+void populate_ids(keymaster::SetAttestationIdsRequest* req) {
+ set_from_prop(&req->brand, "ro.product.brand");
+ set_from_prop(&req->device, "ro.product.device");
+ set_from_prop(&req->product, "ro.product.name");
+ set_from_prop(&req->serial, "ro.serialno");
+ set_from_prop(&req->manufacturer, "ro.product.manufacturer");
+ set_from_prop(&req->model, "ro.product.model");
+}
+
+} // namespace
+
+int main(int argc, char** argv) {
+ // By default, set attestation IDs to the values in userspace properties.
+ keymaster::SetAttestationIdsRequest req(/* ver = */ 4);
+ populate_ids(&req);
+
+ while (true) {
+ int oidx = 0;
+ int c = getopt_long(argc, argv, sopts, lopts, &oidx);
+ if (c == -1) {
+ break; /* done */
+ }
+
+ switch (c) {
+ case 'b':
+ req.brand.Reinitialize(optarg, strlen(optarg));
+ break;
+ case 'd':
+ req.device.Reinitialize(optarg, strlen(optarg));
+ break;
+ case 'p':
+ req.product.Reinitialize(optarg, strlen(optarg));
+ break;
+ case 's':
+ req.serial.Reinitialize(optarg, strlen(optarg));
+ break;
+ case 'M':
+ req.manufacturer.Reinitialize(optarg, strlen(optarg));
+ break;
+ case 'm':
+ req.model.Reinitialize(optarg, strlen(optarg));
+ break;
+ case 'i':
+ req.imei.Reinitialize(optarg, strlen(optarg));
+ break;
+ case 'c':
+ req.meid.Reinitialize(optarg, strlen(optarg));
+ break;
+ case 'h':
+ print_usage(argv[0], req);
+ exit(EXIT_SUCCESS);
+ default:
+ print_usage(argv[0], req);
+ exit(EXIT_FAILURE);
+ }
+ }
+ if (optind != argc) {
+ print_usage(argv[0], req);
+ exit(EXIT_FAILURE);
+ }
+
+ int ret = trusty_keymaster_connect();
+ if (ret) {
+ fprintf(stderr, "trusty_keymaster_connect failed: %d\n", ret);
+ return EXIT_FAILURE;
+ }
+
+ printf("Setting:\n"
+ " brand: %s\n"
+ " device: %s\n"
+ " product: %s\n"
+ " serial: %s\n"
+ " manufacturer: %s\n"
+ " model: %s\n"
+ " IMEI: %s\n"
+ " MEID: %s\n",
+ buf2string(req.brand).c_str(), buf2string(req.device).c_str(),
+ buf2string(req.product).c_str(), buf2string(req.serial).c_str(),
+ buf2string(req.manufacturer).c_str(), buf2string(req.model).c_str(),
+ buf2string(req.imei).c_str(), buf2string(req.meid).c_str());
+
+ keymaster::EmptyKeymasterResponse rsp(/* ver = */ 4);
+ ret = trusty_keymaster_send(KM_SET_ATTESTATION_IDS, req, &rsp);
+ if (ret) {
+ fprintf(stderr, "SET_ATTESTATION_IDS failed: %d\n", ret);
+ trusty_keymaster_disconnect();
+ return EXIT_FAILURE;
+ }
+
+ return EXIT_SUCCESS;
+}
diff --git a/trusty/keymint/Android.bp b/trusty/keymint/Android.bp
index 54aadaa..c19ebbd 100644
--- a/trusty/keymint/Android.bp
+++ b/trusty/keymint/Android.bp
@@ -13,6 +13,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.
+package {
+ default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
rust_binary {
name: "android.hardware.security.keymint-service.rust.trusty",
relative_install_path: "hw",
diff --git a/trusty/keymint/src/keymint_hal_main.rs b/trusty/keymint/src/keymint_hal_main.rs
index d2d5f27..cfa859f 100644
--- a/trusty/keymint/src/keymint_hal_main.rs
+++ b/trusty/keymint/src/keymint_hal_main.rs
@@ -14,7 +14,9 @@
// limitations under the License.
//! This module implements the HAL service for Keymint (Rust) in Trusty.
-use kmr_hal::{keymint, rpc, secureclock, send_hal_info, sharedsecret, SerializedChannel};
+use kmr_hal::{
+ extract_rsp, keymint, rpc, secureclock, send_hal_info, sharedsecret, SerializedChannel,
+};
use log::{error, info};
use std::{
ffi::CString,
@@ -41,6 +43,7 @@
struct TipcChannel(trusty::TipcChannel);
impl SerializedChannel for TipcChannel {
+ const MAX_SIZE: usize = 4000;
fn execute(&mut self, serialized_req: &[u8]) -> binder::Result<Vec<u8>> {
self.0.send(serialized_req).map_err(|e| {
binder::Status::new_exception(
@@ -54,21 +57,27 @@
),
)
})?;
- let mut recv_buf = Vec::new();
- // TODO(b/253501976): cope with fragmentation of responses
- self.0.recv(&mut recv_buf).map_err(|e| {
- binder::Status::new_exception(
- binder::ExceptionCode::TRANSACTION_FAILED,
- Some(
- &CString::new(format!(
- "Failed to receive the response via tipc channel because of {:?}",
- e
- ))
- .unwrap(),
- ),
- )
- })?;
- Ok(recv_buf)
+ let mut expect_more_msgs = true;
+ let mut full_rsp = Vec::new();
+ while expect_more_msgs {
+ let mut recv_buf = Vec::new();
+ self.0.recv(&mut recv_buf).map_err(|e| {
+ binder::Status::new_exception(
+ binder::ExceptionCode::TRANSACTION_FAILED,
+ Some(
+ &CString::new(format!(
+ "Failed to receive the response via tipc channel because of {:?}",
+ e
+ ))
+ .unwrap(),
+ ),
+ )
+ })?;
+ let current_rsp_content;
+ (expect_more_msgs, current_rsp_content) = extract_rsp(&recv_buf)?;
+ full_rsp.extend_from_slice(current_rsp_content);
+ }
+ Ok(full_rsp)
}
}
diff --git a/trusty/libtrusty/Android.bp b/trusty/libtrusty/Android.bp
index 086051d..9d94ec4 100644
--- a/trusty/libtrusty/Android.bp
+++ b/trusty/libtrusty/Android.bp
@@ -33,5 +33,6 @@
// TODO(b/170753563): cc_fuzz can't deal with vendor components. Build
// libtrusty for system and vendor.
vendor_available: true,
+ recovery_available: true,
defaults: ["libtrusty_defaults"],
}
diff --git a/trusty/storage/proxy/Android.bp b/trusty/storage/proxy/Android.bp
index e952ee0..2e97ee0 100644
--- a/trusty/storage/proxy/Android.bp
+++ b/trusty/storage/proxy/Android.bp
@@ -28,6 +28,7 @@
"rpmb.c",
"storage.c",
"proxy.c",
+ "watchdog.cpp",
],
shared_libs: [
diff --git a/trusty/storage/proxy/proxy.c b/trusty/storage/proxy/proxy.c
index b970406..c89c5b6 100644
--- a/trusty/storage/proxy/proxy.c
+++ b/trusty/storage/proxy/proxy.c
@@ -31,6 +31,7 @@
#include "log.h"
#include "rpmb.h"
#include "storage.h"
+#include "watchdog.h"
#define REQ_BUFFER_SIZE 4096
static uint8_t req_buffer[REQ_BUFFER_SIZE + 1];
@@ -73,6 +74,8 @@
static int handle_req(struct storage_msg* msg, const void* req, size_t req_len) {
int rc;
+ struct watcher* watcher = watch_start("request", msg);
+
if ((msg->flags & STORAGE_MSG_FLAG_POST_COMMIT) && msg->cmd != STORAGE_RPMB_SEND &&
msg->cmd != STORAGE_FILE_WRITE) {
/*
@@ -81,14 +84,14 @@
*/
ALOGE("cmd 0x%x: post commit option is not implemented\n", msg->cmd);
msg->result = STORAGE_ERR_UNIMPLEMENTED;
- return ipc_respond(msg, NULL, 0);
+ goto err_response;
}
if (msg->flags & STORAGE_MSG_FLAG_PRE_COMMIT) {
- rc = storage_sync_checkpoint();
+ rc = storage_sync_checkpoint(watcher);
if (rc < 0) {
msg->result = STORAGE_ERR_SYNC_FAILURE;
- return ipc_respond(msg, NULL, 0);
+ goto err_response;
}
}
@@ -99,57 +102,65 @@
if (rc != 0) {
ALOGE("is_data_checkpoint_active failed in an unexpected way. Aborting.\n");
msg->result = STORAGE_ERR_GENERIC;
- return ipc_respond(msg, NULL, 0);
+ goto err_response;
} else if (is_checkpoint_active) {
ALOGE("Checkpoint in progress, dropping write ...\n");
msg->result = STORAGE_ERR_GENERIC;
- return ipc_respond(msg, NULL, 0);
+ goto err_response;
}
}
switch (msg->cmd) {
case STORAGE_FILE_DELETE:
- rc = storage_file_delete(msg, req, req_len);
+ rc = storage_file_delete(msg, req, req_len, watcher);
break;
case STORAGE_FILE_OPEN:
- rc = storage_file_open(msg, req, req_len);
+ rc = storage_file_open(msg, req, req_len, watcher);
break;
case STORAGE_FILE_CLOSE:
- rc = storage_file_close(msg, req, req_len);
+ rc = storage_file_close(msg, req, req_len, watcher);
break;
case STORAGE_FILE_WRITE:
- rc = storage_file_write(msg, req, req_len);
+ rc = storage_file_write(msg, req, req_len, watcher);
break;
case STORAGE_FILE_READ:
- rc = storage_file_read(msg, req, req_len);
+ rc = storage_file_read(msg, req, req_len, watcher);
break;
case STORAGE_FILE_GET_SIZE:
- rc = storage_file_get_size(msg, req, req_len);
+ rc = storage_file_get_size(msg, req, req_len, watcher);
break;
case STORAGE_FILE_SET_SIZE:
- rc = storage_file_set_size(msg, req, req_len);
+ rc = storage_file_set_size(msg, req, req_len, watcher);
+ break;
+
+ case STORAGE_FILE_GET_MAX_SIZE:
+ rc = storage_file_get_max_size(msg, req, req_len, watcher);
break;
case STORAGE_RPMB_SEND:
- rc = rpmb_send(msg, req, req_len);
+ rc = rpmb_send(msg, req, req_len, watcher);
break;
default:
ALOGE("unhandled command 0x%x\n", msg->cmd);
msg->result = STORAGE_ERR_UNIMPLEMENTED;
- rc = 1;
+ goto err_response;
}
- if (rc > 0) {
- /* still need to send response */
- rc = ipc_respond(msg, NULL, 0);
- }
+ /* response was sent in handler */
+ goto finish;
+
+err_response:
+ rc = ipc_respond(msg, NULL, 0);
+
+finish:
+ watch_finish(watcher);
return rc;
}
diff --git a/trusty/storage/proxy/rpmb.c b/trusty/storage/proxy/rpmb.c
index b1b8232..22a85a7 100644
--- a/trusty/storage/proxy/rpmb.c
+++ b/trusty/storage/proxy/rpmb.c
@@ -321,7 +321,8 @@
return SCSI_RES_ERR;
}
-static int send_mmc_rpmb_req(int mmc_fd, const struct storage_rpmb_send_req* req) {
+static int send_mmc_rpmb_req(int mmc_fd, const struct storage_rpmb_send_req* req,
+ struct watcher* watcher) {
union {
struct mmc_ioc_multi_cmd multi;
uint8_t raw[sizeof(struct mmc_ioc_multi_cmd) + sizeof(struct mmc_ioc_cmd) * 3];
@@ -375,14 +376,17 @@
cmd++;
}
+ watch_progress(watcher, "rpmb mmc ioctl");
rc = ioctl(mmc_fd, MMC_IOC_MULTI_CMD, &mmc.multi);
+ watch_progress(watcher, "rpmb mmc ioctl done");
if (rc < 0) {
ALOGE("%s: mmc ioctl failed: %d, %s\n", __func__, rc, strerror(errno));
}
return rc;
}
-static int send_ufs_rpmb_req(int sg_fd, const struct storage_rpmb_send_req* req) {
+static int send_ufs_rpmb_req(int sg_fd, const struct storage_rpmb_send_req* req,
+ struct watcher* watcher) {
int rc;
int wl_rc;
const uint8_t* write_buf = req->payload;
@@ -410,7 +414,9 @@
set_sg_io_hdr(&io_hdr, SG_DXFER_TO_DEV, sizeof(out_cdb), sizeof(sense_buffer),
req->reliable_write_size, (void*)write_buf, (unsigned char*)&out_cdb,
sense_buffer);
+ watch_progress(watcher, "rpmb ufs reliable write");
rc = ioctl(sg_fd, SG_IO, &io_hdr);
+ watch_progress(watcher, "rpmb ufs reliable write done");
if (rc < 0) {
ALOGE("%s: ufs ioctl failed: %d, %s\n", __func__, rc, strerror(errno));
goto err_op;
@@ -435,7 +441,9 @@
set_sg_io_hdr(&io_hdr, SG_DXFER_TO_DEV, sizeof(out_cdb), sizeof(sense_buffer),
req->write_size, (void*)write_buf, (unsigned char*)&out_cdb,
sense_buffer);
+ watch_progress(watcher, "rpmb ufs write");
rc = ioctl(sg_fd, SG_IO, &io_hdr);
+ watch_progress(watcher, "rpmb ufs write done");
if (rc < 0) {
ALOGE("%s: ufs ioctl failed: %d, %s\n", __func__, rc, strerror(errno));
goto err_op;
@@ -450,7 +458,9 @@
sg_io_hdr_t io_hdr;
set_sg_io_hdr(&io_hdr, SG_DXFER_FROM_DEV, sizeof(in_cdb), sizeof(sense_buffer),
req->read_size, read_buf, (unsigned char*)&in_cdb, sense_buffer);
+ watch_progress(watcher, "rpmb ufs read");
rc = ioctl(sg_fd, SG_IO, &io_hdr);
+ watch_progress(watcher, "rpmb ufs read done");
if (rc < 0) {
ALOGE("%s: ufs ioctl failed: %d, %s\n", __func__, rc, strerror(errno));
}
@@ -487,7 +497,7 @@
return rc;
}
-int rpmb_send(struct storage_msg* msg, const void* r, size_t req_len) {
+int rpmb_send(struct storage_msg* msg, const void* r, size_t req_len, struct watcher* watcher) {
int rc;
const struct storage_rpmb_send_req* req = r;
@@ -523,13 +533,13 @@
}
if (dev_type == MMC_RPMB) {
- rc = send_mmc_rpmb_req(rpmb_fd, req);
+ rc = send_mmc_rpmb_req(rpmb_fd, req, watcher);
if (rc < 0) {
msg->result = STORAGE_ERR_GENERIC;
goto err_response;
}
} else if (dev_type == UFS_RPMB) {
- rc = send_ufs_rpmb_req(rpmb_fd, req);
+ rc = send_ufs_rpmb_req(rpmb_fd, req, watcher);
if (rc < 0) {
ALOGE("send_ufs_rpmb_req failed: %d, %s\n", rc, strerror(errno));
msg->result = STORAGE_ERR_GENERIC;
diff --git a/trusty/storage/proxy/rpmb.h b/trusty/storage/proxy/rpmb.h
index f4e1b51..04bdf9a 100644
--- a/trusty/storage/proxy/rpmb.h
+++ b/trusty/storage/proxy/rpmb.h
@@ -18,8 +18,10 @@
#include <stdint.h>
#include <trusty/interface/storage.h>
+#include "watchdog.h"
+
enum dev_type { UNKNOWN_RPMB, MMC_RPMB, VIRT_RPMB, UFS_RPMB, SOCK_RPMB };
int rpmb_open(const char* rpmb_devname, enum dev_type dev_type);
-int rpmb_send(struct storage_msg* msg, const void* r, size_t req_len);
+int rpmb_send(struct storage_msg* msg, const void* r, size_t req_len, struct watcher* watcher);
void rpmb_close(void);
diff --git a/trusty/storage/proxy/storage.c b/trusty/storage/proxy/storage.c
index 033dc21..2299481 100644
--- a/trusty/storage/proxy/storage.c
+++ b/trusty/storage/proxy/storage.c
@@ -18,6 +18,7 @@
#include <fcntl.h>
#include <inttypes.h>
#include <libgen.h>
+#include <linux/fs.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
@@ -30,12 +31,16 @@
#include "ipc.h"
#include "log.h"
#include "storage.h"
+#include "watchdog.h"
#define FD_TBL_SIZE 64
#define MAX_READ_SIZE 4096
#define ALTERNATE_DATA_DIR "alternate/"
+/* Maximum file size for filesystem backed storage (i.e. not block dev backed storage) */
+#define MAX_FILE_SIZE (0x10000000000)
+
enum sync_state {
SS_UNUSED = -1,
SS_CLEAN = 0,
@@ -176,9 +181,8 @@
return rcnt;
}
-int storage_file_delete(struct storage_msg *msg,
- const void *r, size_t req_len)
-{
+int storage_file_delete(struct storage_msg* msg, const void* r, size_t req_len,
+ struct watcher* watcher) {
char *path = NULL;
const struct storage_file_delete_req *req = r;
@@ -204,6 +208,7 @@
goto err_response;
}
+ watch_progress(watcher, "unlinking file");
rc = unlink(path);
if (rc < 0) {
rc = errno;
@@ -227,8 +232,9 @@
return ipc_respond(msg, NULL, 0);
}
-static void sync_parent(const char* path) {
+static void sync_parent(const char* path, struct watcher* watcher) {
int parent_fd;
+ watch_progress(watcher, "syncing parent");
char* parent_path = dirname(path);
parent_fd = TEMP_FAILURE_RETRY(open(parent_path, O_RDONLY));
if (parent_fd >= 0) {
@@ -238,9 +244,11 @@
ALOGE("%s: failed to open parent directory \"%s\" for sync: %s\n", __func__, parent_path,
strerror(errno));
}
+ watch_progress(watcher, "done syncing parent");
}
-int storage_file_open(struct storage_msg* msg, const void* r, size_t req_len) {
+int storage_file_open(struct storage_msg* msg, const void* r, size_t req_len,
+ struct watcher* watcher) {
char* path = NULL;
const struct storage_file_open_req *req = r;
struct storage_file_open_resp resp = {0};
@@ -302,7 +310,7 @@
char* parent_path = dirname(path);
rc = mkdir(parent_path, S_IRWXU);
if (rc == 0) {
- sync_parent(parent_path);
+ sync_parent(parent_path, watcher);
} else if (errno != EEXIST) {
ALOGE("%s: Could not create parent directory \"%s\": %s\n", __func__, parent_path,
strerror(errno));
@@ -343,7 +351,7 @@
}
if (open_flags & O_CREAT) {
- sync_parent(path);
+ sync_parent(path, watcher);
}
free(path);
@@ -371,9 +379,8 @@
return ipc_respond(msg, NULL, 0);
}
-int storage_file_close(struct storage_msg *msg,
- const void *r, size_t req_len)
-{
+int storage_file_close(struct storage_msg* msg, const void* r, size_t req_len,
+ struct watcher* watcher) {
const struct storage_file_close_req *req = r;
if (req_len != sizeof(*req)) {
@@ -386,7 +393,9 @@
int fd = remove_fd(req->handle);
ALOGV("%s: handle = %u: fd = %u\n", __func__, req->handle, fd);
+ watch_progress(watcher, "fsyncing before file close");
int rc = fsync(fd);
+ watch_progress(watcher, "done fsyncing before file close");
if (rc < 0) {
rc = errno;
ALOGE("%s: fsync failed for fd=%u: %s\n",
@@ -410,10 +419,8 @@
return ipc_respond(msg, NULL, 0);
}
-
-int storage_file_write(struct storage_msg *msg,
- const void *r, size_t req_len)
-{
+int storage_file_write(struct storage_msg* msg, const void* r, size_t req_len,
+ struct watcher* watcher) {
int rc;
const struct storage_file_write_req *req = r;
@@ -425,17 +432,20 @@
}
int fd = lookup_fd(req->handle, true);
+ watch_progress(watcher, "writing");
if (write_with_retry(fd, &req->data[0], req_len - sizeof(*req),
req->offset) < 0) {
+ watch_progress(watcher, "writing done w/ error");
rc = errno;
ALOGW("%s: error writing file (fd=%d): %s\n",
__func__, fd, strerror(errno));
msg->result = translate_errno(rc);
goto err_response;
}
+ watch_progress(watcher, "writing done");
if (msg->flags & STORAGE_MSG_FLAG_POST_COMMIT) {
- rc = storage_sync_checkpoint();
+ rc = storage_sync_checkpoint(watcher);
if (rc < 0) {
msg->result = STORAGE_ERR_SYNC_FAILURE;
goto err_response;
@@ -448,10 +458,8 @@
return ipc_respond(msg, NULL, 0);
}
-
-int storage_file_read(struct storage_msg *msg,
- const void *r, size_t req_len)
-{
+int storage_file_read(struct storage_msg* msg, const void* r, size_t req_len,
+ struct watcher* watcher) {
int rc;
const struct storage_file_read_req *req = r;
@@ -470,8 +478,10 @@
}
int fd = lookup_fd(req->handle, false);
+ watch_progress(watcher, "reading");
ssize_t read_res = read_with_retry(fd, read_rsp.hdr.data, req->size,
(off_t)req->offset);
+ watch_progress(watcher, "reading done");
if (read_res < 0) {
rc = errno;
ALOGW("%s: error reading file (fd=%d): %s\n",
@@ -487,10 +497,8 @@
return ipc_respond(msg, NULL, 0);
}
-
-int storage_file_get_size(struct storage_msg *msg,
- const void *r, size_t req_len)
-{
+int storage_file_get_size(struct storage_msg* msg, const void* r, size_t req_len,
+ struct watcher* watcher) {
const struct storage_file_get_size_req *req = r;
struct storage_file_get_size_resp resp = {0};
@@ -503,7 +511,9 @@
struct stat stat;
int fd = lookup_fd(req->handle, false);
+ watch_progress(watcher, "fstat");
int rc = fstat(fd, &stat);
+ watch_progress(watcher, "fstat done");
if (rc < 0) {
rc = errno;
ALOGE("%s: error stat'ing file (fd=%d): %s\n",
@@ -520,10 +530,8 @@
return ipc_respond(msg, NULL, 0);
}
-
-int storage_file_set_size(struct storage_msg *msg,
- const void *r, size_t req_len)
-{
+int storage_file_set_size(struct storage_msg* msg, const void* r, size_t req_len,
+ struct watcher* watcher) {
const struct storage_file_set_size_req *req = r;
if (req_len != sizeof(*req)) {
@@ -534,7 +542,9 @@
}
int fd = lookup_fd(req->handle, true);
+ watch_progress(watcher, "ftruncate");
int rc = TEMP_FAILURE_RETRY(ftruncate(fd, req->size));
+ watch_progress(watcher, "ftruncate done");
if (rc < 0) {
rc = errno;
ALOGE("%s: error truncating file (fd=%d): %s\n",
@@ -549,6 +559,48 @@
return ipc_respond(msg, NULL, 0);
}
+int storage_file_get_max_size(struct storage_msg* msg, const void* r, size_t req_len,
+ struct watcher* watcher) {
+ const struct storage_file_get_max_size_req* req = r;
+ struct storage_file_get_max_size_resp resp = {0};
+ uint64_t max_size = 0;
+
+ if (req_len != sizeof(*req)) {
+ ALOGE("%s: invalid request length (%zd != %zd)\n", __func__, req_len, sizeof(*req));
+ msg->result = STORAGE_ERR_NOT_VALID;
+ goto err_response;
+ }
+
+ struct stat stat;
+ int fd = lookup_fd(req->handle, false);
+ watch_progress(watcher, "fstat to get max size");
+ int rc = fstat(fd, &stat);
+ watch_progress(watcher, "fstat to get max size done");
+ if (rc < 0) {
+ ALOGE("%s: error stat'ing file (fd=%d): %s\n", __func__, fd, strerror(errno));
+ goto err_response;
+ }
+
+ if ((stat.st_mode & S_IFMT) == S_IFBLK) {
+ rc = ioctl(fd, BLKGETSIZE64, &max_size);
+ if (rc < 0) {
+ rc = errno;
+ ALOGE("%s: error calling ioctl on file (fd=%d): %s\n", __func__, fd, strerror(errno));
+ msg->result = translate_errno(rc);
+ goto err_response;
+ }
+ } else {
+ max_size = MAX_FILE_SIZE;
+ }
+
+ resp.max_size = max_size;
+ msg->result = STORAGE_NO_ERROR;
+ return ipc_respond(msg, &resp, sizeof(resp));
+
+err_response:
+ return ipc_respond(msg, NULL, 0);
+}
+
int storage_init(const char *dirname)
{
/* If there is an active DSU image, use the alternate fs mode. */
@@ -563,10 +615,10 @@
return 0;
}
-int storage_sync_checkpoint(void)
-{
+int storage_sync_checkpoint(struct watcher* watcher) {
int rc;
+ watch_progress(watcher, "sync fd table");
/* sync fd table and reset it to clean state first */
for (uint fd = 0; fd < FD_TBL_SIZE; fd++) {
if (fd_state[fd] == SS_DIRTY) {
@@ -591,10 +643,12 @@
* because our fd table is large enough to handle the few open files we
* use.
*/
- sync();
- fs_state = SS_CLEAN;
+ watch_progress(watcher, "all fs sync");
+ sync();
+ fs_state = SS_CLEAN;
}
+ watch_progress(watcher, "done syncing");
+
return 0;
}
-
diff --git a/trusty/storage/proxy/storage.h b/trusty/storage/proxy/storage.h
index 5a670d4..f29fdf2 100644
--- a/trusty/storage/proxy/storage.h
+++ b/trusty/storage/proxy/storage.h
@@ -18,28 +18,33 @@
#include <stdint.h>
#include <trusty/interface/storage.h>
-int storage_file_delete(struct storage_msg *msg,
- const void *req, size_t req_len);
+/* Defined in watchdog.h */
+struct watcher;
-int storage_file_open(struct storage_msg *msg,
- const void *req, size_t req_len);
+int storage_file_delete(struct storage_msg* msg, const void* req, size_t req_len,
+ struct watcher* watcher);
-int storage_file_close(struct storage_msg *msg,
- const void *req, size_t req_len);
+int storage_file_open(struct storage_msg* msg, const void* req, size_t req_len,
+ struct watcher* watcher);
-int storage_file_write(struct storage_msg *msg,
- const void *req, size_t req_len);
+int storage_file_close(struct storage_msg* msg, const void* req, size_t req_len,
+ struct watcher* watcher);
-int storage_file_read(struct storage_msg *msg,
- const void *req, size_t req_len);
+int storage_file_write(struct storage_msg* msg, const void* req, size_t req_len,
+ struct watcher* watcher);
-int storage_file_get_size(struct storage_msg *msg,
- const void *req, size_t req_len);
+int storage_file_read(struct storage_msg* msg, const void* req, size_t req_len,
+ struct watcher* watcher);
-int storage_file_set_size(struct storage_msg *msg,
- const void *req, size_t req_len);
+int storage_file_get_size(struct storage_msg* msg, const void* req, size_t req_len,
+ struct watcher* watcher);
-int storage_init(const char *dirname);
+int storage_file_set_size(struct storage_msg* msg, const void* req, size_t req_len,
+ struct watcher* watcher);
-int storage_sync_checkpoint(void);
+int storage_file_get_max_size(struct storage_msg* msg, const void* req, size_t req_len,
+ struct watcher* watcher);
+int storage_init(const char* dirname);
+
+int storage_sync_checkpoint(struct watcher* watcher);
diff --git a/trusty/storage/proxy/watchdog.cpp b/trusty/storage/proxy/watchdog.cpp
new file mode 100644
index 0000000..6c09e26
--- /dev/null
+++ b/trusty/storage/proxy/watchdog.cpp
@@ -0,0 +1,208 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "watchdog.h"
+
+#include <chrono>
+#include <cstdint>
+#include <optional>
+#include <thread>
+#include <vector>
+
+#include <android-base/logging.h>
+
+struct watcher {
+ watcher(const char* id, const struct storage_msg* request);
+ void SetState(const char* new_state);
+ void LogTimeout();
+ void LogFinished();
+
+ const char* id_;
+ uint32_t cmd_;
+ uint32_t op_id_;
+ uint32_t flags_;
+ const char* state_;
+
+ using clock = std::chrono::high_resolution_clock;
+ clock::time_point start_;
+ clock::time_point state_change_;
+ std::chrono::milliseconds Elapsed(clock::time_point end);
+
+ bool triggered_;
+};
+
+watcher::watcher(const char* id, const struct storage_msg* request)
+ : id_(id), state_(nullptr), triggered_(false) {
+ cmd_ = request->cmd;
+ op_id_ = request->op_id;
+ flags_ = request->flags;
+
+ start_ = clock::now();
+ state_change_ = start_;
+}
+
+void watcher::SetState(const char* new_state) {
+ state_ = new_state;
+ state_change_ = clock::now();
+}
+
+void watcher::LogTimeout() {
+ if (!triggered_) {
+ triggered_ = true;
+ LOG(ERROR) << "Storageproxyd watchdog triggered: " << id_ << " cmd: " << cmd_
+ << " op_id: " << op_id_ << " flags: " << flags_;
+ }
+ if (state_) {
+ LOG(ERROR) << "...elapsed: " << Elapsed(clock::now()).count() << "ms (" << state_ << " "
+ << Elapsed(state_change_).count() << "ms)";
+ } else {
+ LOG(ERROR) << "...elapsed: " << Elapsed(clock::now()).count() << "ms";
+ }
+}
+
+void watcher::LogFinished() {
+ if (triggered_) {
+ LOG(ERROR) << "...completed: " << Elapsed(clock::now()).count() << "ms";
+ }
+}
+
+std::chrono::milliseconds watcher::Elapsed(watcher::clock::time_point end) {
+ return std::chrono::duration_cast<std::chrono::milliseconds>(end - start_);
+}
+
+namespace {
+
+class Watchdog {
+ private:
+ static constexpr std::chrono::milliseconds kDefaultTimeoutMs = std::chrono::milliseconds(500);
+ static constexpr std::chrono::milliseconds kMaxTimeoutMs = std::chrono::seconds(10);
+
+ public:
+ Watchdog() : watcher_(), done_(false) {}
+ ~Watchdog();
+ struct watcher* RegisterWatch(const char* id, const struct storage_msg* request);
+ void AddProgress(struct watcher* watcher, const char* state);
+ void UnRegisterWatch(struct watcher* watcher);
+
+ private:
+ // Syncronizes access to watcher_ and watcher_change_ between the main
+ // thread and watchdog loop thread. watcher_ may only be modified by the
+ // main thread; the watchdog loop is read-only.
+ std::mutex watcher_mutex_;
+ std::unique_ptr<struct watcher> watcher_;
+ std::condition_variable watcher_change_;
+
+ std::thread watchdog_thread_;
+ bool done_;
+
+ void WatchdogLoop();
+ void LogWatchdogTriggerLocked();
+};
+
+Watchdog gWatchdog;
+
+} // Anonymous namespace
+
+// Assumes that caller is single-threaded. If we want to use this from a
+// multi-threaded context we need to ensure that the watchdog thread is
+// initialized safely once and accessing an existing watcher is done while the
+// watcher lock is held.
+struct watcher* Watchdog::RegisterWatch(const char* id, const struct storage_msg* request) {
+ if (!watchdog_thread_.joinable()) {
+ watchdog_thread_ = std::thread(&Watchdog::WatchdogLoop, this);
+ }
+ if (watcher_) {
+ LOG(ERROR) << "Replacing registered watcher " << watcher_->id_;
+ UnRegisterWatch(watcher_.get());
+ }
+
+ struct watcher* ret = nullptr;
+ {
+ std::unique_lock<std::mutex> watcherLock(watcher_mutex_);
+ watcher_ = std::make_unique<struct watcher>(id, request);
+ ret = watcher_.get();
+ }
+ watcher_change_.notify_one();
+ return ret;
+}
+
+void Watchdog::UnRegisterWatch(struct watcher* watcher) {
+ {
+ std::lock_guard<std::mutex> watcherLock(watcher_mutex_);
+ if (!watcher_) {
+ LOG(ERROR) << "Cannot unregister watcher, no watcher registered";
+ return;
+ }
+ if (watcher_.get() != watcher) {
+ LOG(ERROR) << "Unregistering watcher that doesn't match current watcher";
+ }
+ watcher_->LogFinished();
+ watcher_.reset(nullptr);
+ }
+ watcher_change_.notify_one();
+}
+
+void Watchdog::AddProgress(struct watcher* watcher, const char* state) {
+ std::lock_guard<std::mutex> watcherLock(watcher_mutex_);
+ if (watcher_.get() != watcher) {
+ LOG(ERROR) << "Watcher was not registered, cannot log progress: " << state;
+ return;
+ }
+ watcher->SetState(state);
+}
+
+void Watchdog::WatchdogLoop() {
+ std::unique_lock<std::mutex> lock(watcher_mutex_);
+ std::chrono::milliseconds timeout = kDefaultTimeoutMs;
+
+ while (!done_) {
+ // wait for a watch to be registered
+ watcher_change_.wait(lock, [this] { return !!watcher_; });
+
+ // wait for the timeout or unregistration
+ timeout = kDefaultTimeoutMs;
+ do {
+ if (!watcher_change_.wait_for(lock, timeout, [this] { return !watcher_; })) {
+ watcher_->LogTimeout();
+ timeout = std::min(timeout * 2, kMaxTimeoutMs);
+ }
+ } while (!!watcher_);
+ }
+}
+
+Watchdog::~Watchdog() {
+ {
+ std::lock_guard<std::mutex> watcherLock(watcher_mutex_);
+ watcher_.reset(nullptr);
+ done_ = true;
+ }
+ watcher_change_.notify_one();
+ if (watchdog_thread_.joinable()) {
+ watchdog_thread_.join();
+ }
+}
+
+struct watcher* watch_start(const char* id, const struct storage_msg* request) {
+ return gWatchdog.RegisterWatch(id, request);
+}
+
+void watch_progress(struct watcher* watcher, const char* state) {
+ gWatchdog.AddProgress(watcher, state);
+}
+
+void watch_finish(struct watcher* watcher) {
+ gWatchdog.UnRegisterWatch(watcher);
+}
diff --git a/trusty/storage/proxy/watchdog.h b/trusty/storage/proxy/watchdog.h
new file mode 100644
index 0000000..9162fcb
--- /dev/null
+++ b/trusty/storage/proxy/watchdog.h
@@ -0,0 +1,59 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#pragma once
+
+#include "storage.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct watcher;
+
+/**
+ * watch_start() - Create a watcher for a storage request
+ * @id: Identifier string to distinguish watchers
+ * @request: Incoming request from Trusty storage service
+ *
+ * Create a watcher that will start logging if not finished before a timeout.
+ * Only one watcher may be active at a time, and this function may only be
+ * called from a single thread.
+ */
+struct watcher* watch_start(const char* id, const struct storage_msg* request);
+
+/**
+ * watch_progress() - Note progress on servicing the current request
+ * @watcher: Current watcher, created by watch()
+ *
+ * Sets the current progress state of the watcher, to allow for more granular
+ * reporting of what exactly is stuck if the timeout is reached.
+ */
+void watch_progress(struct watcher* watcher, const char* state);
+
+/**
+ * watch_finish() - Finish watching and unregister the watch
+ * @watcher: Current watcher, created by watch(). Takes ownership of this pointer.
+ *
+ * Finish the current watch task. This function takes ownership of the watcher
+ * and destroys it, so @watcher must not be used again after calling this
+ * function.
+ */
+void watch_finish(struct watcher* watcher);
+
+#ifdef __cplusplus
+}
+#endif
diff --git a/trusty/trusty-base.mk b/trusty/trusty-base.mk
index 0609709..7b4aa26 100644
--- a/trusty/trusty-base.mk
+++ b/trusty/trusty-base.mk
@@ -22,8 +22,21 @@
# For gatekeeper, we include the generic -service and -impl to use legacy
# HAL loading of gatekeeper.trusty.
+# Allow the KeyMint HAL service implementation to be selected at build time. This needs to be
+# done in sync with the TA implementation included in Trusty. Possible values are:
+#
+# - Rust implementation: export TRUSTY_KEYMINT_IMPL=rust
+# - C++ implementation: (any other value of TRUSTY_KEYMINT_IMPL)
+
+ifeq ($(TRUSTY_KEYMINT_IMPL),rust)
+ LOCAL_KEYMINT_PRODUCT_PACKAGE := android.hardware.security.keymint-service.rust.trusty
+else
+ # Default to the C++ implementation
+ LOCAL_KEYMINT_PRODUCT_PACKAGE := android.hardware.security.keymint-service.trusty
+endif
+
PRODUCT_PACKAGES += \
- android.hardware.security.keymint-service.trusty \
+ $(LOCAL_KEYMINT_PRODUCT_PACKAGE) \
android.hardware.gatekeeper@1.0-service.trusty \
trusty_apploader \
RemoteProvisioner
diff --git a/usbd/Android.bp b/usbd/Android.bp
index 27db0fa..e67759c 100644
--- a/usbd/Android.bp
+++ b/usbd/Android.bp
@@ -8,10 +8,12 @@
srcs: ["usbd.cpp"],
shared_libs: [
"libbase",
+ "libbinder_ndk",
"libhidlbase",
"liblog",
"libutils",
"libhardware",
"android.hardware.usb.gadget@1.0",
+ "android.hardware.usb.gadget-V1-ndk",
],
}
diff --git a/usbd/usbd.cpp b/usbd/usbd.cpp
index 6e24d8e..0616cfb 100644
--- a/usbd/usbd.cpp
+++ b/usbd/usbd.cpp
@@ -18,43 +18,78 @@
#include <string>
+#include <aidl/android/hardware/usb/gadget/GadgetFunction.h>
+#include <aidl/android/hardware/usb/gadget/IUsbGadget.h>
#include <android-base/logging.h>
#include <android-base/properties.h>
+#include <android/binder_manager.h>
+#include <android/binder_process.h>
#include <android/hardware/usb/gadget/1.0/IUsbGadget.h>
-#include <hidl/HidlTransportSupport.h>
-
+using aidl::android::hardware::usb::gadget::GadgetFunction;
using android::base::GetProperty;
using android::base::SetProperty;
-using android::hardware::configureRpcThreadpool;
-using android::hardware::usb::gadget::V1_0::GadgetFunction;
-using android::hardware::usb::gadget::V1_0::IUsbGadget;
using android::hardware::Return;
+using ndk::ScopedAStatus;
+using std::shared_ptr;
+
+std::atomic<int> sUsbOperationCount{};
int main(int /*argc*/, char** /*argv*/) {
if (GetProperty("ro.bootmode", "") == "charger") exit(0);
+ int operationId = sUsbOperationCount++;
- configureRpcThreadpool(1, true /*callerWillJoin*/);
- android::sp<IUsbGadget> gadget = IUsbGadget::getService();
- Return<void> ret;
+ ABinderProcess_setThreadPoolMaxThreadCount(1);
+ ABinderProcess_startThreadPool();
+ const std::string service_name =
+ std::string(aidl::android::hardware::usb::gadget::IUsbGadget::descriptor)
+ .append("/default");
- if (gadget != nullptr) {
- LOG(INFO) << "Usb HAL found.";
- std::string function = GetProperty("persist.sys.usb.config", "");
- if (function == "adb") {
- LOG(INFO) << "peristent prop is adb";
- SetProperty("ctl.start", "adbd");
- ret = gadget->setCurrentUsbFunctions(static_cast<uint64_t>(GadgetFunction::ADB),
- nullptr, 0);
+ std::string function = GetProperty("persist.sys.usb.config", "");
+ if (function == "adb") {
+ LOG(INFO) << "persistent prop is adb";
+ SetProperty("ctl.start", "adbd");
+ }
+
+ if (AServiceManager_isDeclared(service_name.c_str())) {
+ shared_ptr<aidl::android::hardware::usb::gadget::IUsbGadget> gadget_aidl =
+ aidl::android::hardware::usb::gadget::IUsbGadget::fromBinder(
+ ndk::SpAIBinder(AServiceManager_waitForService(service_name.c_str())));
+ ScopedAStatus ret;
+ if (gadget_aidl != nullptr) {
+ LOG(INFO) << "Usb AIDL HAL found.";
+ if (function == "adb") {
+ ret = gadget_aidl->setCurrentUsbFunctions(
+ static_cast<uint64_t>(GadgetFunction::ADB), nullptr, 0, operationId);
+ } else {
+ LOG(INFO) << "Signal MTP to enable default functions";
+ ret = gadget_aidl->setCurrentUsbFunctions(
+ static_cast<uint64_t>(GadgetFunction::MTP), nullptr, 0, operationId);
+ }
+
+ if (!ret.isOk()) LOG(ERROR) << "Error while invoking usb hal";
} else {
- LOG(INFO) << "Signal MTP to enable default functions";
- ret = gadget->setCurrentUsbFunctions(static_cast<uint64_t>(GadgetFunction::MTP),
- nullptr, 0);
+ LOG(INFO) << "Usb AIDL HAL not found";
}
-
- if (!ret.isOk()) LOG(ERROR) << "Error while invoking usb hal";
} else {
- LOG(INFO) << "Usb HAL not found";
+ android::sp<android::hardware::usb::gadget::V1_0::IUsbGadget> gadget =
+ android::hardware::usb::gadget::V1_0::IUsbGadget::getService();
+ Return<void> ret;
+ if (gadget != nullptr) {
+ LOG(INFO) << "Usb HAL found.";
+ if (function == "adb") {
+ ret = gadget->setCurrentUsbFunctions(static_cast<uint64_t>(GadgetFunction::ADB),
+ nullptr, 0);
+ } else {
+ LOG(INFO) << "Signal MTP to enable default functions";
+ ret = gadget->setCurrentUsbFunctions(static_cast<uint64_t>(GadgetFunction::MTP),
+ nullptr, 0);
+ }
+
+ if (!ret.isOk()) LOG(ERROR) << "Error while invoking usb hal";
+ } else {
+ LOG(INFO) << "Usb HAL not found";
+ }
}
exit(0);
}