Merge "libsnapshot: Use words for xor ops" into main
diff --git a/debuggerd/Android.bp b/debuggerd/Android.bp
index 0c5543e..c365cac 100644
--- a/debuggerd/Android.bp
+++ b/debuggerd/Android.bp
@@ -359,6 +359,7 @@
"libdebuggerd/test/dump_memory_test.cpp",
"libdebuggerd/test/elf_fake.cpp",
"libdebuggerd/test/log_fake.cpp",
+ "libdebuggerd/test/mte_stack_record_test.cpp",
"libdebuggerd/test/open_files_list_test.cpp",
"libdebuggerd/test/tombstone_proto_to_text_test.cpp",
],
diff --git a/debuggerd/crash_dump.cpp b/debuggerd/crash_dump.cpp
index 8dd2b0d..c9235ee 100644
--- a/debuggerd/crash_dump.cpp
+++ b/debuggerd/crash_dump.cpp
@@ -662,6 +662,15 @@
info.pac_enabled_keys = -1;
}
+#if defined(__aarch64__)
+ struct iovec tls_iov = {
+ &info.tls,
+ sizeof(info.tls),
+ };
+ if (ptrace(PTRACE_GETREGSET, thread, NT_ARM_TLS, reinterpret_cast<void*>(&tls_iov)) == -1) {
+ info.tls = 0;
+ }
+#endif
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, &recoverable_crash);
diff --git a/debuggerd/debuggerd_test.cpp b/debuggerd/debuggerd_test.cpp
index 08619b9..e33cea5 100644
--- a/debuggerd/debuggerd_test.cpp
+++ b/debuggerd/debuggerd_test.cpp
@@ -86,7 +86,6 @@
#define ARCH_SUFFIX ""
#endif
-constexpr size_t kTagGranuleSize = 16;
constexpr char kWaitForDebuggerKey[] = "debug.debuggerd.wait_for_debugger";
#define TIMEOUT(seconds, expr) \
@@ -742,6 +741,8 @@
}
#if defined(__aarch64__)
+constexpr size_t kTagGranuleSize = 16;
+
static uintptr_t CreateTagMapping() {
// Some of the MTE tag dump tests assert that there is an inaccessible page to the left and right
// of the PROT_MTE page, so map three pages and set the two guard pages to PROT_NONE.
@@ -1772,6 +1773,75 @@
AssertDeath(SIGABRT);
}
+extern "C" void malloc_enable();
+extern "C" void malloc_disable();
+
+TEST_F(CrasherTest, seccomp_tombstone_no_allocation) {
+ int intercept_result;
+ unique_fd output_fd;
+
+ static const auto dump_type = kDebuggerdTombstone;
+ StartProcess(
+ []() {
+ std::thread a(foo);
+ std::thread b(bar);
+
+ std::this_thread::sleep_for(100ms);
+
+ // Disable allocations to verify that nothing in the fallback
+ // signal handler does an allocation.
+ malloc_disable();
+ raise_debugger_signal(dump_type);
+ _exit(0);
+ },
+ &seccomp_fork);
+
+ StartIntercept(&output_fd, dump_type);
+ FinishCrasher();
+ AssertDeath(0);
+ FinishIntercept(&intercept_result);
+ ASSERT_EQ(1, intercept_result) << "tombstoned reported failure";
+
+ std::string result;
+ ConsumeFd(std::move(output_fd), &result);
+ ASSERT_BACKTRACE_FRAME(result, "raise_debugger_signal");
+ ASSERT_BACKTRACE_FRAME(result, "foo");
+ ASSERT_BACKTRACE_FRAME(result, "bar");
+}
+
+TEST_F(CrasherTest, seccomp_backtrace_no_allocation) {
+ int intercept_result;
+ unique_fd output_fd;
+
+ static const auto dump_type = kDebuggerdNativeBacktrace;
+ StartProcess(
+ []() {
+ std::thread a(foo);
+ std::thread b(bar);
+
+ std::this_thread::sleep_for(100ms);
+
+ // Disable allocations to verify that nothing in the fallback
+ // signal handler does an allocation.
+ malloc_disable();
+ raise_debugger_signal(dump_type);
+ _exit(0);
+ },
+ &seccomp_fork);
+
+ StartIntercept(&output_fd, dump_type);
+ FinishCrasher();
+ AssertDeath(0);
+ FinishIntercept(&intercept_result);
+ ASSERT_EQ(1, intercept_result) << "tombstoned reported failure";
+
+ std::string result;
+ ConsumeFd(std::move(output_fd), &result);
+ ASSERT_BACKTRACE_FRAME(result, "raise_debugger_signal");
+ ASSERT_BACKTRACE_FRAME(result, "foo");
+ ASSERT_BACKTRACE_FRAME(result, "bar");
+}
+
TEST_F(CrasherTest, competing_tracer) {
int intercept_result;
unique_fd output_fd;
diff --git a/debuggerd/handler/debuggerd_fallback.cpp b/debuggerd/handler/debuggerd_fallback.cpp
index 4721391..8ab5f25 100644
--- a/debuggerd/handler/debuggerd_fallback.cpp
+++ b/debuggerd/handler/debuggerd_fallback.cpp
@@ -48,50 +48,69 @@
extern "C" bool __linker_enable_fallback_allocator();
extern "C" void __linker_disable_fallback_allocator();
-// This is incredibly sketchy to do inside of a signal handler, especially when libbacktrace
-// uses the C++ standard library throughout, but this code runs in the linker, so we'll be using
-// the linker's malloc instead of the libc one. Switch it out for a replacement, just in case.
-//
-// This isn't the default method of dumping because it can fail in cases such as address space
-// exhaustion.
+// This file implements a fallback path for processes that do not allow the
+// normal fork and exec of crash_dump to handle crashes/unwinds.
+// The issue is that all of this happens from within a signal handler, which
+// can cause problems since this code uses the linker allocator which is not
+// thread safe. In order to avoid any problems allocating, the code calls
+// a function to switch to use a fallback allocator in the linker that will
+// only be used for the current thread. All of the libunwindstack code does
+// allocations using C++ stl, but should be fine since the code runs in the
+// linker and should use the fallback handler.
+
+// This method can still fail if the virtual space is exhausted on a 32 bit
+// process or mmap failing due to hitting the maximum number of maps (65535
+// total maps) on a 64 bit process.
+
+// Class to handle automatically turning on and off the fallback allocator.
+class ScopedUseFallbackAllocator {
+ public:
+ ScopedUseFallbackAllocator() { Enable(); }
+
+ ~ScopedUseFallbackAllocator() { Disable(); }
+
+ bool Enable() {
+ if (!enabled_) {
+ enabled_ = __linker_enable_fallback_allocator();
+ if (!enabled_) {
+ async_safe_format_log(ANDROID_LOG_ERROR, "libc",
+ "Unable to enable fallback allocator, already in use.");
+ }
+ }
+ return enabled_;
+ }
+
+ void Disable() {
+ if (enabled_) {
+ __linker_disable_fallback_allocator();
+ enabled_ = false;
+ }
+ }
+
+ bool enabled() { return enabled_; }
+
+ private:
+ bool enabled_ = false;
+};
+
static void debuggerd_fallback_trace(int output_fd, ucontext_t* ucontext) {
- if (!__linker_enable_fallback_allocator()) {
- async_safe_format_log(ANDROID_LOG_ERROR, "libc", "fallback allocator already in use");
- return;
- }
+ std::unique_ptr<unwindstack::Regs> regs;
- {
- std::unique_ptr<unwindstack::Regs> regs;
+ ThreadInfo thread;
+ thread.pid = getpid();
+ thread.tid = gettid();
+ thread.thread_name = get_thread_name(gettid());
+ thread.registers.reset(
+ unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext));
- ThreadInfo thread;
- thread.pid = getpid();
- thread.tid = gettid();
- thread.thread_name = get_thread_name(gettid());
- thread.registers.reset(
- unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext));
-
- // Do not use the thread cache here because it will call pthread_key_create
- // which doesn't work in linker code. See b/189803009.
- // Use a normal cached object because the thread is stopped, and there
- // is no chance of data changing between reads.
- auto process_memory = unwindstack::Memory::CreateProcessMemoryCached(getpid());
- // TODO: Create this once and store it in a global?
- unwindstack::AndroidLocalUnwinder unwinder(process_memory);
- dump_backtrace_thread(output_fd, &unwinder, thread);
- }
- __linker_disable_fallback_allocator();
-}
-
-static void debuggerd_fallback_tombstone(int output_fd, int proto_fd, ucontext_t* ucontext,
- siginfo_t* siginfo, void* abort_message) {
- if (!__linker_enable_fallback_allocator()) {
- async_safe_format_log(ANDROID_LOG_ERROR, "libc", "fallback allocator already in use");
- return;
- }
-
- engrave_tombstone_ucontext(output_fd, proto_fd, reinterpret_cast<uintptr_t>(abort_message),
- siginfo, ucontext);
- __linker_disable_fallback_allocator();
+ // Do not use the thread cache here because it will call pthread_key_create
+ // which doesn't work in linker code. See b/189803009.
+ // Use a normal cached object because the thread is stopped, and there
+ // is no chance of data changing between reads.
+ auto process_memory = unwindstack::Memory::CreateProcessMemoryCached(getpid());
+ // TODO: Create this once and store it in a global?
+ unwindstack::AndroidLocalUnwinder unwinder(process_memory);
+ dump_backtrace_thread(output_fd, &unwinder, thread);
}
static bool forward_output(int src_fd, int dst_fd, pid_t expected_tid) {
@@ -154,6 +173,11 @@
}
static void trace_handler(siginfo_t* info, ucontext_t* ucontext) {
+ ScopedUseFallbackAllocator allocator;
+ if (!allocator.enabled()) {
+ return;
+ }
+
static std::atomic<uint64_t> trace_output(pack_thread_fd(-1, -1));
if (info->si_value.sival_ptr == kDebuggerdFallbackSivalPtrRequestDump) {
@@ -181,6 +205,11 @@
async_safe_format_log(ANDROID_LOG_ERROR, "libc", "failed to write to output fd");
}
+ // Stop using the fallback allocator before the close. This will prevent
+ // a race condition where the thread backtracing all of the threads tries
+ // to re-acquire the fallback allocator.
+ allocator.Disable();
+
close(fd);
return;
}
@@ -210,10 +239,15 @@
// Send a signal to all of our siblings, asking them to dump their stack.
pid_t current_tid = gettid();
- if (!iterate_tids(current_tid, [&output_fd, ¤t_tid](pid_t tid) {
+ if (!iterate_tids(current_tid, [&allocator, &output_fd, ¤t_tid](pid_t tid) {
if (current_tid == tid) {
return;
}
+
+ if (!allocator.enabled()) {
+ return;
+ }
+
// Use a pipe, to be able to detect situations where the thread gracefully exits before
// receiving our signal.
unique_fd pipe_read, pipe_write;
@@ -233,22 +267,29 @@
return;
}
+ // Disable our use of the fallback allocator while the target thread
+ // is getting the backtrace.
+ allocator.Disable();
+
siginfo_t siginfo = {};
siginfo.si_code = SI_QUEUE;
siginfo.si_value.sival_ptr = kDebuggerdFallbackSivalPtrRequestDump;
siginfo.si_pid = getpid();
siginfo.si_uid = getuid();
- if (syscall(__NR_rt_tgsigqueueinfo, getpid(), tid, BIONIC_SIGNAL_DEBUGGER, &siginfo) != 0) {
+ if (syscall(__NR_rt_tgsigqueueinfo, getpid(), tid, BIONIC_SIGNAL_DEBUGGER, &siginfo) == 0) {
+ if (!forward_output(pipe_read.get(), output_fd.get(), tid)) {
+ async_safe_format_log(ANDROID_LOG_ERROR, "libc",
+ "timeout expired while waiting for thread %d to dump", tid);
+ }
+ } else {
async_safe_format_log(ANDROID_LOG_ERROR, "libc", "failed to send trace signal to %d: %s",
tid, strerror(errno));
- return;
}
- bool success = forward_output(pipe_read.get(), output_fd.get(), tid);
- if (!success) {
- async_safe_format_log(ANDROID_LOG_ERROR, "libc",
- "timeout expired while waiting for thread %d to dump", tid);
+ // The thread should be finished now, so try and re-enable the fallback allocator.
+ if (!allocator.Enable()) {
+ return;
}
// Regardless of whether the poll succeeds, check to see if the thread took fd ownership.
@@ -260,14 +301,15 @@
close(fd);
}
}
-
- return;
})) {
async_safe_format_log(ANDROID_LOG_ERROR, "libc", "failed to open /proc/%d/task: %s",
current_tid, strerror(errno));
}
- dump_backtrace_footer(output_fd.get());
+ if (allocator.enabled()) {
+ dump_backtrace_footer(output_fd.get());
+ }
+
tombstoned_notify_completion(tombstone_socket.get());
}
@@ -295,7 +337,13 @@
unique_fd tombstone_socket, output_fd, proto_fd;
bool tombstoned_connected = tombstoned_connect(getpid(), &tombstone_socket, &output_fd, &proto_fd,
kDebuggerdTombstoneProto);
- debuggerd_fallback_tombstone(output_fd.get(), proto_fd.get(), ucontext, info, abort_message);
+ {
+ ScopedUseFallbackAllocator allocator;
+ if (allocator.enabled()) {
+ engrave_tombstone_ucontext(output_fd.get(), proto_fd.get(),
+ reinterpret_cast<uintptr_t>(abort_message), info, ucontext);
+ }
+ }
if (tombstoned_connected) {
tombstoned_notify_completion(tombstone_socket.get());
}
diff --git a/debuggerd/handler/debuggerd_handler.cpp b/debuggerd/handler/debuggerd_handler.cpp
index 42f0aa0..ddc3244 100644
--- a/debuggerd/handler/debuggerd_handler.cpp
+++ b/debuggerd/handler/debuggerd_handler.cpp
@@ -838,7 +838,6 @@
// Use the alternate signal stack if available so we can catch stack overflows.
action.sa_flags |= SA_ONSTACK;
-#define SA_EXPOSE_TAGBITS 0x00000800
// Request that the kernel set tag bits in the fault address. This is necessary for diagnosing MTE
// faults.
action.sa_flags |= SA_EXPOSE_TAGBITS;
diff --git a/debuggerd/libdebuggerd/include/libdebuggerd/tombstone.h b/debuggerd/libdebuggerd/include/libdebuggerd/tombstone.h
index dfdfabd..074b095 100644
--- a/debuggerd/libdebuggerd/include/libdebuggerd/tombstone.h
+++ b/debuggerd/libdebuggerd/include/libdebuggerd/tombstone.h
@@ -73,5 +73,8 @@
void fill_in_backtrace_frame(BacktraceFrame* f, const unwindstack::FrameData& frame);
void set_human_readable_cause(Cause* cause, uint64_t fault_addr);
-
+#if defined(__aarch64__)
+void dump_stack_history(unwindstack::AndroidUnwinder* unwinder, uintptr_t target_tls,
+ StackHistoryBuffer& shb_ob, bool nounwind = false);
+#endif
#endif // _DEBUGGERD_TOMBSTONE_H
diff --git a/debuggerd/libdebuggerd/include/libdebuggerd/types.h b/debuggerd/libdebuggerd/include/libdebuggerd/types.h
index c799f24..f7fc2a3 100644
--- a/debuggerd/libdebuggerd/include/libdebuggerd/types.h
+++ b/debuggerd/libdebuggerd/include/libdebuggerd/types.h
@@ -41,6 +41,9 @@
siginfo_t* siginfo = nullptr;
std::unique_ptr<unwindstack::Regs> guest_registers;
+#if defined(__aarch64__)
+ uintptr_t tls; // This is currently used for MTE stack history buffer.
+#endif
};
// This struct is written into a pipe from inside the crashing process.
diff --git a/debuggerd/libdebuggerd/test/host_signal_fixup.h b/debuggerd/libdebuggerd/test/host_signal_fixup.h
deleted file mode 100644
index 762bae5..0000000
--- a/debuggerd/libdebuggerd/test/host_signal_fixup.h
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Copyright (C) 2015 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 _DEBUGGERD_TEST_HOST_SIGNAL_FIXUP_H
-#define _DEBUGGERD_TEST_HOST_SIGNAL_FIXUP_H
-
-#include <signal.h>
-
-#if !defined(__BIONIC__)
-
-// In order to compile parts of debuggerd for the host, we need to
-// define these values.
-
-#if !defined(NSIGILL)
-#define NSIGILL ILL_BADSTK
-#endif
-
-#if !defined(BUS_MCEERR_AR)
-#define BUS_MCEERR_AR 4
-#endif
-#if !defined(BUS_MCEERR_AO)
-#define BUS_MCEERR_AO 5
-#endif
-#if !defined(NSIGBUS)
-#define NSIGBUS BUS_MCEERR_AO
-#endif
-
-#if !defined(NSIGFPE)
-#define NSIGFPE FPE_FLTSUB
-#endif
-
-#if !defined(NSIGSEGV)
-#define NSIGSEGV SEGV_ACCERR
-#endif
-
-#if !defined(TRAP_BRANCH)
-#define TRAP_BRANCH 3
-#endif
-#if !defined(TRAP_HWBKPT)
-#define TRAP_HWBKPT 4
-#endif
-#if !defined(NSIGTRAP)
-#define NSIGTRAP TRAP_HWBKPT
-#endif
-
-#if !defined(SI_DETHREAD)
-#define SI_DETHREAD (-7)
-#endif
-
-#endif
-
-#endif // _DEBUGGERD_TEST_HOST_SIGNAL_FIXUP_H
diff --git a/debuggerd/libdebuggerd/test/mte_stack_record_test.cpp b/debuggerd/libdebuggerd/test/mte_stack_record_test.cpp
new file mode 100644
index 0000000..4b788f3
--- /dev/null
+++ b/debuggerd/libdebuggerd/test/mte_stack_record_test.cpp
@@ -0,0 +1,157 @@
+/*
+ * Copyright (C) 2024 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.
+ */
+#if defined(__aarch64__)
+
+#include <stdint.h>
+#include <sys/mman.h>
+
+#include <optional>
+
+#include "bionic/mte.h"
+#include "bionic/page.h"
+#include "unwindstack/AndroidUnwinder.h"
+#include "unwindstack/Memory.h"
+
+#include <android-base/test_utils.h>
+#include "gtest/gtest.h"
+
+#include "libdebuggerd/tombstone.h"
+
+struct ScopedUnmap {
+ void* ptr;
+ size_t size;
+ ~ScopedUnmap() { munmap(ptr, size); }
+};
+
+class MteStackHistoryTest : public ::testing::TestWithParam<int> {
+ void SetUp() override {
+#if !defined(__aarch64__)
+ GTEST_SKIP();
+#endif
+ SKIP_WITH_HWASAN;
+ unwinder.emplace();
+ unwindstack::ErrorData E;
+ ASSERT_TRUE(unwinder->Initialize(E));
+ }
+
+ protected:
+ // std::optional so we don't construct it for the SKIP cases.
+ std::optional<unwindstack::AndroidLocalUnwinder> unwinder;
+};
+
+TEST(MteStackHistoryUnwindTest, TestOne) {
+#if !defined(__aarch64__)
+ GTEST_SKIP();
+#endif
+ SKIP_WITH_HWASAN;
+ size_t size = stack_mte_ringbuffer_size(0);
+ char* data = static_cast<char*>(stack_mte_ringbuffer_allocate(0, nullptr));
+ ScopedUnmap s{data, size};
+
+ uintptr_t taggedfp = (1ULL << 56) | 1;
+ uintptr_t pc = reinterpret_cast<uintptr_t>(&memcpy);
+ memcpy(data, &pc, sizeof(pc));
+ memcpy(data + 8, &taggedfp, sizeof(taggedfp));
+
+ // The MTE TLS is at TLS - 3, so we allocate 3 placeholders.
+ void* tls[4] = {data + 16};
+
+ unwindstack::AndroidLocalUnwinder unwinder;
+ unwindstack::ErrorData E;
+ unwinder.Initialize(E);
+ StackHistoryBuffer shb;
+ dump_stack_history(&unwinder, reinterpret_cast<uintptr_t>(&tls[3]), shb, /* nounwind= */ false);
+ ASSERT_EQ(shb.entries_size(), 1);
+ const StackHistoryBufferEntry& e = shb.entries(0);
+ EXPECT_EQ(e.addr().pc(), pc);
+ EXPECT_EQ(e.addr().file_name(), "/apex/com.android.runtime/lib64/bionic/libc.so");
+ EXPECT_EQ(e.fp(), 1ULL);
+ EXPECT_EQ(e.tag(), 1ULL);
+}
+
+TEST_P(MteStackHistoryTest, TestEmpty) {
+ int size_cls = GetParam();
+ size_t size = stack_mte_ringbuffer_size(size_cls);
+ void* data = stack_mte_ringbuffer_allocate(size_cls, nullptr);
+ ScopedUnmap s{data, size};
+ // The MTE TLS is at TLS - 3, so we allocate 3 placeholders.
+ void* tls[4] = {data};
+
+ StackHistoryBuffer shb;
+ dump_stack_history(&*unwinder, reinterpret_cast<uintptr_t>(&tls[3]), shb, /* nounwind= */ true);
+ EXPECT_EQ(shb.entries_size(), 0);
+}
+
+TEST_P(MteStackHistoryTest, TestFull) {
+ int size_cls = GetParam();
+ size_t size = stack_mte_ringbuffer_size(size_cls);
+ char* data = static_cast<char*>(stack_mte_ringbuffer_allocate(size_cls, nullptr));
+ ScopedUnmap s{data, size};
+ uintptr_t itr = 1;
+ for (char* d = data; d < &data[size]; d += 16) {
+ uintptr_t taggedfp = ((itr & 15) << 56) | itr;
+ uintptr_t pc = itr;
+ memcpy(d, &pc, sizeof(pc));
+ memcpy(d + 8, &taggedfp, sizeof(taggedfp));
+ ++itr;
+ }
+ // The MTE TLS is at TLS - 3, so we allocate 3 placeholders.
+ // Because the buffer is full, and we point at one past the last inserted element,
+ // due to wrap-around we point at the beginning of the buffer.
+ void* tls[4] = {data};
+
+ StackHistoryBuffer shb;
+ dump_stack_history(&*unwinder, reinterpret_cast<uintptr_t>(&tls[3]), shb, /* nounwind= */ true);
+ EXPECT_EQ(static_cast<size_t>(shb.entries_size()), size / 16);
+ for (const auto& entry : shb.entries()) {
+ EXPECT_EQ(entry.addr().pc(), --itr);
+ EXPECT_EQ(entry.addr().pc(), entry.fp());
+ EXPECT_EQ(entry.addr().pc() & 15, entry.tag());
+ }
+}
+
+TEST_P(MteStackHistoryTest, TestHalfFull) {
+ int size_cls = GetParam();
+ size_t size = stack_mte_ringbuffer_size(size_cls);
+ size_t half_size = size / 2;
+
+ char* data = static_cast<char*>(stack_mte_ringbuffer_allocate(size_cls, nullptr));
+ ScopedUnmap s{data, size};
+
+ uintptr_t itr = 1;
+ for (char* d = data; d < &data[half_size]; d += 16) {
+ uintptr_t taggedfp = ((itr & 15) << 56) | itr;
+ uintptr_t pc = itr;
+ memcpy(d, &pc, sizeof(pc));
+ memcpy(d + 8, &taggedfp, sizeof(taggedfp));
+ ++itr;
+ }
+ // The MTE TLS is at TLS - 3, so we allocate 3 placeholders.
+ void* tls[4] = {&data[half_size]};
+
+ StackHistoryBuffer shb;
+ dump_stack_history(&*unwinder, reinterpret_cast<uintptr_t>(&tls[3]), shb, /* nounwind= */ true);
+ EXPECT_EQ(static_cast<size_t>(shb.entries_size()), half_size / 16);
+ for (const auto& entry : shb.entries()) {
+ EXPECT_EQ(entry.addr().pc(), --itr);
+ EXPECT_EQ(entry.addr().pc(), entry.fp());
+ EXPECT_EQ(entry.addr().pc() & 15, entry.tag());
+ }
+}
+
+INSTANTIATE_TEST_SUITE_P(MteStackHistoryTestInstance, MteStackHistoryTest, testing::Range(0, 8));
+
+#endif
diff --git a/debuggerd/libdebuggerd/test/tombstone_proto_to_text_test.cpp b/debuggerd/libdebuggerd/test/tombstone_proto_to_text_test.cpp
index a4c08a4..4fd2643 100644
--- a/debuggerd/libdebuggerd/test/tombstone_proto_to_text_test.cpp
+++ b/debuggerd/libdebuggerd/test/tombstone_proto_to_text_test.cpp
@@ -134,3 +134,31 @@
ProtoToString();
EXPECT_MATCH(text_, R"(CRASH_DETAIL_NAME: 'helloworld\\1\\255\\3')");
}
+
+TEST_F(TombstoneProtoToTextTest, stack_record) {
+ auto* cause = tombstone_->add_causes();
+ cause->set_human_readable("stack tag-mismatch on thread 123");
+ auto* stack = tombstone_->mutable_stack_history_buffer();
+ stack->set_tid(123);
+ {
+ auto* shb_entry = stack->add_entries();
+ shb_entry->set_fp(0x1);
+ shb_entry->set_tag(0xb);
+ auto* addr = shb_entry->mutable_addr();
+ addr->set_rel_pc(0x567);
+ addr->set_file_name("foo.so");
+ addr->set_build_id("ABC123");
+ }
+ {
+ auto* shb_entry = stack->add_entries();
+ shb_entry->set_fp(0x2);
+ shb_entry->set_tag(0xc);
+ auto* addr = shb_entry->mutable_addr();
+ addr->set_rel_pc(0x678);
+ addr->set_file_name("bar.so");
+ }
+ ProtoToString();
+ EXPECT_MATCH(text_, "stack tag-mismatch on thread 123");
+ EXPECT_MATCH(text_, "stack_record fp:0x1 tag:0xb pc:foo\\.so\\+0x567 \\(BuildId: ABC123\\)");
+ EXPECT_MATCH(text_, "stack_record fp:0x2 tag:0xc pc:bar\\.so\\+0x678");
+}
diff --git a/debuggerd/libdebuggerd/tombstone_proto.cpp b/debuggerd/libdebuggerd/tombstone_proto.cpp
index 3e8ab6e..ed4fd53 100644
--- a/debuggerd/libdebuggerd/tombstone_proto.cpp
+++ b/debuggerd/libdebuggerd/tombstone_proto.cpp
@@ -27,6 +27,7 @@
#include <inttypes.h>
#include <signal.h>
#include <stddef.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
@@ -49,9 +50,11 @@
#include <android/log.h>
#include <android/set_abort_message.h>
-#include <bionic/macros.h>
-#include <bionic/reserved_signals.h>
#include <bionic/crash_detail_internal.h>
+#include <bionic/macros.h>
+#include <bionic/mte.h>
+#include <bionic/reserved_signals.h>
+#include <bionic/tls_defines.h>
#include <log/log.h>
#include <log/log_read.h>
#include <log/logprint.h>
@@ -202,8 +205,117 @@
error_type_str, diff, byte_suffix, location_str, heap_object.size(), heap_object.address()));
}
+#if defined(__aarch64__)
+void dump_stack_history(unwindstack::AndroidUnwinder* unwinder, uintptr_t target_tls,
+ StackHistoryBuffer& shb_obj, bool nounwind) {
+ auto process_memory = unwinder->GetProcessMemory();
+ target_tls += sizeof(void*) * TLS_SLOT_STACK_MTE;
+ uintptr_t stack_mte;
+ if (!process_memory->ReadFully(target_tls, &stack_mte, sizeof(stack_mte))) {
+ async_safe_format_log(ANDROID_LOG_ERROR, LOG_TAG,
+ "dump_stack_history: failed to read TLS_SLOT_STACK_MTE: %m");
+ return;
+ }
+ if (stack_mte == 0) {
+ async_safe_format_log(ANDROID_LOG_DEBUG, LOG_TAG,
+ "dump_stack_history: stack history buffer is null");
+ return;
+ }
+ uintptr_t untagged_stack_mte = untag_address(stack_mte);
+ uintptr_t buf_size = stack_mte_ringbuffer_size_from_pointer(stack_mte);
+ if (buf_size == 0) {
+ async_safe_format_log(ANDROID_LOG_ERROR, LOG_TAG, "dump_stack_history: empty size");
+ return;
+ }
+ uintptr_t buf_start = untagged_stack_mte & ~(buf_size - 1ULL);
+ std::vector<char> buf(buf_size);
+ if (!process_memory->ReadFully(buf_start, buf.data(), buf.size())) {
+ async_safe_format_log(ANDROID_LOG_ERROR, LOG_TAG,
+ "dump_stack_history: failed to read stack history: %m");
+ return;
+ }
+ uintptr_t original_off = untagged_stack_mte - buf_start;
+ if (original_off % 16 || original_off > buf_size) {
+ async_safe_format_log(ANDROID_LOG_ERROR, LOG_TAG,
+ "dump_stack_history: invalid offset: %" PRIuPTR, original_off);
+ return;
+ }
+
+ // The original_off is the next slot that would have been written, so the last
+ // slot that was written is the previous one.
+ for (uintptr_t idx = 16; idx <= buf_size; idx += 16) {
+ int64_t off = original_off - idx;
+ if (off < 0) off += buf_size;
+ uintptr_t pc, taggedfp;
+ memcpy(&pc, &(buf[off]), sizeof(pc));
+ memcpy(&taggedfp, &(buf[off + sizeof(pc)]), sizeof(taggedfp));
+
+ if (pc == 0) break;
+ uintptr_t fp = untag_address(taggedfp);
+ uintptr_t tag = taggedfp >> 56;
+
+ unwindstack::FrameData frame_data;
+
+ if (nounwind) {
+ frame_data.pc = pc;
+ } else {
+ // +4 is to counteract the "pc adjustment" in BuildFrameFromPcOnly.
+ // BuildFrameFromPcOnly assumes we are unwinding, so it needs to correct for that
+ // the PC is the return address. That is not the case here.
+ // It doesn't really matter, because either should be in the correct function, but
+ // this is more correct (and consistent with the nounwind case).
+ frame_data = unwinder->BuildFrameFromPcOnly(pc);
+ frame_data.pc += 4;
+ frame_data.rel_pc += 4;
+ }
+
+ StackHistoryBufferEntry* entry = shb_obj.add_entries();
+ fill_in_backtrace_frame(entry->mutable_addr(), frame_data);
+ entry->set_fp(fp);
+ entry->set_tag(tag);
+ }
+}
+
+static pid_t get_containing_thread(unwindstack::MapInfo* map_info, pid_t main_tid) {
+ if (map_info == nullptr) return 0;
+
+ std::string name = map_info->name();
+ if (name == "[stack]") {
+ return main_tid;
+ }
+ int tid;
+ if (sscanf(name.c_str(), "[anon:stack_and_tls:%d", &tid) != 1) {
+ return 0;
+ }
+ return tid;
+}
+
+static std::optional<std::string> maybe_stack_mte_cause(
+ Tombstone* tombstone, unwindstack::AndroidUnwinder* unwinder, const ThreadInfo& target_thread,
+ [[maybe_unused]] const std::map<pid_t, ThreadInfo>& threads, uint64_t fault_addr) {
+ unwindstack::Maps* maps = unwinder->GetMaps();
+ auto map_info = maps->Find(untag_address(fault_addr));
+ pid_t tid = get_containing_thread(map_info.get(), target_thread.tid);
+ if (!tid) {
+ return std::nullopt;
+ }
+ auto it = threads.find(tid);
+ if (it != threads.end()) {
+ StackHistoryBuffer* shb = tombstone->mutable_stack_history_buffer();
+ shb->set_tid(tid);
+ dump_stack_history(unwinder, it->second.tls, *shb);
+ } else {
+ async_safe_format_log(ANDROID_LOG_ERROR, LOG_TAG,
+ "dump_probable_cause: unknown target thread %d", tid);
+ }
+ return StringPrintf("stack tag-mismatch on thread %u", tid);
+}
+
+#endif
+
static void dump_probable_cause(Tombstone* tombstone, unwindstack::AndroidUnwinder* unwinder,
- const ProcessInfo& process_info, const ThreadInfo& target_thread) {
+ const ProcessInfo& process_info, const ThreadInfo& target_thread,
+ [[maybe_unused]] const std::map<pid_t, ThreadInfo>& threads) {
#if defined(USE_SCUDO)
ScudoCrashData scudo_crash_data(unwinder->GetProcessMemory().get(), process_info);
if (scudo_crash_data.CrashIsMine()) {
@@ -244,10 +356,21 @@
auto map_info = maps->Find(fault_addr);
if (map_info != nullptr && map_info->flags() == PROT_EXEC) {
cause = "execute-only (no-read) memory access error; likely due to data in .text.";
+ } else if (fault_addr == target_thread.registers->pc() &&
+ map_info != nullptr && (map_info->flags() & PROT_EXEC) == 0) {
+ cause = "trying to execute non-executable memory.";
} else {
cause = get_stack_overflow_cause(fault_addr, target_thread.registers->sp(), maps);
}
- } else if (si->si_signo == SIGSYS && si->si_code == SYS_SECCOMP) {
+ }
+#if defined(__aarch64__) && defined(SEGV_MTESERR)
+ else if (si->si_signo == SIGSEGV && si->si_code == SEGV_MTESERR) {
+ // If this was a heap MTE crash, it would have been handled by scudo. Checking whether it
+ // is a stack one.
+ cause = maybe_stack_mte_cause(tombstone, unwinder, target_thread, threads, fault_addr);
+ }
+#endif
+ else if (si->si_signo == SIGSYS && si->si_code == SYS_SECCOMP) {
cause = StringPrintf("seccomp prevented call to disallowed %s system call %d", ABI_STRING,
si->si_syscall);
}
@@ -787,7 +910,7 @@
}
}
- dump_probable_cause(&result, unwinder, process_info, target_thread);
+ dump_probable_cause(&result, unwinder, process_info, target_thread, threads);
dump_mappings(&result, unwinder->GetMaps(), unwinder->GetProcessMemory());
diff --git a/debuggerd/libdebuggerd/tombstone_proto_to_text.cpp b/debuggerd/libdebuggerd/tombstone_proto_to_text.cpp
index 1900719..c3f9470 100644
--- a/debuggerd/libdebuggerd/tombstone_proto_to_text.cpp
+++ b/debuggerd/libdebuggerd/tombstone_proto_to_text.cpp
@@ -511,6 +511,19 @@
"order of likelihood.");
}
+ if (tombstone.has_stack_history_buffer()) {
+ for (const StackHistoryBufferEntry& shbe : tombstone.stack_history_buffer().entries()) {
+ std::string stack_record_str = StringPrintf(
+ "stack_record fp:0x%" PRIx64 " tag:0x%" PRIx64 " pc:%s+0x%" PRIx64, shbe.fp(), shbe.tag(),
+ shbe.addr().file_name().c_str(), shbe.addr().rel_pc());
+ if (!shbe.addr().build_id().empty()) {
+ StringAppendF(&stack_record_str, " (BuildId: %s)", shbe.addr().build_id().c_str());
+ }
+
+ CBL("%s", stack_record_str.c_str());
+ }
+ }
+
for (const Cause& cause : tombstone.causes()) {
if (tombstone.causes_size() > 1) {
CBS("");
diff --git a/debuggerd/proto/tombstone.proto b/debuggerd/proto/tombstone.proto
index b662d36..444c973 100644
--- a/debuggerd/proto/tombstone.proto
+++ b/debuggerd/proto/tombstone.proto
@@ -22,6 +22,21 @@
reserved 3 to 999;
}
+message StackHistoryBufferEntry {
+ BacktraceFrame addr = 1;
+ uint64 fp = 2;
+ uint64 tag = 3;
+
+ reserved 4 to 999;
+}
+
+message StackHistoryBuffer {
+ uint64 tid = 1;
+ repeated StackHistoryBufferEntry entries = 2;
+
+ reserved 3 to 999;
+}
+
message Tombstone {
Architecture arch = 1;
Architecture guest_arch = 24;
@@ -53,7 +68,9 @@
uint32 page_size = 22;
bool has_been_16kb_mode = 23;
- reserved 26 to 999;
+ StackHistoryBuffer stack_history_buffer = 26;
+
+ reserved 27 to 999;
}
enum Architecture {
diff --git a/fastboot/Android.bp b/fastboot/Android.bp
index 774af28..bfe0768 100644
--- a/fastboot/Android.bp
+++ b/fastboot/Android.bp
@@ -186,6 +186,7 @@
"libprotobuf-cpp-lite",
"libsparse",
"libutils",
+ "libselinux",
],
static_libs: [
diff --git a/fastboot/fuzzy_fastboot/transport_sniffer.cpp b/fastboot/fuzzy_fastboot/transport_sniffer.cpp
index b55ffd3..0aef350 100644
--- a/fastboot/fuzzy_fastboot/transport_sniffer.cpp
+++ b/fastboot/fuzzy_fastboot/transport_sniffer.cpp
@@ -90,7 +90,7 @@
// and be printed as a string, or just a raw byte-buffer
const auto msg = [&ret, no_print](const std::vector<char>& buf) {
ret += android::base::StringPrintf("(%lu bytes): ", buf.size());
- std::vector<const char>::iterator iter = buf.end();
+ std::vector<char>::const_iterator iter = buf.end();
const unsigned max_chars = 50;
if (buf.size() > max_chars) {
iter = buf.begin() + max_chars;
diff --git a/fastboot/vendor_boot_img_utils_test.cpp b/fastboot/vendor_boot_img_utils_test.cpp
index 467c6e9..8107270 100644
--- a/fastboot/vendor_boot_img_utils_test.cpp
+++ b/fastboot/vendor_boot_img_utils_test.cpp
@@ -163,7 +163,7 @@
protected:
// |rel_path| is the relative path under test data directory.
TestFileHandle(const std::filesystem::path& rel_path)
- : abs_path_(std::move(std::filesystem::path(GetExecutableDirectory()) / rel_path)) {}
+ : abs_path_(std::filesystem::path(GetExecutableDirectory()) / rel_path) {}
// Given |read_fd|, the readonly fd on the test file, return an fd that's suitable for client
// to use. Implementation is responsible for managing the lifetime of the returned fd.
virtual android::base::Result<borrowed_fd> Transform(const std::filesystem::path& abs_path,
diff --git a/fs_mgr/fs_mgr.cpp b/fs_mgr/fs_mgr.cpp
index 76578dd..fbd990b 100644
--- a/fs_mgr/fs_mgr.cpp
+++ b/fs_mgr/fs_mgr.cpp
@@ -38,10 +38,8 @@
#include <array>
#include <chrono>
-#include <functional>
#include <map>
#include <memory>
-#include <numeric>
#include <string>
#include <string_view>
#include <thread>
@@ -66,6 +64,7 @@
#include <fs_mgr/file_wait.h>
#include <fs_mgr_overlayfs.h>
#include <fscrypt/fscrypt.h>
+#include <fstab/fstab.h>
#include <libdm/dm.h>
#include <libdm/loop_control.h>
#include <liblp/metadata_format.h>
@@ -82,7 +81,7 @@
#define F2FS_FSCK_BIN "/system/bin/fsck.f2fs"
#define MKSWAP_BIN "/system/bin/mkswap"
#define TUNE2FS_BIN "/system/bin/tune2fs"
-#define RESIZE2FS_BIN "/system/bin/resize2fs"
+#define RESIZE2FS_BIN "/system/bin/resize2fs"
#define FSCK_LOG_FILE "/dev/fscklogs/log"
@@ -138,8 +137,8 @@
static void log_fs_stat(const std::string& blk_device, int fs_stat) {
std::string msg =
android::base::StringPrintf("\nfs_stat,%s,0x%x\n", blk_device.c_str(), fs_stat);
- android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(FSCK_LOG_FILE, O_WRONLY | O_CLOEXEC |
- O_APPEND | O_CREAT, 0664)));
+ android::base::unique_fd fd(TEMP_FAILURE_RETRY(
+ open(FSCK_LOG_FILE, O_WRONLY | O_CLOEXEC | O_APPEND | O_CREAT, 0664)));
if (fd == -1 || !android::base::WriteStringToFd(msg, fd)) {
LWARNING << __FUNCTION__ << "() cannot log " << msg;
}
@@ -593,7 +592,7 @@
// Must give `-T now` to prevent last_fsck_time from growing too large,
// otherwise, tune2fs won't enable metadata_csum.
- const char* tune2fs_args[] = {TUNE2FS_BIN, "-O", "metadata_csum,64bit,extent",
+ const char* tune2fs_args[] = {TUNE2FS_BIN, "-O", "metadata_csum,64bit,extent",
"-T", "now", blk_device.c_str()};
const char* resize2fs_args[] = {RESIZE2FS_BIN, "-b", blk_device.c_str()};
@@ -1430,6 +1429,37 @@
return access(fs_mgr_metadata_encryption_in_progress_file_name(entry).c_str(), R_OK) == 0;
}
+static FstabEntry* LocateFormattableEntry(FstabEntry* const begin, FstabEntry* const end) {
+ if (begin == end) {
+ return nullptr;
+ }
+ const bool dev_option_enabled =
+ android::base::GetBoolProperty("ro.product.build.16k_page.enabled", false);
+ FstabEntry* f2fs_entry = nullptr;
+ for (auto iter = begin; iter != end && iter->blk_device == begin->blk_device; iter++) {
+ if (iter->fs_mgr_flags.formattable) {
+ if (getpagesize() != 4096 && is_f2fs(iter->fs_type) && dev_option_enabled) {
+ f2fs_entry = iter;
+ continue;
+ }
+ if (f2fs_entry) {
+ LOG(INFO) << "Skipping F2FS format for block device " << iter->blk_device << " @ "
+ << iter->mount_point
+ << " in non-4K mode for dev option enabled devices, "
+ "as these devices need to toggle between 4K/16K mode, and F2FS does "
+ "not support page_size != block_size configuration.";
+ }
+ return iter;
+ }
+ }
+ if (f2fs_entry) {
+ LOG(INFO) << "Using F2FS for " << f2fs_entry->blk_device << " @ " << f2fs_entry->mount_point
+ << " even though we are in non-4K mode. Device might require a data wipe after "
+ "going back to 4K mode, as F2FS does not support page_size != block_size";
+ }
+ return f2fs_entry;
+}
+
// When multiple fstab records share the same mount_point, it will try to mount each
// one in turn, and ignore any duplicates after a first successful mount.
// Returns -1 on error, and FS_MGR_MNTALL_* otherwise.
@@ -1540,8 +1570,8 @@
}
}
- int last_idx_inspected;
- int top_idx = i;
+ int last_idx_inspected = -1;
+ const int top_idx = i;
int attempted_idx = -1;
bool encryption_interrupted = WasMetadataEncryptionInterrupted(current_entry);
@@ -1591,7 +1621,8 @@
// Success! Go get the next one.
continue;
}
-
+ auto formattable_entry =
+ LocateFormattableEntry(fstab->data() + top_idx, fstab->data() + fstab->size());
// Mounting failed, understand why and retry.
wiped = partition_wiped(current_entry.blk_device.c_str());
if (mount_errno != EBUSY && mount_errno != EACCES &&
@@ -1619,12 +1650,12 @@
encryptable = FS_MGR_MNTALL_DEV_IS_METADATA_ENCRYPTED;
set_type_property(encryptable);
- if (!call_vdc({"cryptfs", "encryptFstab", current_entry.blk_device,
- current_entry.mount_point, "true" /* shouldFormat */,
- current_entry.fs_type,
- current_entry.fs_mgr_flags.is_zoned ? "true" : "false",
- std::to_string(current_entry.length),
- android::base::Join(current_entry.user_devices, ' ')},
+ if (!call_vdc({"cryptfs", "encryptFstab", formattable_entry->blk_device,
+ formattable_entry->mount_point, "true" /* shouldFormat */,
+ formattable_entry->fs_type,
+ formattable_entry->fs_mgr_flags.is_zoned ? "true" : "false",
+ std::to_string(formattable_entry->length),
+ android::base::Join(formattable_entry->user_devices, ' ')},
nullptr)) {
LERROR << "Encryption failed";
} else {
@@ -1633,7 +1664,7 @@
}
}
- if (fs_mgr_do_format(current_entry) == 0) {
+ if (fs_mgr_do_format(*formattable_entry) == 0) {
// Let's replay the mount actions.
i = top_idx - 1;
continue;
@@ -1749,12 +1780,12 @@
int ret = prepare_fs_for_mount(entry.blk_device, entry, mount_point);
// Wiped case doesn't require to try __mount below.
if (ret & FS_STAT_INVALID_MAGIC) {
- return FS_MGR_DOMNT_FAILED;
+ return FS_MGR_DOMNT_FAILED;
}
ret = __mount(entry.blk_device, mount_point, entry);
if (ret) {
- ret = (errno == EBUSY) ? FS_MGR_DOMNT_BUSY : FS_MGR_DOMNT_FAILED;
+ ret = (errno == EBUSY) ? FS_MGR_DOMNT_BUSY : FS_MGR_DOMNT_FAILED;
}
return ret;
diff --git a/fs_mgr/fs_mgr_priv.h b/fs_mgr/fs_mgr_priv.h
index 7e4d5e5..84e4924 100644
--- a/fs_mgr/fs_mgr_priv.h
+++ b/fs_mgr/fs_mgr_priv.h
@@ -80,10 +80,8 @@
using namespace std::chrono_literals;
-bool fs_mgr_set_blk_ro(const std::string& blockdev, bool readonly = true);
bool fs_mgr_is_device_unlocked();
-bool fs_mgr_is_ext4(const std::string& blk_device);
bool fs_mgr_is_f2fs(const std::string& blk_device);
bool fs_mgr_filesystem_available(const std::string& filesystem);
diff --git a/fs_mgr/include/fs_mgr.h b/fs_mgr/include/fs_mgr.h
index af5ae2d..9cfa93f 100644
--- a/fs_mgr/include/fs_mgr.h
+++ b/fs_mgr/include/fs_mgr.h
@@ -104,6 +104,12 @@
// returned. Otherwise, it will use the current slot.
std::string fs_mgr_get_super_partition_name(int slot = -1);
+// Set readonly for the block device
+bool fs_mgr_set_blk_ro(const std::string& blockdev, bool readonly = true);
+
+// Check if the block device has ext4 filesystem
+bool fs_mgr_is_ext4(const std::string& blk_device);
+
enum FsMgrUmountStatus : int {
SUCCESS = 0,
ERROR_UNKNOWN = 1 << 0,
diff --git a/fs_mgr/include/fs_mgr/roots.h b/fs_mgr/include/fs_mgr/roots.h
index 65c59cf..e19f9ad 100644
--- a/fs_mgr/include/fs_mgr/roots.h
+++ b/fs_mgr/include/fs_mgr/roots.h
@@ -29,6 +29,8 @@
// first match or nullptr.
FstabEntry* GetEntryForPath(Fstab* fstab, const std::string& path);
+std::vector<FstabEntry*> GetEntriesForPath(Fstab* fstab, const std::string& path);
+
// Make sure that the volume 'path' is on is mounted.
// * If 'mount_point' is nullptr, use mount point in fstab. Caller can call
// fs_mgr_ensure_path_unmounted() with the same 'path' argument to unmount.
diff --git a/fs_mgr/libfs_avb/avb_ops.cpp b/fs_mgr/libfs_avb/avb_ops.cpp
index cc19776..7f00839 100644
--- a/fs_mgr/libfs_avb/avb_ops.cpp
+++ b/fs_mgr/libfs_avb/avb_ops.cpp
@@ -34,6 +34,7 @@
#include <string>
+#include <android-base/logging.h>
#include <android-base/macros.h>
#include <android-base/strings.h>
#include <android-base/unique_fd.h>
diff --git a/fs_mgr/libfs_avb/avb_util.cpp b/fs_mgr/libfs_avb/avb_util.cpp
index 90b65ce..37c9eab 100644
--- a/fs_mgr/libfs_avb/avb_util.cpp
+++ b/fs_mgr/libfs_avb/avb_util.cpp
@@ -21,6 +21,7 @@
#include <array>
#include <sstream>
+#include <android-base/logging.h>
#include <android-base/file.h>
#include <android-base/strings.h>
#include <android-base/unique_fd.h>
diff --git a/fs_mgr/libfs_avb/fs_avb.cpp b/fs_mgr/libfs_avb/fs_avb.cpp
index be48de6..4e6aaf5 100644
--- a/fs_mgr/libfs_avb/fs_avb.cpp
+++ b/fs_mgr/libfs_avb/fs_avb.cpp
@@ -28,6 +28,7 @@
#include <vector>
#include <android-base/file.h>
+#include <android-base/logging.h>
#include <android-base/parseint.h>
#include <android-base/stringprintf.h>
#include <android-base/strings.h>
diff --git a/fs_mgr/libfs_avb/fs_avb_util.cpp b/fs_mgr/libfs_avb/fs_avb_util.cpp
index 5326226..a74aa25 100644
--- a/fs_mgr/libfs_avb/fs_avb_util.cpp
+++ b/fs_mgr/libfs_avb/fs_avb_util.cpp
@@ -20,6 +20,7 @@
#include <string>
#include <vector>
+#include <android-base/logging.h>
#include <android-base/strings.h>
#include <fstab/fstab.h>
#include <libavb/libavb.h>
diff --git a/fs_mgr/libfs_avb/tests/avb_util_test.cpp b/fs_mgr/libfs_avb/tests/avb_util_test.cpp
index ee83cda..85eeeb0 100644
--- a/fs_mgr/libfs_avb/tests/avb_util_test.cpp
+++ b/fs_mgr/libfs_avb/tests/avb_util_test.cpp
@@ -16,10 +16,11 @@
#include <endian.h>
+#include <random>
+
+#include <android-base/strings.h>
#include <android-base/unique_fd.h>
#include <base/files/file_util.h>
-#include <base/rand_util.h>
-#include <base/strings/string_util.h>
#include <libavb/libavb.h>
#include "avb_util.h"
@@ -70,7 +71,7 @@
std::string image_file_name = image_path.RemoveExtension().BaseName().value();
bool is_vbmeta_partition =
- base::StartsWith(image_file_name, "vbmeta", base::CompareCase::INSENSITIVE_ASCII);
+ android::base::StartsWithIgnoreCase(image_file_name, "vbmeta");
android::base::unique_fd fd(open(image_path.value().c_str(), O_RDWR | O_CLOEXEC));
EXPECT_TRUE(fd > 0);
@@ -603,7 +604,7 @@
std::string image_file_name = avb_image_path.RemoveExtension().BaseName().value();
base::FilePath extracted_vbmeta_path;
- if (base::StartsWith(image_file_name, "vbmeta", base::CompareCase::INSENSITIVE_ASCII)) {
+ if (android::base::StartsWithIgnoreCase(image_file_name, "vbmeta")) {
extracted_vbmeta_path = avb_image_path; // no need to extract if it's a vbmeta image.
} else {
extracted_vbmeta_path = ExtractVBMetaImage(avb_image_path, image_file_name + "-vbmeta.img");
@@ -727,7 +728,10 @@
// Introduces a new modification.
if (length > 0) {
- int modify_location = base::RandInt(offset, offset + length - 1);
+ // mersenne_twister_engine seeded with the default seed source.
+ static std::mt19937 gen(std::random_device{}());
+ std::uniform_int_distribution<> rand_distribution(offset, offset + length - 1);
+ int modify_location = rand_distribution(gen);
file_content[modify_location] ^= 0x80;
last_file_path = file_path.value();
last_modified_location = modify_location;
diff --git a/fs_mgr/libfs_avb/tests/basic_test.cpp b/fs_mgr/libfs_avb/tests/basic_test.cpp
index d49affb..e0d465e 100644
--- a/fs_mgr/libfs_avb/tests/basic_test.cpp
+++ b/fs_mgr/libfs_avb/tests/basic_test.cpp
@@ -20,7 +20,6 @@
#include <android-base/file.h>
#include <base/files/file_util.h>
-#include <base/strings/string_util.h>
namespace fs_avb_host_test {
diff --git a/fs_mgr/libfs_avb/tests/fs_avb_test.cpp b/fs_mgr/libfs_avb/tests/fs_avb_test.cpp
index 2c819a9..5f153f5 100644
--- a/fs_mgr/libfs_avb/tests/fs_avb_test.cpp
+++ b/fs_mgr/libfs_avb/tests/fs_avb_test.cpp
@@ -18,8 +18,8 @@
#include <stdlib.h>
#include <android-base/file.h>
+#include <android-base/strings.h>
#include <base/files/file_util.h>
-#include <base/strings/string_util.h>
#include <fs_avb/fs_avb.h>
#include <libavb/libavb.h>
@@ -49,7 +49,7 @@
// Only support modifying the flags in vbmeta*.img.
std::string image_file_name = vbmeta_image_path.RemoveExtension().BaseName().value();
- ASSERT_TRUE(base::StartsWith(image_file_name, "vbmeta", base::CompareCase::INSENSITIVE_ASCII));
+ ASSERT_TRUE(android::base::StartsWithIgnoreCase(image_file_name, "vbmeta"));
android::base::unique_fd fd(open(vbmeta_image_path.value().c_str(), O_RDWR | O_CLOEXEC));
EXPECT_TRUE(fd > 0);
diff --git a/fs_mgr/libfs_avb/tests/fs_avb_test_util.cpp b/fs_mgr/libfs_avb/tests/fs_avb_test_util.cpp
index 1c95cf0..28fdbc2 100644
--- a/fs_mgr/libfs_avb/tests/fs_avb_test_util.cpp
+++ b/fs_mgr/libfs_avb/tests/fs_avb_test_util.cpp
@@ -19,8 +19,9 @@
#include <stdlib.h>
#include <android-base/file.h>
+#include <android-base/strings.h>
+#include <android-base/stringprintf.h>
#include <base/files/file_util.h>
-#include <base/strings/string_util.h>
namespace fs_avb_host_test {
@@ -64,9 +65,7 @@
std::string vbmeta_digest_data;
EXPECT_TRUE(base::ReadFileToString(vbmeta_digest_path, &vbmeta_digest_data));
// Returns the trimmed digest.
- std::string trimmed_digest_data;
- base::TrimString(vbmeta_digest_data, " \t\n", &trimmed_digest_data);
- return trimmed_digest_data;
+ return android::base::Trim(vbmeta_digest_data);
}
base::FilePath BaseFsAvbTest::GenerateVBMetaImage(
@@ -91,7 +90,7 @@
// --chain_partitions
std::string chain_partition_options;
for (const auto& partition : chain_partitions) {
- chain_partition_options += base::StringPrintf(
+ chain_partition_options += android::base::StringPrintf(
" --chain_partition %s:%u:%s", partition.partition_name.c_str(),
partition.rollback_index_location, partition.key_blob_path.value().c_str());
}
diff --git a/fs_mgr/libfs_avb/tests/fs_avb_test_util.h b/fs_mgr/libfs_avb/tests/fs_avb_test_util.h
index ab1980b..fbda0e1 100644
--- a/fs_mgr/libfs_avb/tests/fs_avb_test_util.h
+++ b/fs_mgr/libfs_avb/tests/fs_avb_test_util.h
@@ -26,9 +26,9 @@
#include <string>
#include <vector>
+#include <android-base/stringprintf.h>
#include <android-base/unique_fd.h>
#include <base/files/file_path.h>
-#include <base/strings/stringprintf.h>
#include <fs_avb/types.h>
#include <gtest/gtest.h>
@@ -37,7 +37,7 @@
// the command exits normally with exit status |expected_exit_status|.
#define EXPECT_COMMAND(expected_exit_status, command_format, ...) \
do { \
- int rc = system(base::StringPrintf(command_format, ##__VA_ARGS__).c_str()); \
+ int rc = system(android::base::StringPrintf(command_format, ##__VA_ARGS__).c_str()); \
EXPECT_TRUE(WIFEXITED(rc)); \
EXPECT_EQ(WEXITSTATUS(rc), expected_exit_status); \
} while (0);
diff --git a/fs_mgr/libfs_avb/util.cpp b/fs_mgr/libfs_avb/util.cpp
index 7783d04..79c7b94 100644
--- a/fs_mgr/libfs_avb/util.cpp
+++ b/fs_mgr/libfs_avb/util.cpp
@@ -22,6 +22,7 @@
#include <thread>
+#include <android-base/logging.h>
#include <android-base/stringprintf.h>
#include <android-base/unique_fd.h>
#include <linux/fs.h>
diff --git a/fs_mgr/libfs_avb/util.h b/fs_mgr/libfs_avb/util.h
index 29d1e9c..5704560 100644
--- a/fs_mgr/libfs_avb/util.h
+++ b/fs_mgr/libfs_avb/util.h
@@ -20,12 +20,6 @@
#include <string>
#include <vector>
-#ifdef HOST_TEST
-#include <base/logging.h>
-#else
-#include <android-base/logging.h>
-#endif
-
#include <android-base/result.h>
using android::base::ErrnoError;
diff --git a/fs_mgr/libfstab/fstab.cpp b/fs_mgr/libfstab/fstab.cpp
index 21d2e2e..d344b2d 100644
--- a/fs_mgr/libfstab/fstab.cpp
+++ b/fs_mgr/libfstab/fstab.cpp
@@ -39,6 +39,10 @@
#include "fstab_priv.h"
#include "logging_macros.h"
+#if !defined(MS_LAZYTIME)
+#define MS_LAZYTIME (1 << 25)
+#endif
+
using android::base::EndsWith;
using android::base::ParseByteCount;
using android::base::ParseInt;
@@ -74,6 +78,7 @@
{"private", MS_PRIVATE},
{"slave", MS_SLAVE},
{"shared", MS_SHARED},
+ {"lazytime", MS_LAZYTIME},
{"defaults", 0},
};
diff --git a/fs_mgr/libfstab/fstab_priv.h b/fs_mgr/libfstab/fstab_priv.h
index 5105da0..73cb175 100644
--- a/fs_mgr/libfstab/fstab_priv.h
+++ b/fs_mgr/libfstab/fstab_priv.h
@@ -39,9 +39,6 @@
void ImportBootconfigFromString(const std::string& bootconfig,
const std::function<void(std::string, std::string)>& fn);
-bool GetBootconfigFromString(const std::string& bootconfig, const std::string& key,
- std::string* out);
-
void ImportKernelCmdlineFromString(const std::string& cmdline,
const std::function<void(std::string, std::string)>& fn);
diff --git a/fs_mgr/libfstab/include/fstab/fstab.h b/fs_mgr/libfstab/include/fstab/fstab.h
index 1696daf..21fe017 100644
--- a/fs_mgr/libfstab/include/fstab/fstab.h
+++ b/fs_mgr/libfstab/include/fstab/fstab.h
@@ -153,5 +153,8 @@
// Return the "other" slot for the given slot suffix.
std::string OtherSlotSuffix(const std::string& suffix);
+bool GetBootconfigFromString(const std::string& bootconfig, const std::string& key,
+ std::string* out);
+
} // namespace fs_mgr
} // namespace android
diff --git a/fs_mgr/libsnapshot/Android.bp b/fs_mgr/libsnapshot/Android.bp
index f297125..50efb03 100644
--- a/fs_mgr/libsnapshot/Android.bp
+++ b/fs_mgr/libsnapshot/Android.bp
@@ -91,6 +91,7 @@
"partition_cow_creator.cpp",
"return.cpp",
"utility.cpp",
+ "scratch_super.cpp",
],
}
@@ -110,6 +111,9 @@
static_libs: [
"libfs_mgr_binder",
],
+ whole_static_libs: [
+ "libselinux",
+ ],
}
cc_library {
@@ -128,6 +132,9 @@
static_libs: [
"libsnapshot_cow",
],
+ whole_static_libs: [
+ "libselinux",
+ ],
}
cc_library_static {
@@ -142,6 +149,7 @@
],
static_libs: [
"libfs_mgr",
+ "libselinux",
],
}
@@ -159,6 +167,9 @@
static_libs: [
"libfs_mgr",
],
+ whole_static_libs: [
+ "libselinux",
+ ],
}
cc_defaults {
@@ -241,6 +252,7 @@
"libfs_mgr",
"libgmock",
"libgtest",
+ "libselinux",
],
}
@@ -283,7 +295,6 @@
],
auto_gen_config: true,
require_root: true,
- compile_multilib: "first",
}
cc_test {
@@ -296,6 +307,15 @@
"vts",
"general-tests",
],
+ compile_multilib: "both",
+ multilib: {
+ lib32: {
+ suffix: "32",
+ },
+ lib64: {
+ suffix: "64",
+ },
+ },
test_options: {
min_shipping_api_level: 30,
},
@@ -313,6 +333,7 @@
test_suites: [
"general-tests",
],
+ compile_multilib: "64",
test_options: {
// Legacy VAB launched in Android R.
min_shipping_api_level: 30,
@@ -351,6 +372,7 @@
],
srcs: [
"snapshotctl.cpp",
+ "scratch_super.cpp",
],
static_libs: [
"libbrotli",
diff --git a/fs_mgr/libsnapshot/device_info.cpp b/fs_mgr/libsnapshot/device_info.cpp
index e0969f4..19f3e02 100644
--- a/fs_mgr/libsnapshot/device_info.cpp
+++ b/fs_mgr/libsnapshot/device_info.cpp
@@ -13,6 +13,7 @@
// limitations under the License.
#include "device_info.h"
+#include "scratch_super.h"
#include <android-base/logging.h>
#include <fs_mgr.h>
@@ -37,8 +38,24 @@
constexpr bool kIsRecovery = false;
#endif
+DeviceInfo::DeviceInfo() {
+ std::string scratch_device = android::snapshot::GetScratchOtaMetadataPartition();
+ if (!scratch_device.empty()) {
+ std::string scratch_metadata =
+ android::snapshot::MapScratchOtaMetadataPartition(scratch_device);
+ if (!scratch_metadata.empty()) {
+ SetMetadataDir(scratch_metadata);
+ SetTempMetadata();
+ }
+ }
+}
+
std::string DeviceInfo::GetMetadataDir() const {
- return "/metadata/ota"s;
+ return metadata_dir_;
+}
+
+void DeviceInfo::SetMetadataDir(const std::string& value) {
+ metadata_dir_ = value;
}
std::string DeviceInfo::GetSlotSuffix() const {
diff --git a/fs_mgr/libsnapshot/device_info.h b/fs_mgr/libsnapshot/device_info.h
index 9153abb..e93ec49 100644
--- a/fs_mgr/libsnapshot/device_info.h
+++ b/fs_mgr/libsnapshot/device_info.h
@@ -29,6 +29,7 @@
using MergeStatus = ::aidl::android::hardware::boot::MergeStatus;
public:
+ DeviceInfo();
std::string GetMetadataDir() const override;
std::string GetSlotSuffix() const override;
std::string GetOtherSlotSuffix() const override;
@@ -42,14 +43,19 @@
std::unique_ptr<IImageManager> OpenImageManager() const override;
bool IsFirstStageInit() const override;
android::dm::IDeviceMapper& GetDeviceMapper() override;
-
+ void SetMetadataDir(const std::string& value);
void set_first_stage_init(bool value) { first_stage_init_ = value; }
+ bool IsTempMetadata() const override { return temp_metadata_; }
+ void SetTempMetadata() { temp_metadata_ = true; }
private:
bool EnsureBootHal();
android::fs_mgr::PartitionOpener opener_;
bool first_stage_init_ = false;
+ // Default value
+ std::string metadata_dir_ = "/metadata/ota";
+ bool temp_metadata_ = false;
#ifdef LIBSNAPSHOT_USE_HAL
std::unique_ptr<::android::hal::BootControlClient> boot_control_;
#endif
diff --git a/fs_mgr/libsnapshot/include/libsnapshot/snapshot.h b/fs_mgr/libsnapshot/include/libsnapshot/snapshot.h
index deb2d6e..7ae55db 100644
--- a/fs_mgr/libsnapshot/include/libsnapshot/snapshot.h
+++ b/fs_mgr/libsnapshot/include/libsnapshot/snapshot.h
@@ -111,6 +111,7 @@
virtual bool IsFirstStageInit() const = 0;
virtual std::unique_ptr<IImageManager> OpenImageManager() const = 0;
virtual android::dm::IDeviceMapper& GetDeviceMapper() = 0;
+ virtual bool IsTempMetadata() const = 0;
// Helper method for implementing OpenImageManager.
std::unique_ptr<IImageManager> OpenImageManager(const std::string& gsid_dir) const;
@@ -329,6 +330,10 @@
// might be needed to perform first-stage mounts.
static bool IsSnapshotManagerNeeded();
+ // Map the temp OTA metadata partition from super
+ static bool MapTempOtaMetadataPartitionIfNeeded(
+ const std::function<bool(const std::string&)>& init);
+
// Helper function for second stage init to restorecon on the rollback indicator.
static std::string GetGlobalRollbackIndicatorPath();
diff --git a/fs_mgr/libsnapshot/include_test/libsnapshot/test_helpers.h b/fs_mgr/libsnapshot/include_test/libsnapshot/test_helpers.h
index 620b03c..1cd6651 100644
--- a/fs_mgr/libsnapshot/include_test/libsnapshot/test_helpers.h
+++ b/fs_mgr/libsnapshot/include_test/libsnapshot/test_helpers.h
@@ -79,7 +79,7 @@
: TestDeviceInfo(fake_super) {
set_slot_suffix(slot_suffix);
}
- std::string GetMetadataDir() const override { return "/metadata/ota/test"s; }
+ std::string GetMetadataDir() const override { return metadata_dir_; }
std::string GetSlotSuffix() const override { return slot_suffix_; }
std::string GetOtherSlotSuffix() const override { return slot_suffix_ == "_a" ? "_b" : "_a"; }
std::string GetSuperDevice([[maybe_unused]] uint32_t slot) const override { return "super"; }
@@ -120,6 +120,7 @@
void set_dm(android::dm::IDeviceMapper* dm) { dm_ = dm; }
MergeStatus merge_status() const { return merge_status_; }
+ bool IsTempMetadata() const override { return temp_metadata_; }
private:
std::string slot_suffix_ = "_a";
@@ -129,6 +130,8 @@
bool first_stage_init_ = false;
std::unordered_set<uint32_t> unbootable_slots_;
android::dm::IDeviceMapper* dm_ = nullptr;
+ std::string metadata_dir_ = "/metadata/ota/test";
+ bool temp_metadata_ = false;
};
class DeviceMapperWrapper : public android::dm::IDeviceMapper {
diff --git a/fs_mgr/libsnapshot/libsnapshot_cow/writer_v3.h b/fs_mgr/libsnapshot/libsnapshot_cow/writer_v3.h
index 871ed27..9e7cf7a2 100644
--- a/fs_mgr/libsnapshot/libsnapshot_cow/writer_v3.h
+++ b/fs_mgr/libsnapshot/libsnapshot_cow/writer_v3.h
@@ -82,7 +82,7 @@
CowOperationType type);
size_t GetCompressionFactor(const size_t blocks_to_compress, CowOperationType type) const;
- constexpr bool IsBlockAligned(const size_t size) {
+ constexpr bool IsBlockAligned(const uint64_t size) {
// These are the only block size supported. Block size beyond 256k
// may impact random read performance post OTA boot.
const size_t values[] = {4_KiB, 8_KiB, 16_KiB, 32_KiB, 64_KiB, 128_KiB, 256_KiB};
diff --git a/fs_mgr/libsnapshot/scratch_super.cpp b/fs_mgr/libsnapshot/scratch_super.cpp
new file mode 100644
index 0000000..93c4bbd
--- /dev/null
+++ b/fs_mgr/libsnapshot/scratch_super.cpp
@@ -0,0 +1,416 @@
+// Copyright (C) 2024 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 <dirent.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <linux/fs.h>
+#include <selinux/selinux.h>
+#include <stdlib.h>
+#include <sys/mount.h>
+#include <sys/stat.h>
+#include <sys/statvfs.h>
+#include <sys/types.h>
+#include <sys/vfs.h>
+#include <unistd.h>
+
+#include <android-base/file.h>
+#include <android-base/logging.h>
+#include <android-base/macros.h>
+#include <android-base/properties.h>
+#include <android-base/scopeguard.h>
+#include <android-base/strings.h>
+#include <android-base/unique_fd.h>
+#include <ext4_utils/ext4_utils.h>
+
+#include <libsnapshot/snapshot.h>
+
+#include <fs_mgr.h>
+#include <fs_mgr_dm_linear.h>
+#include <fstab/fstab.h>
+#include <liblp/builder.h>
+#include <storage_literals/storage_literals.h>
+#include <algorithm>
+#include <filesystem>
+#include <memory>
+#include <optional>
+#include <string>
+#include <vector>
+
+#include "device_info.h"
+#include "scratch_super.h"
+
+using namespace std::literals;
+using namespace android::dm;
+using namespace android::fs_mgr;
+using namespace android::storage_literals;
+
+namespace android {
+namespace snapshot {
+
+static bool UmountScratch() {
+ auto ota_dir = std::string(kOtaMetadataMount) + "/" + "ota";
+ std::error_code ec;
+
+ if (std::filesystem::remove_all(ota_dir, ec) == static_cast<std::uintmax_t>(-1)) {
+ LOG(ERROR) << "Failed to remove OTA directory: " << ec.message();
+ return false;
+ }
+
+ if (umount(kOtaMetadataMount) != 0) {
+ PLOG(ERROR) << "UmountScratch failed";
+ return false;
+ }
+
+ LOG(INFO) << "umount scratch_super success";
+ return true;
+}
+
+bool CleanupScratchOtaMetadataIfPresent(const ISnapshotManager::IDeviceInfo* info) {
+ if (!UmountScratch()) {
+ return false;
+ }
+
+ std::unique_ptr<MetadataBuilder> builder;
+ const auto partition_name = android::base::Basename(kOtaMetadataMount);
+ const std::vector<int> slots = {0, 1};
+
+ if (info == nullptr) {
+ info = new android::snapshot::DeviceInfo();
+ }
+
+ std::string super_device;
+ if (info->IsTestDevice()) {
+ super_device = "super";
+ } else {
+ super_device = kPhysicalDevice + fs_mgr_get_super_partition_name();
+ }
+ const auto& opener = info->GetPartitionOpener();
+ std::string slot_suffix = info->GetSlotSuffix();
+ // Walk both the slots and clean up metadata related to scratch space from
+ // both the slots.
+ for (auto slot : slots) {
+ std::unique_ptr<MetadataBuilder> builder = MetadataBuilder::New(opener, super_device, slot);
+ if (!builder) {
+ return false;
+ }
+
+ if (builder->FindPartition(partition_name) != nullptr) {
+ builder->RemovePartition(partition_name);
+ auto metadata = builder->Export();
+ if (!metadata) {
+ return false;
+ }
+ if (!UpdatePartitionTable(info->GetPartitionOpener(), super_device, *metadata.get(),
+ slot)) {
+ LOG(ERROR) << "UpdatePartitionTable failed for slot: " << slot;
+ return false;
+ }
+ if (DestroyLogicalPartition(partition_name)) {
+ LOG(INFO) << "CleanupScratchOtaMetadata success for slot: " << slot;
+ }
+ }
+ }
+
+ return true;
+}
+
+static bool SetupOTADirs() {
+ if (setfscreatecon(android::snapshot::kOtaMetadataFileContext)) {
+ PLOG(ERROR) << "setfscreatecon failed: " << android::snapshot::kOtaMetadataFileContext;
+ return false;
+ }
+ const auto ota_dir = std::string(kOtaMetadataMount) + "/" + "ota";
+ if (mkdir(ota_dir.c_str(), 0755) != 0 && errno != EEXIST) {
+ PLOG(ERROR) << "mkdir " << ota_dir;
+ return false;
+ }
+
+ const auto snapshot_dir = ota_dir + "/" + "snapshots";
+ if (mkdir(snapshot_dir.c_str(), 0755) != 0 && errno != EEXIST) {
+ PLOG(ERROR) << "mkdir " << snapshot_dir;
+ return false;
+ }
+ if (setfscreatecon(nullptr)) {
+ PLOG(ERROR) << "setfscreatecon null";
+ return false;
+ }
+ return true;
+}
+
+static bool MountScratch(const std::string& device_path) {
+ if (access(device_path.c_str(), R_OK | W_OK)) {
+ LOG(ERROR) << "Path does not exist or is not readwrite: " << device_path;
+ return false;
+ }
+
+ std::string filesystem_candidate;
+ if (fs_mgr_is_ext4(device_path)) {
+ filesystem_candidate = "ext4";
+ } else {
+ LOG(ERROR) << "Scratch partition is not ext4";
+ return false;
+ }
+ if (setfscreatecon(android::snapshot::kOtaMetadataFileContext)) {
+ PLOG(ERROR) << "setfscreatecon failed: " << android::snapshot::kOtaMetadataFileContext;
+ return false;
+ }
+ if (mkdir(kOtaMetadataMount, 0755) && (errno != EEXIST)) {
+ PLOG(ERROR) << "create " << kOtaMetadataMount;
+ return false;
+ }
+
+ android::fs_mgr::FstabEntry entry;
+ entry.blk_device = device_path;
+ entry.mount_point = kOtaMetadataMount;
+ entry.flags = MS_NOATIME;
+ entry.flags |= MS_SYNCHRONOUS;
+ entry.fs_options = "nodiscard";
+ fs_mgr_set_blk_ro(device_path, false);
+ entry.fs_mgr_flags.check = true;
+
+ bool mounted = false;
+ entry.fs_type = filesystem_candidate.c_str();
+ if (fs_mgr_do_mount_one(entry) == 0) {
+ mounted = true;
+ }
+
+ if (setfscreatecon(nullptr)) {
+ PLOG(ERROR) << "setfscreatecon null";
+ return false;
+ }
+ if (!mounted) {
+ rmdir(kOtaMetadataMount);
+ return false;
+ }
+
+ return true;
+}
+
+static bool MakeScratchFilesystem(const std::string& scratch_device) {
+ std::string fs_type;
+ std::string command;
+ if (!access(kMkExt4, X_OK)) {
+ fs_type = "ext4";
+ command = kMkExt4 + " -F -b 4096 -t ext4 -m 0 -O has_journal -M "s + kOtaMetadataMount;
+ } else {
+ LOG(ERROR) << "No supported mkfs command or filesystem driver available, supported "
+ "filesystems "
+ "are: f2fs, ext4";
+ return false;
+ }
+ command += " " + scratch_device + " >/dev/null 2>/dev/null </dev/null";
+ fs_mgr_set_blk_ro(scratch_device, false);
+ auto ret = system(command.c_str());
+ if (ret) {
+ LOG(ERROR) << "make " << fs_type << " filesystem on " << scratch_device
+ << " return=" << ret;
+ return false;
+ }
+ return true;
+}
+
+static bool CreateDynamicScratch(const ISnapshotManager::IDeviceInfo* info,
+ std::string* scratch_device) {
+ const auto partition_name = android::base::Basename(kOtaMetadataMount);
+ auto& dm = DeviceMapper::Instance();
+ if (info == nullptr) {
+ info = new android::snapshot::DeviceInfo();
+ }
+
+ std::string super_device;
+ if (info->IsTestDevice()) {
+ super_device = "super";
+ } else {
+ super_device = kPhysicalDevice + fs_mgr_get_super_partition_name();
+ }
+
+ bool partition_exists = dm.GetState(partition_name) != DmDeviceState::INVALID;
+ if (partition_exists) {
+ LOG(ERROR) << "Partition already exists: " << partition_name;
+ return false;
+ }
+
+ const auto& opener = info->GetPartitionOpener();
+ std::string slot_suffix = info->GetSlotSuffix();
+ int slot = SlotNumberForSlotSuffix(slot_suffix);
+ std::unique_ptr<MetadataBuilder> builder = MetadataBuilder::New(opener, super_device, slot);
+
+ if (!builder) {
+ LOG(ERROR) << "open " << super_device << " failed";
+ return false;
+ }
+
+ auto partition = builder->FindPartition(partition_name);
+ partition_exists = partition != nullptr;
+ if (partition_exists) {
+ LOG(ERROR) << "Partition exists in super metadata";
+ return false;
+ }
+
+ partition = builder->AddPartition(partition_name, LP_PARTITION_ATTR_NONE);
+ if (!partition) {
+ LOG(ERROR) << "AddPartition failed " << partition_name;
+ return false;
+ }
+
+ auto free_space = builder->AllocatableSpace() - builder->UsedSpace();
+ if (free_space < kOtaMetadataPartitionSize) {
+ LOG(ERROR) << "No space in super partition. Free space: " << free_space
+ << " Requested space: " << kOtaMetadataPartitionSize;
+ return false;
+ }
+
+ LOG(INFO) << "CreateDynamicScratch: free_space: " << free_space
+ << " scratch_size: " << kOtaMetadataPartitionSize << " slot_number: " << slot;
+
+ if (!builder->ResizePartition(partition, kOtaMetadataPartitionSize)) {
+ LOG(ERROR) << "ResizePartition failed: " << partition_name << " free_space: " << free_space
+ << " scratch_size: " << kOtaMetadataPartitionSize;
+ return false;
+ }
+
+ auto metadata = builder->Export();
+ CreateLogicalPartitionParams params;
+
+ if (!metadata ||
+ !UpdatePartitionTable(info->GetPartitionOpener(), super_device, *metadata.get(), slot)) {
+ LOG(ERROR) << "UpdatePartitionTable failed: " << partition_name;
+ return false;
+ }
+ params = {
+ .block_device = super_device,
+ .metadata_slot = slot,
+ .partition_name = partition_name,
+ .force_writable = true,
+ .timeout_ms = 10s,
+ .partition_opener = &info->GetPartitionOpener(),
+ };
+
+ if (!CreateLogicalPartition(params, scratch_device)) {
+ LOG(ERROR) << "CreateLogicalPartition failed";
+ return false;
+ }
+
+ LOG(INFO) << "Scratch device created successfully: " << *scratch_device << " slot: " << slot;
+ return true;
+}
+
+bool IsScratchOtaMetadataOnSuper() {
+ auto partition_name = android::base::Basename(kOtaMetadataMount);
+ auto source_slot = fs_mgr_get_slot_suffix();
+ auto source_slot_number = SlotNumberForSlotSuffix(source_slot);
+
+ const auto super_device =
+ kPhysicalDevice + fs_mgr_get_super_partition_name(!source_slot_number);
+
+ auto metadata = android::fs_mgr::ReadMetadata(super_device, !source_slot_number);
+ if (!metadata) {
+ return false;
+ }
+ auto partition = android::fs_mgr::FindPartition(*metadata.get(), partition_name);
+ if (!partition) {
+ return false;
+ }
+
+ auto& dm = DeviceMapper::Instance();
+ if (dm.GetState(partition_name) == DmDeviceState::ACTIVE) {
+ LOG(INFO) << "Partition: " << partition_name << " is active";
+ return true;
+ }
+
+ CreateLogicalPartitionParams params = {
+ .block_device = super_device,
+ .metadata = metadata.get(),
+ .partition = partition,
+ };
+
+ std::string scratch_path;
+ if (!CreateLogicalPartition(params, &scratch_path)) {
+ LOG(ERROR) << "Could not create logical partition: " << partition_name;
+ return false;
+ }
+ LOG(INFO) << "Scratch device: " << scratch_path << " created successfully";
+
+ return true;
+}
+
+std::string GetScratchOtaMetadataPartition() {
+ std::string device;
+ auto& dm = DeviceMapper::Instance();
+ auto partition_name = android::base::Basename(kOtaMetadataMount);
+
+ bool invalid_partition = (dm.GetState(partition_name) == DmDeviceState::INVALID);
+ if (!invalid_partition && dm.GetDmDevicePathByName(partition_name, &device)) {
+ return device;
+ }
+ return "";
+}
+
+static bool ScratchAlreadyMounted(const std::string& mount_point) {
+ android::fs_mgr::Fstab fstab;
+ if (!ReadFstabFromProcMounts(&fstab)) {
+ return false;
+ }
+ for (const auto& entry : GetEntriesForMountPoint(&fstab, mount_point)) {
+ if (entry->fs_type == "ext4") {
+ return true;
+ }
+ }
+ return false;
+}
+
+std::string MapScratchOtaMetadataPartition(const std::string& scratch_device) {
+ if (!ScratchAlreadyMounted(kOtaMetadataMount)) {
+ if (!MountScratch(scratch_device)) {
+ return "";
+ }
+ }
+
+ auto ota_dir = std::string(kOtaMetadataMount) + "/" + "ota";
+ if (access(ota_dir.c_str(), F_OK) != 0) {
+ return "";
+ }
+ return ota_dir;
+}
+
+// Entry point to create a scratch device on super partition
+// This will create a 1MB space in super. The space will be
+// from the current active slot. Ext4 filesystem will be created
+// on this scratch device and all the OTA related directories
+// will be created.
+bool CreateScratchOtaMetadataOnSuper(const ISnapshotManager::IDeviceInfo* info) {
+ std::string scratch_device;
+
+ if (!CreateDynamicScratch(info, &scratch_device)) {
+ LOG(ERROR) << "CreateDynamicScratch failed";
+ return false;
+ }
+ if (!MakeScratchFilesystem(scratch_device)) {
+ LOG(ERROR) << "MakeScratchFilesystem failed";
+ return false;
+ }
+ if (!MountScratch(scratch_device)) {
+ LOG(ERROR) << "MountScratch failed";
+ return false;
+ }
+ if (!SetupOTADirs()) {
+ LOG(ERROR) << "SetupOTADirs failed";
+ return false;
+ }
+ return true;
+}
+
+} // namespace snapshot
+} // namespace android
diff --git a/fs_mgr/libsnapshot/scratch_super.h b/fs_mgr/libsnapshot/scratch_super.h
new file mode 100644
index 0000000..3e6fe70
--- /dev/null
+++ b/fs_mgr/libsnapshot/scratch_super.h
@@ -0,0 +1,33 @@
+// Copyright (C) 2024 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
+
+namespace android {
+namespace snapshot {
+
+constexpr char kMkExt4[] = "/system/bin/mke2fs";
+constexpr char kOtaMetadataFileContext[] = "u:object_r:ota_metadata_file:s0";
+constexpr char kOtaMetadataMount[] = "/mnt/scratch_ota_metadata_super";
+const size_t kOtaMetadataPartitionSize = uint64_t(1 * 1024 * 1024);
+constexpr char kPhysicalDevice[] = "/dev/block/by-name/";
+
+bool IsScratchOtaMetadataOnSuper();
+std::string GetScratchOtaMetadataPartition();
+std::string MapScratchOtaMetadataPartition(const std::string& device);
+bool CreateScratchOtaMetadataOnSuper(const ISnapshotManager::IDeviceInfo* info = nullptr);
+bool CleanupScratchOtaMetadataIfPresent(const ISnapshotManager::IDeviceInfo* info = nullptr);
+
+} // namespace snapshot
+} // namespace android
diff --git a/fs_mgr/libsnapshot/snapshot.cpp b/fs_mgr/libsnapshot/snapshot.cpp
index 108fd90..6c3bedd 100644
--- a/fs_mgr/libsnapshot/snapshot.cpp
+++ b/fs_mgr/libsnapshot/snapshot.cpp
@@ -48,6 +48,7 @@
#include <libsnapshot/snapshot_stats.h>
#include "device_info.h"
#include "partition_cow_creator.h"
+#include "scratch_super.h"
#include "snapshot_metadata_updater.h"
#include "utility.h"
@@ -117,7 +118,11 @@
info = new DeviceInfo();
}
- return std::unique_ptr<SnapshotManager>(new SnapshotManager(info));
+ auto sm = std::unique_ptr<SnapshotManager>(new SnapshotManager(info));
+ if (info->IsTempMetadata()) {
+ LOG(INFO) << "Using temp metadata from super";
+ }
+ return sm;
}
std::unique_ptr<SnapshotManager> SnapshotManager::NewForFirstStageMount(IDeviceInfo* info) {
@@ -1110,6 +1115,13 @@
if (result.state == UpdateState::MergeFailed) {
AcknowledgeMergeFailure(result.failure_code);
}
+
+ if (result.state == UpdateState::MergeCompleted) {
+ if (device_->IsTempMetadata()) {
+ CleanupScratchOtaMetadataIfPresent();
+ }
+ }
+
if (result.state != UpdateState::Merging) {
// Either there is no merge, or the merge was finished, so no need
// to keep waiting.
@@ -2310,7 +2322,27 @@
}
bool SnapshotManager::IsSnapshotManagerNeeded() {
- return access(kBootIndicatorPath, F_OK) == 0;
+ if (access(kBootIndicatorPath, F_OK) == 0) {
+ return true;
+ }
+
+ if (IsScratchOtaMetadataOnSuper()) {
+ return true;
+ }
+
+ return false;
+}
+
+bool SnapshotManager::MapTempOtaMetadataPartitionIfNeeded(
+ const std::function<bool(const std::string&)>& init) {
+ auto device = android::snapshot::GetScratchOtaMetadataPartition();
+ if (!device.empty()) {
+ init(device);
+ if (android::snapshot::MapScratchOtaMetadataPartition(device).empty()) {
+ return false;
+ }
+ }
+ return true;
}
std::string SnapshotManager::GetGlobalRollbackIndicatorPath() {
@@ -2397,6 +2429,12 @@
continue;
}
+ if (GetPartitionName(partition) ==
+ android::base::Basename(android::snapshot::kOtaMetadataMount)) {
+ LOG(INFO) << "Partition: " << GetPartitionName(partition) << " skipping";
+ continue;
+ }
+
CreateLogicalPartitionParams params = {
.block_device = super_device,
.metadata = metadata.get(),
diff --git a/fs_mgr/libsnapshot/snapshot_stats.cpp b/fs_mgr/libsnapshot/snapshot_stats.cpp
index 9b6eb2c..8e9d9c5 100644
--- a/fs_mgr/libsnapshot/snapshot_stats.cpp
+++ b/fs_mgr/libsnapshot/snapshot_stats.cpp
@@ -25,7 +25,7 @@
SnapshotMergeStats* SnapshotMergeStats::GetInstance(SnapshotManager& parent) {
static SnapshotMergeStats g_instance(parent.GetMergeStateFilePath());
- CHECK(g_instance.path_ == parent.GetMergeStateFilePath());
+ CHECK_EQ(g_instance.path_, parent.GetMergeStateFilePath());
return &g_instance;
}
diff --git a/fs_mgr/libsnapshot/snapshot_test.cpp b/fs_mgr/libsnapshot/snapshot_test.cpp
index 16c247f..46c3a35 100644
--- a/fs_mgr/libsnapshot/snapshot_test.cpp
+++ b/fs_mgr/libsnapshot/snapshot_test.cpp
@@ -47,6 +47,7 @@
#include <android/snapshot/snapshot.pb.h>
#include <libsnapshot/test_helpers.h>
#include "partition_cow_creator.h"
+#include "scratch_super.h"
#include "utility.h"
// Mock classes are not used. Header included to ensure mocked class definition aligns with the
@@ -1342,6 +1343,15 @@
DynamicPartitionGroup* group_ = nullptr;
};
+TEST_F(SnapshotUpdateTest, SuperOtaMetadataTest) {
+ auto info = new TestDeviceInfo(fake_super);
+ ASSERT_TRUE(CreateScratchOtaMetadataOnSuper(info));
+ std::string scratch_device = GetScratchOtaMetadataPartition();
+ ASSERT_NE(scratch_device, "");
+ ASSERT_NE(MapScratchOtaMetadataPartition(scratch_device), "");
+ ASSERT_TRUE(CleanupScratchOtaMetadataIfPresent(info));
+}
+
// Test full update flow executed by update_engine. Some partitions uses super empty space,
// some uses images, and some uses both.
// Also test UnmapUpdateSnapshot unmaps everything.
diff --git a/fs_mgr/libsnapshot/snapshotctl.cpp b/fs_mgr/libsnapshot/snapshotctl.cpp
index 0158d4d..97a8cb2 100644
--- a/fs_mgr/libsnapshot/snapshotctl.cpp
+++ b/fs_mgr/libsnapshot/snapshotctl.cpp
@@ -16,7 +16,6 @@
#include <sysexits.h>
#include <unistd.h>
-
#include <chrono>
#include <filesystem>
#include <fstream>
@@ -46,6 +45,7 @@
#include <storage_literals/storage_literals.h>
#include "partition_cow_creator.h"
+#include "scratch_super.h"
#ifdef SNAPSHOTCTL_USERDEBUG_OR_ENG
#include <BootControlClient.h>
@@ -57,6 +57,8 @@
using android::base::LogdLogger;
using android::base::StderrLogger;
using android::base::TeeLogger;
+using namespace android::dm;
+using namespace android::fs_mgr;
using android::fs_mgr::CreateLogicalPartitionParams;
using android::fs_mgr::FindPartition;
using android::fs_mgr::GetPartitionSize;
@@ -97,7 +99,7 @@
#ifdef SNAPSHOTCTL_USERDEBUG_OR_ENG
class MapSnapshots {
public:
- MapSnapshots(std::string path = "");
+ MapSnapshots(std::string path = "", bool metadata_super = false);
bool CreateSnapshotDevice(std::string& partition_name, std::string& patch);
bool InitiateThreadedSnapshotWrite(std::string& pname, std::string& snapshot_patch);
bool FinishSnapshotWrites();
@@ -122,15 +124,12 @@
std::vector<std::string> patchfiles_;
chromeos_update_engine::DeltaArchiveManifest manifest_;
+ bool metadata_super_ = false;
};
-MapSnapshots::MapSnapshots(std::string path) {
- sm_ = SnapshotManager::New();
- if (!sm_) {
- std::cout << "Failed to create snapshotmanager";
- exit(1);
- }
+MapSnapshots::MapSnapshots(std::string path, bool metadata_super) {
snapshot_dir_path_ = path + "/";
+ metadata_super_ = metadata_super;
}
std::string MapSnapshots::GetGroupName(const android::fs_mgr::LpMetadata& pt,
@@ -150,6 +149,12 @@
}
bool MapSnapshots::PrepareUpdate() {
+ if (metadata_super_ && !CreateScratchOtaMetadataOnSuper()) {
+ LOG(ERROR) << "Failed to create OTA metadata on super";
+ return false;
+ }
+ sm_ = SnapshotManager::New();
+
auto source_slot = fs_mgr_get_slot_suffix();
auto source_slot_number = SlotNumberForSlotSuffix(source_slot);
auto super_source = fs_mgr_get_super_partition_name(source_slot_number);
@@ -234,7 +239,17 @@
bool MapSnapshots::GetCowDevicePath(std::string partition_name, std::string* cow_path) {
auto& dm = android::dm::DeviceMapper::Instance();
- std::string cow_device = partition_name + "-cow";
+
+ std::string cow_device = partition_name + "-cow-img";
+ if (metadata_super_) {
+ // If COW device exists on /data, then data wipe cannot be done.
+ if (dm.GetDmDevicePathByName(cow_device, cow_path)) {
+ LOG(ERROR) << "COW device exists on /data: " << *cow_path;
+ return false;
+ }
+ }
+
+ cow_device = partition_name + "-cow";
if (dm.GetDmDevicePathByName(cow_device, cow_path)) {
return true;
}
@@ -321,6 +336,12 @@
}
bool MapSnapshots::BeginUpdate() {
+ if (metadata_super_ && !CreateScratchOtaMetadataOnSuper()) {
+ LOG(ERROR) << "Failed to create OTA metadata on super";
+ return false;
+ }
+ sm_ = SnapshotManager::New();
+
lock_ = sm_->LockExclusive();
std::vector<std::string> snapshots;
sm_->ListSnapshots(lock_.get(), &snapshots);
@@ -470,10 +491,12 @@
}
bool MapSnapshots::UnmapCowImagePath(std::string& name) {
+ sm_ = SnapshotManager::New();
return sm_->UnmapCowImage(name);
}
bool MapSnapshots::DeleteSnapshots() {
+ sm_ = SnapshotManager::New();
lock_ = sm_->LockExclusive();
if (!sm_->RemoveAllUpdateState(lock_.get())) {
LOG(ERROR) << "Remove All Update State failed";
@@ -583,13 +606,19 @@
}
if (argc < 3) {
- std::cerr << " apply-update <directory location where snapshot patches are present>"
+ std::cerr << " apply-update <directory location where snapshot patches are present> {-w}"
" Apply the snapshots to the COW block device\n";
return false;
}
std::string path = std::string(argv[2]);
- MapSnapshots cow(path);
+ bool metadata_on_super = false;
+ if (argc == 4) {
+ if (std::string(argv[3]) == "-w") {
+ metadata_on_super = true;
+ }
+ }
+ MapSnapshots cow(path, metadata_on_super);
if (!cow.ApplyUpdate()) {
return false;
}
@@ -607,7 +636,7 @@
}
if (argc < 3) {
- std::cerr << " map-snapshots <directory location where snapshot patches are present>"
+ std::cerr << " map-snapshots <directory location where snapshot patches are present> {-w}"
" Map all snapshots based on patches present in the directory\n";
return false;
}
@@ -638,7 +667,14 @@
}
}
- MapSnapshots cow(path);
+ bool metadata_on_super = false;
+ if (argc == 4) {
+ if (std::string(argv[3]) == "-w") {
+ metadata_on_super = true;
+ }
+ }
+
+ MapSnapshots cow(path, metadata_on_super);
if (!cow.BeginUpdate()) {
LOG(ERROR) << "BeginUpdate failed";
return false;
diff --git a/fs_mgr/libsnapshot/snapuserd/Android.bp b/fs_mgr/libsnapshot/snapuserd/Android.bp
index efbcb5a..298fd9f 100644
--- a/fs_mgr/libsnapshot/snapuserd/Android.bp
+++ b/fs_mgr/libsnapshot/snapuserd/Android.bp
@@ -42,6 +42,7 @@
static_libs: [
"libcutils_sockets",
"libfs_mgr_file_wait",
+ "libdm",
],
shared_libs: [
"libbase",
@@ -169,7 +170,7 @@
recovery_available: true,
}
-// This target will install to /system/bin/snapuserd_ramdisk
+// This target will install to /system/bin/snapuserd_ramdisk
// It will also create a symblink on /system/bin/snapuserd that point to
// /system/bin/snapuserd_ramdisk .
// This way, init can check if generic ramdisk copy exists.
@@ -238,9 +239,19 @@
test_options: {
min_shipping_api_level: 30,
},
+
+ compile_multilib: "both",
+ multilib: {
+ lib32: {
+ suffix: "32",
+ },
+ lib64: {
+ suffix: "64",
+ },
+ },
+
auto_gen_config: true,
require_root: true,
- compile_multilib: "first",
}
cc_test {
@@ -248,7 +259,7 @@
defaults: ["snapuserd_test_defaults"],
host_supported: true,
test_suites: [
- "device-tests",
+ "general-tests",
],
test_options: {
test_runner_options: [
diff --git a/fs_mgr/libsnapshot/snapuserd/snapuserd_client.cpp b/fs_mgr/libsnapshot/snapuserd/snapuserd_client.cpp
index 789c980..ddefb9f 100644
--- a/fs_mgr/libsnapshot/snapuserd/snapuserd_client.cpp
+++ b/fs_mgr/libsnapshot/snapuserd/snapuserd_client.cpp
@@ -35,6 +35,7 @@
#include <android-base/properties.h>
#include <android-base/strings.h>
#include <fs_mgr/file_wait.h>
+#include <libdm/dm.h>
#include <snapuserd/snapuserd_client.h>
namespace android {
@@ -333,7 +334,21 @@
}
std::string SnapuserdClient::GetDaemonAliveIndicatorPath() {
- return "/metadata/ota/" + std::string(kDaemonAliveIndicator);
+ std::string metadata_dir;
+ std::string temp_metadata_mnt = "/mnt/scratch_ota_metadata_super";
+
+ auto& dm = ::android::dm::DeviceMapper::Instance();
+ auto partition_name = android::base::Basename(temp_metadata_mnt);
+
+ bool invalid_partition = (dm.GetState(partition_name) == dm::DmDeviceState::INVALID);
+ std::string temp_device;
+ if (!invalid_partition && dm.GetDmDevicePathByName(partition_name, &temp_device)) {
+ metadata_dir = temp_metadata_mnt + "/" + "ota/";
+ } else {
+ metadata_dir = "/metadata/ota/";
+ }
+
+ return metadata_dir + std::string(kDaemonAliveIndicator);
}
bool SnapuserdClient::IsTransitionedDaemonReady() {
diff --git a/fs_mgr/libsnapshot/snapuserd/user-space-merge/read_worker.h b/fs_mgr/libsnapshot/snapuserd/user-space-merge/read_worker.h
index 04b2736..378d809 100644
--- a/fs_mgr/libsnapshot/snapuserd/user-space-merge/read_worker.h
+++ b/fs_mgr/libsnapshot/snapuserd/user-space-merge/read_worker.h
@@ -57,7 +57,7 @@
bool ReadFromSourceDevice(const CowOperation* cow_op, void* buffer);
bool ReadDataFromBaseDevice(sector_t sector, void* buffer, size_t read_size);
- constexpr bool IsBlockAligned(size_t size) { return ((size & (BLOCK_SZ - 1)) == 0); }
+ constexpr bool IsBlockAligned(uint64_t size) { return ((size & (BLOCK_SZ - 1)) == 0); }
constexpr sector_t ChunkToSector(chunk_t chunk) { return chunk << CHUNK_SHIFT; }
constexpr chunk_t SectorToChunk(sector_t sector) { return sector >> CHUNK_SHIFT; }
diff --git a/fs_mgr/tests/fs_mgr_test.cpp b/fs_mgr/tests/fs_mgr_test.cpp
index bd3d6b5..6522c02 100644
--- a/fs_mgr/tests/fs_mgr_test.cpp
+++ b/fs_mgr/tests/fs_mgr_test.cpp
@@ -37,6 +37,10 @@
using namespace android::fs_mgr;
using namespace testing;
+#if !defined(MS_LAZYTIME)
+#define MS_LAZYTIME (1 << 25)
+#endif
+
namespace {
const std::string cmdline =
@@ -329,6 +333,7 @@
{"private", MS_PRIVATE},
{"slave", MS_SLAVE},
{"shared", MS_SHARED},
+ {"lazytime", MS_LAZYTIME},
{"defaults", 0},
{0, 0},
};
diff --git a/init/Android.bp b/init/Android.bp
index ed1f148..18a79d6 100644
--- a/init/Android.bp
+++ b/init/Android.bp
@@ -38,7 +38,6 @@
"capabilities.cpp",
"epoll.cpp",
"import_parser.cpp",
- "interface_utils.cpp",
"interprocess_fifo.cpp",
"keychords.cpp",
"parser.cpp",
@@ -85,10 +84,6 @@
"ueventd.cpp",
"ueventd_parser.cpp",
]
-init_host_sources = [
- "check_builtins.cpp",
- "host_import_parser.cpp",
-]
soong_config_module_type {
name: "libinit_cc_defaults",
@@ -190,7 +185,6 @@
"libext4_utils",
"libfs_mgr",
"libgsi",
- "libhidl-gen-utils",
"liblog",
"liblogwrap",
"liblp",
@@ -607,8 +601,6 @@
whole_static_libs: ["libcap"],
shared_libs: [
"libcutils",
- "libhidl-gen-utils",
- "libhidlmetadata",
"liblog",
"libprocessgroup",
"libprotobuf-cpp-lite",
@@ -616,9 +608,6 @@
proto: {
type: "lite",
},
- generated_headers: [
- "generated_stub_builtin_function_map",
- ],
target: {
android: {
enabled: false,
@@ -637,17 +626,43 @@
cc_binary {
name: "host_init_verifier",
defaults: ["init_host_defaults"],
- srcs: ["host_init_verifier.cpp"] + init_common_sources + init_host_sources,
+ srcs: [
+ "check_builtins.cpp",
+ "host_import_parser.cpp",
+ "host_init_verifier.cpp",
+ "interface_utils.cpp",
+ ] + init_common_sources,
generated_headers: [
"generated_android_ids",
+ "generated_stub_builtin_function_map",
],
+ shared_libs: [
+ "libhidl-gen-utils",
+ "libhidlmetadata",
+ ],
+}
+
+genrule {
+ name: "noop_builtin_function_map",
+ tool_files: ["host_builtin_map.py"],
+ out: ["noop_builtin_function_map.h"],
+ srcs: [
+ "builtins.cpp",
+ "noop_builtins.cpp",
+ ],
+ cmd: "$(location host_builtin_map.py) --builtins $(location builtins.cpp) --check_builtins $(location noop_builtins.cpp) > $(out)",
}
cc_library_host_static {
name: "libinit_host",
defaults: ["init_host_defaults"],
- srcs: init_common_sources + init_host_sources,
+ srcs: [
+ "noop_builtins.cpp",
+ ] + init_common_sources,
export_include_dirs: ["."],
+ generated_headers: [
+ "noop_builtin_function_map",
+ ],
proto: {
export_proto_headers: true,
},
diff --git a/init/README.md b/init/README.md
index 0bb26e8..560c528 100644
--- a/init/README.md
+++ b/init/README.md
@@ -501,9 +501,10 @@
reformatted here if it couldn't mount in first-stage init.
6. `post-fs-data-checkpointed` - Triggered when vold has completed committing a checkpoint
after an OTA update. Not triggered if checkpointing is not needed or supported.
- 7. `zygote-start` - Start the zygote.
- 8. `early-boot` - After zygote has started.
- 9. `boot` - After `early-boot` actions have completed.
+ 7. `bpf-progs-loaded` - Starts things that want to start ASAP but need eBPF (incl. netd)
+ 8. `zygote-start` - Start the zygote.
+ 9. `early-boot` - After zygote has started.
+ 10. `boot` - After `early-boot` actions have completed.
Commands
--------
@@ -636,7 +637,7 @@
Properties are expanded within _level_.
`mark_post_data`
-> Used to mark the point right after /data is mounted.
+> (This action is deprecated and no-op.)
`mkdir <path> [<mode>] [<owner>] [<group>] [encryption=<action>] [key=<key>]`
> Create a directory at _path_, optionally with the given mode, owner, and
@@ -745,6 +746,9 @@
fstab.${ro.hardware} or fstab.${ro.hardware.platform} will be scanned for
under /odm/etc, /vendor/etc, or / at runtime, in that order.
+`swapoff <path>`
+> Stops swapping to the file or block device specified by path.
+
`symlink <target> <path>`
> Create a symbolic link at _path_ with the value _target_
@@ -788,7 +792,6 @@
If the file does not exist, it will be created. If it does exist,
it will be truncated. Properties are expanded within _content_.
-
Imports
-------
`import <path>`
diff --git a/init/builtins.cpp b/init/builtins.cpp
index 1e81692..c4af5b5 100644
--- a/init/builtins.cpp
+++ b/init/builtins.cpp
@@ -36,6 +36,7 @@
#include <sys/resource.h>
#include <sys/socket.h>
#include <sys/stat.h>
+#include <sys/swap.h>
#include <sys/syscall.h>
#include <sys/system_properties.h>
#include <sys/time.h>
@@ -1171,8 +1172,7 @@
}
static Result<void> do_mark_post_data(const BuiltinArguments& args) {
- ServiceList::GetInstance().MarkPostData();
-
+ LOG(INFO) << "deprecated action `mark_post_data` called.";
return {};
}
@@ -1271,6 +1271,13 @@
return {};
}
+static Result<void> do_swapoff(const BuiltinArguments& args) {
+ if (!swapoff(args[1].c_str())) {
+ return ErrnoError() << "swapoff() failed";
+ }
+ return {};
+}
+
// Builtin-function-map start
const BuiltinFunctionMap& GetBuiltinFunctionMap() {
constexpr std::size_t kMax = std::numeric_limits<std::size_t>::max();
@@ -1326,6 +1333,7 @@
{"start", {1, 1, {false, do_start}}},
{"stop", {1, 1, {false, do_stop}}},
{"swapon_all", {0, 1, {false, do_swapon_all}}},
+ {"swapoff", {1, 1, {false, do_swapoff}}},
{"enter_default_mount_ns", {0, 0, {false, do_enter_default_mount_ns}}},
{"symlink", {2, 2, {true, do_symlink}}},
{"sysclktz", {1, 1, {false, do_sysclktz}}},
diff --git a/init/devices.cpp b/init/devices.cpp
index 5560c20..f2bb9d2 100644
--- a/init/devices.cpp
+++ b/init/devices.cpp
@@ -283,7 +283,7 @@
void DeviceHandler::MakeDevice(const std::string& path, bool block, int major, int minor,
const std::vector<std::string>& links) const {
- auto[mode, uid, gid] = GetDevicePermissions(path, links);
+ auto [mode, uid, gid] = GetDevicePermissions(path, links);
mode |= (block ? S_IFBLK : S_IFCHR);
std::string secontext;
@@ -330,11 +330,11 @@
if (gid != s.st_gid) {
new_group = gid;
}
- if (mode != s.st_mode) {
- if (chmod(path.c_str(), mode) != 0) {
- PLOG(ERROR) << "Cannot chmod " << path << " to " << mode;
+ if (mode != s.st_mode) {
+ if (chmod(path.c_str(), mode) != 0) {
+ PLOG(ERROR) << "Cannot chmod " << path << " to " << mode;
+ }
}
- }
} else {
PLOG(ERROR) << "Cannot stat " << path;
}
@@ -531,7 +531,7 @@
if (!ReadFileToString(boot_id_path, &boot_id)) {
PLOG(ERROR) << "Cannot duplicate ashmem device node. Failed to read " << boot_id_path;
return;
- };
+ }
boot_id = Trim(boot_id);
Uevent dup_ashmem_uevent = uevent;
@@ -542,10 +542,10 @@
}
void DeviceHandler::HandleUevent(const Uevent& uevent) {
- if (uevent.action == "add" || uevent.action == "change" ||
- uevent.action == "bind" || uevent.action == "online") {
- FixupSysPermissions(uevent.path, uevent.subsystem);
- }
+ if (uevent.action == "add" || uevent.action == "change" || uevent.action == "bind" ||
+ uevent.action == "online") {
+ FixupSysPermissions(uevent.path, uevent.subsystem);
+ }
// if it's not a /dev device, nothing to do
if (uevent.major < 0 || uevent.minor < 0) return;
diff --git a/init/first_stage_init.cpp b/init/first_stage_init.cpp
index bfe636b..e06a645 100644
--- a/init/first_stage_init.cpp
+++ b/init/first_stage_init.cpp
@@ -38,6 +38,7 @@
#include <android-base/logging.h>
#include <android-base/stringprintf.h>
#include <android/avf_cc_flags.h>
+#include <fs_mgr.h>
#include <modprobe/modprobe.h>
#include <private/android_filesystem_config.h>
@@ -303,6 +304,22 @@
return BootMode::NORMAL_MODE;
}
+static void MaybeResumeFromHibernation(const std::string& bootconfig) {
+ std::string hibernationResumeDevice;
+ android::fs_mgr::GetBootconfigFromString(bootconfig, "androidboot.hibernation_resume_device",
+ &hibernationResumeDevice);
+ if (!hibernationResumeDevice.empty()) {
+ android::base::unique_fd fd(open("/sys/power/resume", O_RDWR | O_CLOEXEC));
+ if (fd >= 0) {
+ if (!android::base::WriteStringToFd(hibernationResumeDevice, fd)) {
+ PLOG(ERROR) << "Failed to write to /sys/power/resume";
+ }
+ } else {
+ PLOG(ERROR) << "Failed to open /sys/power/resume";
+ }
+ }
+}
+
static std::unique_ptr<FirstStageMount> CreateFirstStageMount(const std::string& cmdline) {
auto ret = FirstStageMount::Create(cmdline);
if (ret.ok()) {
@@ -442,6 +459,8 @@
<< module_elapse_time.count() << " ms";
}
+ MaybeResumeFromHibernation(bootconfig);
+
std::unique_ptr<FirstStageMount> fsm;
bool created_devices = false;
diff --git a/init/first_stage_mount.cpp b/init/first_stage_mount.cpp
index 927b45f..ece430b 100644
--- a/init/first_stage_mount.cpp
+++ b/init/first_stage_mount.cpp
@@ -371,6 +371,14 @@
}
if (SnapshotManager::IsSnapshotManagerNeeded()) {
+ auto init_devices = [this](const std::string& device) -> bool {
+ if (android::base::StartsWith(device, "/dev/block/dm-")) {
+ return block_dev_init_.InitDmDevice(device);
+ }
+ return block_dev_init_.InitDevices({device});
+ };
+
+ SnapshotManager::MapTempOtaMetadataPartitionIfNeeded(init_devices);
auto sm = SnapshotManager::NewForFirstStageMount();
if (!sm) {
return false;
diff --git a/init/fuzzer/Android.bp b/init/fuzzer/Android.bp
index 5823932..8cfd597 100644
--- a/init/fuzzer/Android.bp
+++ b/init/fuzzer/Android.bp
@@ -30,7 +30,6 @@
shared_libs: [
"libbase",
"libfs_mgr",
- "libhidl-gen-utils",
"liblog",
"libprocessgroup",
"libselinux",
@@ -49,7 +48,6 @@
srcs: [
"init_parser_fuzzer.cpp",
],
- shared_libs: ["libhidlmetadata",],
defaults: [
"libinit_fuzzer_defaults",
],
diff --git a/init/fuzzer/init_parser_fuzzer.cpp b/init/fuzzer/init_parser_fuzzer.cpp
index dc76465..21b04f4 100644
--- a/init/fuzzer/init_parser_fuzzer.cpp
+++ b/init/fuzzer/init_parser_fuzzer.cpp
@@ -15,9 +15,7 @@
*/
#include <fuzzer/FuzzedDataProvider.h>
-#include <hidl/metadata.h>
#include <import_parser.h>
-#include <interface_utils.h>
#include <rlimit_parser.h>
using namespace android;
@@ -34,7 +32,6 @@
};
const int32_t kMaxBytes = 256;
-const std::string kValidInterfaces = "android.frameworks.vr.composer@2.0::IVrComposerClient";
class InitParserFuzzer {
public:
@@ -44,9 +41,6 @@
private:
void InvokeParser();
void InvokeLimitParser();
- void InvokeInterfaceUtils();
- InterfaceInheritanceHierarchyMap GenerateHierarchyMap();
- std::vector<HidlInterfaceMetadata> GenerateInterfaceMetadata();
FuzzedDataProvider fdp_;
};
@@ -64,60 +58,6 @@
}
}
-std::vector<HidlInterfaceMetadata> InitParserFuzzer::GenerateInterfaceMetadata() {
- std::vector<HidlInterfaceMetadata> random_interface;
- for (size_t idx = 0; idx < fdp_.ConsumeIntegral<size_t>(); ++idx) {
- HidlInterfaceMetadata metadata;
- metadata.name = fdp_.ConsumeRandomLengthString(kMaxBytes);
- for (size_t idx1 = 0; idx1 < fdp_.ConsumeIntegral<size_t>(); ++idx1) {
- metadata.inherited.push_back(fdp_.ConsumeRandomLengthString(kMaxBytes));
- }
- random_interface.push_back(metadata);
- }
- return random_interface;
-}
-
-InterfaceInheritanceHierarchyMap InitParserFuzzer::GenerateHierarchyMap() {
- InterfaceInheritanceHierarchyMap result;
- std::vector<HidlInterfaceMetadata> random_interface;
- if (fdp_.ConsumeBool()) {
- random_interface = GenerateInterfaceMetadata();
- } else {
- random_interface = HidlInterfaceMetadata::all();
- }
-
- for (const HidlInterfaceMetadata& iface : random_interface) {
- std::set<FQName> inherited_interfaces;
- for (const std::string& intf : iface.inherited) {
- FQName fqname;
- (void)fqname.setTo(intf);
- inherited_interfaces.insert(fqname);
- }
- FQName fqname;
- (void)fqname.setTo(iface.name);
- result[fqname] = inherited_interfaces;
- }
- return result;
-}
-
-void InitParserFuzzer::InvokeInterfaceUtils() {
- InterfaceInheritanceHierarchyMap hierarchy_map = GenerateHierarchyMap();
- SetKnownInterfaces(hierarchy_map);
- IsKnownInterface(fdp_.ConsumeRandomLengthString(kMaxBytes));
- std::set<std::string> interface_set;
- for (size_t idx = 0; idx < fdp_.ConsumeIntegral<size_t>(); ++idx) {
- auto set_interface_values = fdp_.PickValueInArray<const std::function<void()>>({
- [&]() {
- interface_set.insert(("aidl/" + fdp_.ConsumeRandomLengthString(kMaxBytes)));
- },
- [&]() { interface_set.insert(fdp_.ConsumeRandomLengthString(kMaxBytes)); },
- [&]() { interface_set.insert(kValidInterfaces); },
- });
- set_interface_values();
- }
- CheckInterfaceInheritanceHierarchy(interface_set, hierarchy_map);
-}
-
void InitParserFuzzer::InvokeParser() {
Parser parser;
std::string name = fdp_.ConsumeBool() ? fdp_.ConsumeRandomLengthString(kMaxBytes) : "import";
@@ -132,7 +72,6 @@
while (fdp_.remaining_bytes()) {
auto invoke_parser_fuzzer = fdp_.PickValueInArray<const std::function<void()>>({
[&]() { InvokeParser(); },
- [&]() { InvokeInterfaceUtils(); },
[&]() { InvokeLimitParser(); },
});
invoke_parser_fuzzer();
diff --git a/init/host_init_verifier.cpp b/init/host_init_verifier.cpp
index f746ab9..287857a 100644
--- a/init/host_init_verifier.cpp
+++ b/init/host_init_verifier.cpp
@@ -297,9 +297,7 @@
ActionManager& am = ActionManager::GetInstance();
ServiceList& sl = ServiceList::GetInstance();
Parser parser;
- parser.AddSectionParser("service",
- std::make_unique<ServiceParser>(&sl, GetSubcontext(),
- *interface_inheritance_hierarchy_map));
+ parser.AddSectionParser("service", std::make_unique<ServiceParser>(&sl, GetSubcontext()));
parser.AddSectionParser("on", std::make_unique<ActionParser>(&am, GetSubcontext()));
parser.AddSectionParser("import", std::make_unique<HostImportParser>());
@@ -317,11 +315,23 @@
return EXIT_FAILURE;
}
}
+
size_t failures = parser.parse_error_count() + am.CheckAllCommands() + sl.CheckAllCommands();
if (failures > 0) {
LOG(ERROR) << "Failed to parse init scripts with " << failures << " error(s).";
return EXIT_FAILURE;
}
+
+ for (const auto& service : sl) {
+ if (const auto& result = CheckInterfaceInheritanceHierarchy(
+ service->interfaces(), *interface_inheritance_hierarchy_map);
+ !result.ok()) {
+ LOG(ERROR) << service->filename() << ": invalid interface in service '"
+ << service->name() << "': " << result.error();
+ return EXIT_FAILURE;
+ }
+ }
+
return EXIT_SUCCESS;
}
diff --git a/init/init.cpp b/init/init.cpp
index 4878660..6c80899 100644
--- a/init/init.cpp
+++ b/init/init.cpp
@@ -268,8 +268,8 @@
Parser CreateParser(ActionManager& action_manager, ServiceList& service_list) {
Parser parser;
- parser.AddSectionParser("service", std::make_unique<ServiceParser>(
- &service_list, GetSubcontext(), std::nullopt));
+ parser.AddSectionParser("service",
+ std::make_unique<ServiceParser>(&service_list, GetSubcontext()));
parser.AddSectionParser("on", std::make_unique<ActionParser>(&action_manager, GetSubcontext()));
parser.AddSectionParser("import", std::make_unique<ImportParser>(&parser));
@@ -324,9 +324,7 @@
}
}
#endif // RECOVERY
- parser.AddSectionParser("service",
- std::make_unique<ServiceParser>(&service_list, subcontext,
- std::nullopt));
+ parser.AddSectionParser("service", std::make_unique<ServiceParser>(&service_list, subcontext));
parser.AddSectionParser("on", std::make_unique<ActionParser>(&action_manager, subcontext));
return parser;
diff --git a/init/init_test.cpp b/init/init_test.cpp
index 5088273..f280de9 100644
--- a/init/init_test.cpp
+++ b/init/init_test.cpp
@@ -62,8 +62,7 @@
Action::set_function_map(&test_function_map);
Parser parser;
- parser.AddSectionParser("service",
- std::make_unique<ServiceParser>(service_list, nullptr, std::nullopt));
+ parser.AddSectionParser("service", std::make_unique<ServiceParser>(service_list, nullptr));
parser.AddSectionParser("on", std::make_unique<ActionParser>(action_manager, nullptr));
parser.AddSectionParser("import", std::make_unique<ImportParser>(&parser));
@@ -625,8 +624,7 @@
ServiceList service_list;
Parser parser;
- parser.AddSectionParser("service",
- std::make_unique<ServiceParser>(&service_list, nullptr, std::nullopt));
+ parser.AddSectionParser("service", std::make_unique<ServiceParser>(&service_list, nullptr));
ASSERT_TRUE(parser.ParseConfig(tf.path));
@@ -657,8 +655,7 @@
ServiceList service_list;
Parser parser;
- parser.AddSectionParser("service",
- std::make_unique<ServiceParser>(&service_list, nullptr, std::nullopt));
+ parser.AddSectionParser("service", std::make_unique<ServiceParser>(&service_list, nullptr));
ASSERT_TRUE(parser.ParseConfig(tf.path));
ASSERT_EQ(1u, parser.parse_error_count());
diff --git a/init/interface_utils.cpp b/init/interface_utils.cpp
index 1b76bba..84407aa 100644
--- a/init/interface_utils.cpp
+++ b/init/interface_utils.cpp
@@ -39,27 +39,6 @@
return android::base::Join(fqname_strings, " ");
}
-} // namespace
-
-Result<void> CheckInterfaceInheritanceHierarchy(const std::set<std::string>& instances,
- const InterfaceInheritanceHierarchyMap& hierarchy) {
- std::set<FQName> interface_fqnames;
- for (const std::string& instance : instances) {
- // There is insufficient build-time information on AIDL interfaces to check them here
- // TODO(b/139307527): Rework how services store interfaces to avoid excess string parsing
- if (base::Split(instance, "/")[0] == "aidl") {
- continue;
- }
-
- FqInstance fqinstance;
- if (!fqinstance.setTo(instance)) {
- return Error() << "Unable to parse interface instance '" << instance << "'";
- }
- interface_fqnames.insert(fqinstance.getFqName());
- }
- return CheckInterfaceInheritanceHierarchy(interface_fqnames, hierarchy);
-}
-
Result<void> CheckInterfaceInheritanceHierarchy(const std::set<FQName>& interfaces,
const InterfaceInheritanceHierarchyMap& hierarchy) {
std::ostringstream error_stream;
@@ -90,6 +69,27 @@
return {};
}
+} // namespace
+
+Result<void> CheckInterfaceInheritanceHierarchy(const std::set<std::string>& instances,
+ const InterfaceInheritanceHierarchyMap& hierarchy) {
+ std::set<FQName> interface_fqnames;
+ for (const std::string& instance : instances) {
+ // There is insufficient build-time information on AIDL interfaces to check them here
+ // TODO(b/139307527): Rework how services store interfaces to avoid excess string parsing
+ if (base::Split(instance, "/")[0] == "aidl") {
+ continue;
+ }
+
+ FqInstance fqinstance;
+ if (!fqinstance.setTo(instance)) {
+ return Error() << "Unable to parse interface instance '" << instance << "'";
+ }
+ interface_fqnames.insert(fqinstance.getFqName());
+ }
+ return CheckInterfaceInheritanceHierarchy(interface_fqnames, hierarchy);
+}
+
std::optional<std::set<FQName>> known_interfaces;
void SetKnownInterfaces(const InterfaceInheritanceHierarchyMap& hierarchy) {
diff --git a/init/interface_utils.h b/init/interface_utils.h
index 4ca377f..214feda 100644
--- a/init/interface_utils.h
+++ b/init/interface_utils.h
@@ -34,8 +34,6 @@
// interface set. Uses the provided hierarchy data.
Result<void> CheckInterfaceInheritanceHierarchy(const std::set<std::string>& instances,
const InterfaceInheritanceHierarchyMap& hierarchy);
-Result<void> CheckInterfaceInheritanceHierarchy(const std::set<android::FQName>& interfaces,
- const InterfaceInheritanceHierarchyMap& hierarchy);
// Saves the set of known interfaces using the provided HIDL interface
// inheritance hierarchy.
diff --git a/init/keychords_test.cpp b/init/keychords_test.cpp
index 5789bf5..2b1d428 100644
--- a/init/keychords_test.cpp
+++ b/init/keychords_test.cpp
@@ -168,16 +168,16 @@
const std::vector<int> triple1_chord = {KEY_BACKSPACE, KEY_VOLUMEDOWN, KEY_VOLUMEUP};
const std::vector<int> triple2_chord = {KEY_VOLUMEDOWN, KEY_VOLUMEUP, KEY_BACK};
-const std::vector<const std::vector<int>> empty_chords;
-const std::vector<const std::vector<int>> chords = {
- escape_chord,
- triple1_chord,
- triple2_chord,
+const std::vector<std::vector<int>> empty_chords;
+const std::vector<std::vector<int>> chords = {
+ escape_chord,
+ triple1_chord,
+ triple2_chord,
};
class TestFrame {
public:
- TestFrame(const std::vector<const std::vector<int>>& chords, EventHandler* ev = nullptr);
+ TestFrame(const std::vector<std::vector<int>>& chords, EventHandler* ev = nullptr);
void RelaxForMs(std::chrono::milliseconds wait = 1ms);
@@ -194,16 +194,15 @@
std::string Format() const;
private:
- static std::string Format(const std::vector<const std::vector<int>>& chords);
+ static std::string Format(const std::vector<std::vector<int>>& chords);
Epoll epoll_;
Keychords keychords_;
- std::vector<const std::vector<int>> keycodes_;
+ std::vector<std::vector<int>> keycodes_;
EventHandler* ev_;
};
-TestFrame::TestFrame(const std::vector<const std::vector<int>>& chords, EventHandler* ev)
- : ev_(ev) {
+TestFrame::TestFrame(const std::vector<std::vector<int>>& chords, EventHandler* ev) : ev_(ev) {
if (!epoll_.Open().ok()) return;
for (const auto& keycodes : chords) keychords_.Register(keycodes);
keychords_.Start(&epoll_, [this](const std::vector<int>& keycodes) {
@@ -262,7 +261,7 @@
for (int retry = 1000; retry && !IsChord(chord); --retry) RelaxForMs();
}
-std::string TestFrame::Format(const std::vector<const std::vector<int>>& chords) {
+std::string TestFrame::Format(const std::vector<std::vector<int>>& chords) {
std::string ret("{");
if (!chords.empty()) {
ret += android::base::Join(chords.front(), ' ');
diff --git a/init/noop_builtins.cpp b/init/noop_builtins.cpp
new file mode 100644
index 0000000..c4e140b
--- /dev/null
+++ b/init/noop_builtins.cpp
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2024 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.
+ */
+
+// Note that parser will perform arity checks only.
+
+#include <android-base/result.h>
+
+#include "builtin_arguments.h"
+#include "builtins.h"
+
+namespace android::init {
+
+static base::Result<void> check_stub(const BuiltinArguments&) {
+ return {};
+}
+
+#include "noop_builtin_function_map.h"
+
+} // namespace android::init
diff --git a/init/property_service.cpp b/init/property_service.cpp
index 4d3742a..f2606e3 100644
--- a/init/property_service.cpp
+++ b/init/property_service.cpp
@@ -1251,6 +1251,16 @@
update_sys_usb_config();
}
+void PropertyLoadDerivedDefaults() {
+ const char* PAGE_PROP = "ro.boot.hardware.cpu.pagesize";
+ if (GetProperty(PAGE_PROP, "").empty()) {
+ std::string error;
+ if (PropertySetNoSocket(PAGE_PROP, std::to_string(getpagesize()), &error) != PROP_SUCCESS) {
+ LOG(ERROR) << "Could not set '" << PAGE_PROP << "' because: " << error;
+ }
+ }
+}
+
bool LoadPropertyInfoFromFile(const std::string& filename,
std::vector<PropertyInfoEntry>* property_infos) {
auto file_contents = std::string();
@@ -1421,6 +1431,7 @@
ExportKernelBootProps();
PropertyLoadBootDefaults();
+ PropertyLoadDerivedDefaults();
}
static void HandleInitSocket() {
diff --git a/init/reboot_test.cpp b/init/reboot_test.cpp
index b3d038d..b7a1cfd 100644
--- a/init/reboot_test.cpp
+++ b/init/reboot_test.cpp
@@ -103,8 +103,7 @@
"$selabel", GetSecurityContext(), false);
ServiceList& service_list = ServiceList::GetInstance();
Parser parser;
- parser.AddSectionParser("service",
- std::make_unique<ServiceParser>(&service_list, nullptr, std::nullopt));
+ parser.AddSectionParser("service", std::make_unique<ServiceParser>(&service_list, nullptr));
TemporaryFile tf;
ASSERT_TRUE(tf.fd != -1);
diff --git a/init/service.cpp b/init/service.cpp
index 31308a0..d76a5d5 100644
--- a/init/service.cpp
+++ b/init/service.cpp
@@ -653,8 +653,6 @@
SetMountNamespace();
}
- post_data_ = ServiceList::GetInstance().IsPostData();
-
LOG(INFO) << "starting service '" << name_ << "'...";
std::vector<Descriptor> descriptors;
diff --git a/init/service.h b/init/service.h
index 5e9af25..ae75553 100644
--- a/init/service.h
+++ b/init/service.h
@@ -144,8 +144,6 @@
std::optional<std::chrono::seconds> timeout_period() const { return timeout_period_; }
const std::vector<std::string>& args() const { return args_; }
bool is_updatable() const { return updatable_; }
- bool is_post_data() const { return post_data_; }
- bool is_from_apex() const { return base::StartsWith(filename_, "/apex/"); }
void set_oneshot(bool value) {
if (value) {
flags_ |= SVC_ONESHOT;
@@ -244,8 +242,6 @@
std::optional<MountNamespace> mount_namespace_;
- bool post_data_ = false;
-
std::optional<std::string> on_failure_reboot_target_;
std::string filename_;
diff --git a/init/service_list.cpp b/init/service_list.cpp
index 1c56e8a..e6cc2c9 100644
--- a/init/service_list.cpp
+++ b/init/service_list.cpp
@@ -68,14 +68,6 @@
}
}
-void ServiceList::MarkPostData() {
- post_data_ = true;
-}
-
-bool ServiceList::IsPostData() {
- return post_data_;
-}
-
void ServiceList::StartDelayedServices() {
for (const auto& name : delayed_service_names_) {
Service* service = FindService(name);
diff --git a/init/service_list.h b/init/service_list.h
index 44e8453..fd7fc05 100644
--- a/init/service_list.h
+++ b/init/service_list.h
@@ -83,19 +83,14 @@
auto end() const { return services_.end(); }
const std::vector<Service*> services_in_shutdown_order() const;
- void MarkPostData();
- bool IsPostData();
void DelayService(const Service& service);
void StartDelayedServices();
- void ResetState() { post_data_ = false; }
-
auto size() const { return services_.size(); }
private:
std::vector<std::unique_ptr<Service>> services_;
- bool post_data_ = false;
std::vector<std::string> delayed_service_names_;
};
diff --git a/init/service_parser.cpp b/init/service_parser.cpp
index 6781c70..e6f3af6 100644
--- a/init/service_parser.cpp
+++ b/init/service_parser.cpp
@@ -27,7 +27,6 @@
#include <android-base/parseint.h>
#include <android-base/properties.h>
#include <android-base/strings.h>
-#include <hidl-util/FQName.h>
#include <processgroup/processgroup.h>
#include <system/thread_defs.h>
@@ -201,24 +200,6 @@
Result<void> ServiceParser::ParseInterface(std::vector<std::string>&& args) {
const std::string& interface_name = args[1];
const std::string& instance_name = args[2];
-
- // AIDL services don't use fully qualified names and instead just use "interface aidl <name>"
- if (interface_name != "aidl") {
- FQName fq_name;
- if (!FQName::parse(interface_name, &fq_name)) {
- return Error() << "Invalid fully-qualified name for interface '" << interface_name
- << "'";
- }
-
- if (!fq_name.isFullyQualified()) {
- return Error() << "Interface name not fully-qualified '" << interface_name << "'";
- }
-
- if (fq_name.isValidValueName()) {
- return Error() << "Interface name must not be a value name '" << interface_name << "'";
- }
- }
-
const std::string fullname = interface_name + "/" + instance_name;
for (const auto& svc : *service_list_) {
@@ -702,14 +683,6 @@
}
}
- if (interface_inheritance_hierarchy_) {
- if (const auto& check_hierarchy_result = CheckInterfaceInheritanceHierarchy(
- service_->interfaces(), *interface_inheritance_hierarchy_);
- !check_hierarchy_result.ok()) {
- return Error() << check_hierarchy_result.error();
- }
- }
-
if (SelinuxGetVendorAndroidVersion() >= __ANDROID_API_R__) {
if ((service_->flags() & SVC_CRITICAL) != 0 && (service_->flags() & SVC_ONESHOT) != 0) {
return Error() << "service '" << service_->name()
diff --git a/init/service_parser.h b/init/service_parser.h
index 670a5c6..f06cfc4 100644
--- a/init/service_parser.h
+++ b/init/service_parser.h
@@ -18,7 +18,6 @@
#include <vector>
-#include "interface_utils.h"
#include "parser.h"
#include "service.h"
#include "service_list.h"
@@ -29,13 +28,8 @@
class ServiceParser : public SectionParser {
public:
- ServiceParser(
- ServiceList* service_list, Subcontext* subcontext,
- const std::optional<InterfaceInheritanceHierarchyMap>& interface_inheritance_hierarchy)
- : service_list_(service_list),
- subcontext_(subcontext),
- interface_inheritance_hierarchy_(interface_inheritance_hierarchy),
- service_(nullptr) {}
+ ServiceParser(ServiceList* service_list, Subcontext* subcontext)
+ : service_list_(service_list), subcontext_(subcontext), service_(nullptr) {}
Result<void> ParseSection(std::vector<std::string>&& args, const std::string& filename,
int line) override;
Result<void> ParseLineSection(std::vector<std::string>&& args, int line) override;
@@ -88,7 +82,6 @@
ServiceList* service_list_;
Subcontext* subcontext_;
- std::optional<InterfaceInheritanceHierarchyMap> interface_inheritance_hierarchy_;
std::unique_ptr<Service> service_;
std::string filename_;
};
diff --git a/init/service_test.cpp b/init/service_test.cpp
index a3590b5..53b53ed 100644
--- a/init/service_test.cpp
+++ b/init/service_test.cpp
@@ -253,8 +253,7 @@
"$selabel", GetSecurityContext(), false);
ServiceList& service_list = ServiceList::GetInstance();
Parser parser;
- parser.AddSectionParser("service",
- std::make_unique<ServiceParser>(&service_list, nullptr, std::nullopt));
+ parser.AddSectionParser("service", std::make_unique<ServiceParser>(&service_list, nullptr));
TemporaryFile tf;
ASSERT_GE(tf.fd, 0);
diff --git a/init/test_utils/service_utils.cpp b/init/test_utils/service_utils.cpp
index 6426ed9..7002a67 100644
--- a/init/test_utils/service_utils.cpp
+++ b/init/test_utils/service_utils.cpp
@@ -30,8 +30,7 @@
android::base::Result<ServiceInterfacesMap> GetOnDeviceServiceInterfacesMap() {
ServiceList& service_list = ServiceList::GetInstance();
Parser parser;
- parser.AddSectionParser("service",
- std::make_unique<ServiceParser>(&service_list, nullptr, std::nullopt));
+ parser.AddSectionParser("service", std::make_unique<ServiceParser>(&service_list, nullptr));
for (const auto& location : {
"/init.rc",
"/system/etc/init",
diff --git a/libcutils/include/private/android_filesystem_config.h b/libcutils/include/private/android_filesystem_config.h
index ea61cc2..b0bddf5 100644
--- a/libcutils/include/private/android_filesystem_config.h
+++ b/libcutils/include/private/android_filesystem_config.h
@@ -142,7 +142,9 @@
#define AID_SECURITY_LOG_WRITER 1091 /* write to security log */
#define AID_PRNG_SEEDER 1092 /* PRNG seeder daemon */
#define AID_UPROBESTATS 1093 /* uid for uprobestats */
-/* Changes to this file must be made in AOSP, *not* in internal branches. */
+#define AID_CROS_EC 1094 /* uid for accessing ChromeOS EC (cros_ec) */
+// Additions to this file must be made in AOSP, *not* in internal branches.
+// You will also need to update expect_ids() in bionic/tests/grp_pwd_test.cpp.
#define AID_SHELL 2000 /* adb and debug shell user */
#define AID_CACHE 2001 /* cache access */
@@ -157,7 +159,7 @@
#define AID_OEM_RESERVED_START 2900
#define AID_OEM_RESERVED_END 2999
-/* The 3000 series are intended for use as supplemental group id's only.
+/* The 3000 series are intended for use as supplemental group ids only.
* They indicate special Android capabilities that the kernel is aware of. */
#define AID_NET_BT_ADMIN 3001 /* bluetooth: create any socket */
#define AID_NET_BT 3002 /* bluetooth: create sco, rfcomm or l2cap sockets */
@@ -171,6 +173,8 @@
#define AID_UHID 3011 /* Allow read/write to /dev/uhid node */
#define AID_READTRACEFS 3012 /* Allow tracefs read */
#define AID_VIRTUALMACHINE 3013 /* Allows VMs to tune for performance*/
+// Additions to this file must be made in AOSP, *not* in internal branches.
+// You will also need to update expect_ids() in bionic/tests/grp_pwd_test.cpp.
/* The range 5000-5999 is also reserved for vendor partition. */
#define AID_OEM_RESERVED_2_START 5000
diff --git a/libprocessgroup/profiles/task_profiles.json b/libprocessgroup/profiles/task_profiles.json
index ec125aa..411c38c 100644
--- a/libprocessgroup/profiles/task_profiles.json
+++ b/libprocessgroup/profiles/task_profiles.json
@@ -728,6 +728,10 @@
{
"Name": "OtaProfiles",
"Profiles": [ "ServiceCapacityLow", "LowIoPriority", "HighEnergySaving" ]
+ },
+ {
+ "Name": "InputPolicy",
+ "Profiles": [ "MaxPerformance", "ProcessCapacityMax", "TimerSlackNormal" ]
}
]
}
diff --git a/libstats/expresslog/Android.bp b/libstats/expresslog/Android.bp
index 96ab59b..f70252a 100644
--- a/libstats/expresslog/Android.bp
+++ b/libstats/expresslog/Android.bp
@@ -1,4 +1,3 @@
-
//
// Copyright (C) 2023 The Android Open Source Project
//
@@ -16,6 +15,7 @@
//
package {
default_applicable_licenses: ["Android-Apache-2.0"],
+ default_team: "trendy_team_android_telemetry_client_infra",
}
cc_defaults {
@@ -28,6 +28,7 @@
cc_library {
name: "libexpresslog",
+ host_supported: true,
defaults: ["expresslog_defaults"],
cflags: [
"-DNAMESPACE_FOR_HASH_FUNCTIONS=farmhash",
@@ -74,6 +75,7 @@
cc_library_static {
name: "libstatslog_express",
+ host_supported: true,
generated_sources: ["statslog_express.cpp"],
generated_headers: ["statslog_express.h"],
export_generated_headers: ["statslog_express.h"],
@@ -119,5 +121,5 @@
],
shared_libs: [
"libstatssocket",
- ]
+ ],
}
diff --git a/libstats/pull_rust/Android.bp b/libstats/pull_rust/Android.bp
index 6902026..2a8939e 100644
--- a/libstats/pull_rust/Android.bp
+++ b/libstats/pull_rust/Android.bp
@@ -61,7 +61,6 @@
srcs: ["stats_pull.rs"],
rustlibs: [
"liblog_rust",
- "libonce_cell",
"libstatslog_rust_header",
"libstatspull_bindgen",
],
diff --git a/libstats/pull_rust/stats_pull.rs b/libstats/pull_rust/stats_pull.rs
index b2bebcc..03929e3 100644
--- a/libstats/pull_rust/stats_pull.rs
+++ b/libstats/pull_rust/stats_pull.rs
@@ -14,13 +14,12 @@
//! A Rust interface for the StatsD pull API.
-use once_cell::sync::Lazy;
use statslog_rust_header::{Atoms, Stat, StatsError};
use statspull_bindgen::*;
use std::collections::HashMap;
use std::convert::TryInto;
use std::os::raw::c_void;
-use std::sync::Mutex;
+use std::sync::{LazyLock, Mutex};
/// The return value of callbacks.
pub type StatsPullResult = Vec<Box<dyn Stat>>;
@@ -107,8 +106,8 @@
}
}
-static COOKIES: Lazy<Mutex<HashMap<i32, fn() -> StatsPullResult>>> =
- Lazy::new(|| Mutex::new(HashMap::new()));
+static COOKIES: LazyLock<Mutex<HashMap<i32, fn() -> StatsPullResult>>> =
+ LazyLock::new(|| Mutex::new(HashMap::new()));
/// # Safety
///
diff --git a/libsync/Android.bp b/libsync/Android.bp
index b6b4a6e..99c88cf 100644
--- a/libsync/Android.bp
+++ b/libsync/Android.bp
@@ -27,9 +27,6 @@
name: "libsync",
symbol_file: "libsync.map.txt",
first_version: "26",
- export_header_libs: [
- "libsync_headers",
- ],
}
cc_defaults {
diff --git a/libutils/Looper.cpp b/libutils/Looper.cpp
index e11d197..2541aa8 100644
--- a/libutils/Looper.cpp
+++ b/libutils/Looper.cpp
@@ -496,6 +496,21 @@
return 1;
}
+bool Looper::getFdStateDebug(int fd, int* ident, int* events, sp<LooperCallback>* cb, void** data) {
+ AutoMutex _l(mLock);
+ if (auto seqNumIt = mSequenceNumberByFd.find(fd); seqNumIt != mSequenceNumberByFd.cend()) {
+ if (auto reqIt = mRequests.find(seqNumIt->second); reqIt != mRequests.cend()) {
+ const Request& request = reqIt->second;
+ if (ident) *ident = request.ident;
+ if (events) *events = request.events;
+ if (cb) *cb = request.callback;
+ if (data) *data = request.data;
+ return true;
+ }
+ }
+ return false;
+}
+
int Looper::removeFd(int fd) {
AutoMutex _l(mLock);
const auto& it = mSequenceNumberByFd.find(fd);
diff --git a/libutils/Looper_test.cpp b/libutils/Looper_test.cpp
index c859f9c..a7a9987 100644
--- a/libutils/Looper_test.cpp
+++ b/libutils/Looper_test.cpp
@@ -410,6 +410,52 @@
<< "addFd should return -1 because arguments were invalid";
}
+class LooperCallbackStub final : public LooperCallback {
+ public:
+ LooperCallbackStub(std::function<int()> callback) : mCallback{callback} {}
+
+ int handleEvent(int /*fd*/, int /*events*/, void* /*data*/) override { return mCallback(); }
+
+ private:
+ std::function<int()> mCallback;
+};
+
+TEST_F(LooperTest, getFdStateDebug_WhenFdIsInRequests_ReturnsTrue) {
+ Pipe pipe;
+ const int fd = pipe.receiveFd;
+ constexpr int expectedIdent{Looper::POLL_CALLBACK};
+ sp<LooperCallback> expectedCallback =
+ sp<LooperCallbackStub>::make([]() constexpr -> int { return 0; });
+ void* expectedData = this;
+
+ EXPECT_EQ(1, mLooper->addFd(fd, expectedIdent, Looper::EVENT_INPUT, expectedCallback,
+ expectedData));
+
+ int ident;
+ int events;
+ sp<LooperCallback> callback;
+ void* data;
+
+ EXPECT_TRUE(mLooper->getFdStateDebug(fd, &ident, &events, &callback, &data));
+
+ EXPECT_EQ(ident, expectedIdent);
+ EXPECT_EQ(events, Looper::EVENT_INPUT);
+ EXPECT_EQ(callback, expectedCallback);
+ EXPECT_EQ(data, expectedData);
+}
+
+TEST_F(LooperTest, getFdStateDebug_WhenFdIsNotInRequests_ReturnsFalse) {
+ Pipe pipe;
+ const int notAddedFd = pipe.receiveFd;
+
+ int ident;
+ int events;
+ sp<LooperCallback> callback;
+ void* data;
+
+ EXPECT_FALSE(mLooper->getFdStateDebug(notAddedFd, &ident, &events, &callback, &data));
+}
+
TEST_F(LooperTest, RemoveFd_WhenCallbackNotAdded_ReturnsZero) {
int result = mLooper->removeFd(1);
diff --git a/libutils/Threads.cpp b/libutils/Threads.cpp
index 0b96ab0..d8d75ac 100644
--- a/libutils/Threads.cpp
+++ b/libutils/Threads.cpp
@@ -60,7 +60,7 @@
* We create it "detached", so it cleans up after itself.
*/
-typedef void* (*android_pthread_entry)(void*);
+typedef int (*android_pthread_entry)(void*);
#if defined(__ANDROID__)
struct thread_data_t {
@@ -88,6 +88,20 @@
};
#endif
+// Adapted from bionic's implmenetation of trampoline to make C11 thrd_create
+// work with pthread_create.
+struct libutil_thread_data {
+ android_pthread_entry _Nonnull entry_func;
+ void* _Nullable entry_func_arg;
+};
+
+static void* _Nonnull libutil_thread_trampoline(void* _Nonnull arg) {
+ libutil_thread_data *data_ptr = static_cast<libutil_thread_data*>(arg);
+ int result = data_ptr->entry_func(data_ptr->entry_func_arg);
+ delete data_ptr;
+ return reinterpret_cast<void*>(static_cast<uintptr_t>(result));
+}
+
void androidSetThreadName(const char* name) {
#if defined(__linux__)
// Mac OS doesn't have this, and we build libutil for the host too
@@ -145,8 +159,13 @@
errno = 0;
pthread_t thread;
+
+ libutil_thread_data* pthread_arg = new libutil_thread_data;
+ pthread_arg->entry_func = entryFunction;
+ pthread_arg->entry_func_arg = userData;
+
int result = pthread_create(&thread, &attr,
- (android_pthread_entry)entryFunction, userData);
+ libutil_thread_trampoline, pthread_arg);
pthread_attr_destroy(&attr);
if (result != 0) {
ALOGE("androidCreateRawThreadEtc failed (entry=%p, res=%d, %s)\n"
diff --git a/libutils/abi-dumps/arm64/source-based/libutils.so.lsdump b/libutils/abi-dumps/arm64/source-based/libutils.so.lsdump
index caea1a9..00609a9 100644
--- a/libutils/abi-dumps/arm64/source-based/libutils.so.lsdump
+++ b/libutils/abi-dumps/arm64/source-based/libutils.so.lsdump
@@ -6,7 +6,6 @@
"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"
},
{
@@ -14,7 +13,6 @@
"linker_set_key" : "_ZTIA1_Ds",
"name" : "char16_t[1]",
"referenced_type" : "_ZTIDs",
- "self_type" : "_ZTIA1_Ds",
"size" : 2,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -23,7 +21,6 @@
"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"
},
@@ -32,7 +29,6 @@
"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"
},
@@ -41,7 +37,6 @@
"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"
},
@@ -50,7 +45,6 @@
"linker_set_key" : "_ZTIA_f",
"name" : "float[]",
"referenced_type" : "_ZTIf",
- "self_type" : "_ZTIA_f",
"source_file" : "system/core/libsystem/include/system/graphics.h"
}
],
@@ -62,16 +56,12 @@
"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
},
{
@@ -80,8 +70,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIDs",
"name" : "char16_t",
- "referenced_type" : "_ZTIDs",
- "self_type" : "_ZTIDs",
"size" : 2
},
{
@@ -89,8 +77,6 @@
"is_integral" : true,
"linker_set_key" : "_ZTIa",
"name" : "signed char",
- "referenced_type" : "_ZTIa",
- "self_type" : "_ZTIa",
"size" : 1
},
{
@@ -99,8 +85,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIb",
"name" : "bool",
- "referenced_type" : "_ZTIb",
- "self_type" : "_ZTIb",
"size" : 1
},
{
@@ -109,24 +93,18 @@
"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
},
{
@@ -135,8 +113,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIh",
"name" : "unsigned char",
- "referenced_type" : "_ZTIh",
- "self_type" : "_ZTIh",
"size" : 1
},
{
@@ -144,8 +120,6 @@
"is_integral" : true,
"linker_set_key" : "_ZTIi",
"name" : "int",
- "referenced_type" : "_ZTIi",
- "self_type" : "_ZTIi",
"size" : 4
},
{
@@ -154,8 +128,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIj",
"name" : "unsigned int",
- "referenced_type" : "_ZTIj",
- "self_type" : "_ZTIj",
"size" : 4
},
{
@@ -163,8 +135,6 @@
"is_integral" : true,
"linker_set_key" : "_ZTIl",
"name" : "long",
- "referenced_type" : "_ZTIl",
- "self_type" : "_ZTIl",
"size" : 8
},
{
@@ -173,8 +143,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIm",
"name" : "unsigned long",
- "referenced_type" : "_ZTIm",
- "self_type" : "_ZTIm",
"size" : 8
},
{
@@ -182,8 +150,6 @@
"is_integral" : true,
"linker_set_key" : "_ZTIs",
"name" : "short",
- "referenced_type" : "_ZTIs",
- "self_type" : "_ZTIs",
"size" : 2
},
{
@@ -192,23 +158,17 @@
"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"
+ "name" : "void"
},
{
"alignment" : 8,
"is_integral" : true,
"linker_set_key" : "_ZTIx",
"name" : "long long",
- "referenced_type" : "_ZTIx",
- "self_type" : "_ZTIx",
"size" : 8
},
{
@@ -217,8 +177,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIy",
"name" : "unsigned long long",
- "referenced_type" : "_ZTIy",
- "self_type" : "_ZTIy",
"size" : 8
}
],
@@ -492,18 +450,6 @@
"name" : "_ZN7android27add_sysprop_change_callbackEPFvvEi"
},
{
- "binding" : "weak",
- "name" : "_ZN7android2spINS_14LooperCallbackEE5clearEv"
- },
- {
- "binding" : "weak",
- "name" : "_ZN7android2spINS_6LooperEEaSEOS2_"
- },
- {
- "binding" : "weak",
- "name" : "_ZN7android2spINS_6ThreadEE5clearEv"
- },
- {
"name" : "_ZN7android30get_report_sysprop_change_funcEv"
},
{
@@ -525,6 +471,9 @@
"name" : "_ZN7android6Looper14removeMessagesERKNS_2spINS_14MessageHandlerEEEi"
},
{
+ "name" : "_ZN7android6Looper15getFdStateDebugEiPiS1_PNS_2spINS_14LooperCallbackEEEPPv"
+ },
+ {
"name" : "_ZN7android6Looper17sendMessageAtTimeElRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE"
},
{
@@ -1047,78 +996,6 @@
"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"
},
{
@@ -1197,54 +1074,6 @@
"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_EEE4findImEENS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEERKT_"
- },
- {
- "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_EEE5eraseENS_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_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"
},
{
@@ -1442,67 +1271,6 @@
"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"
},
@@ -1517,8 +1285,6 @@
],
"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"
@@ -1534,8 +1300,6 @@
],
"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"
@@ -1583,8 +1347,6 @@
],
"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"
@@ -1824,8 +1586,6 @@
],
"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"
@@ -1861,8 +1621,6 @@
],
"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"
@@ -1894,8 +1652,6 @@
],
"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"
@@ -1947,8 +1703,6 @@
],
"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"
@@ -1980,8 +1734,6 @@
],
"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"
@@ -2021,8 +1773,6 @@
],
"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"
@@ -2114,8 +1864,6 @@
],
"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"
@@ -2179,8 +1927,6 @@
],
"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"
@@ -2208,8 +1954,6 @@
],
"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"
@@ -2237,8 +1981,6 @@
],
"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"
@@ -2262,8 +2004,6 @@
],
"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"
@@ -2279,8 +2019,6 @@
],
"linker_set_key" : "_ZTI25android_color_mode_v1_2_t",
"name" : "android_color_mode_v1_2_t",
- "referenced_type" : "_ZTI25android_color_mode_v1_2_t",
- "self_type" : "_ZTI25android_color_mode_v1_2_t",
"size" : 4,
"source_file" : "system/core/libsystem/include/system/graphics-base-v1.2.h",
"underlying_type" : "_ZTIj"
@@ -2320,8 +2058,6 @@
],
"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"
@@ -2349,8 +2085,6 @@
],
"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"
@@ -2390,8 +2124,6 @@
],
"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"
@@ -2407,8 +2139,6 @@
],
"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"
@@ -2436,8 +2166,6 @@
],
"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"
@@ -2493,8 +2221,6 @@
],
"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"
@@ -2518,8 +2244,6 @@
],
"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"
@@ -2543,8 +2267,7 @@
],
"linker_set_key" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE",
"name" : "android::VectorImpl::(unnamed)",
- "referenced_type" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h",
"underlying_type" : "_ZTIj"
@@ -2560,8 +2283,6 @@
],
"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"
@@ -2577,8 +2298,6 @@
],
"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"
@@ -2594,8 +2313,6 @@
],
"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"
@@ -2687,8 +2404,6 @@
],
"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"
@@ -2780,8 +2495,7 @@
],
"linker_set_key" : "_ZTIN7android15$ALREADY_EXISTSE",
"name" : "android::(unnamed)",
- "referenced_type" : "_ZTIN7android15$ALREADY_EXISTSE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/Errors.sdump",
- "self_type" : "_ZTIN7android15$ALREADY_EXISTSE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/Errors.sdump",
+ "self_type" : "_ZTIN7android15$ALREADY_EXISTSE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/Errors.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/Errors.h",
"underlying_type" : "_ZTIi"
@@ -2841,8 +2555,6 @@
],
"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"
@@ -2858,8 +2570,6 @@
],
"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"
@@ -2875,8 +2585,6 @@
],
"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"
@@ -2892,8 +2600,6 @@
],
"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"
@@ -2909,8 +2615,6 @@
],
"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"
@@ -2926,8 +2630,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIbE6$valueE",
"name" : "android::trait_trivial_copy<bool>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -2943,8 +2646,6 @@
],
"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"
@@ -2960,8 +2661,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIcE6$valueE",
"name" : "android::trait_trivial_copy<char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -2977,8 +2677,6 @@
],
"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"
@@ -2994,8 +2692,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIdE6$valueE",
"name" : "android::trait_trivial_copy<double>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3011,8 +2708,6 @@
],
"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"
@@ -3028,8 +2723,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIfE6$valueE",
"name" : "android::trait_trivial_copy<float>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3045,8 +2739,6 @@
],
"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"
@@ -3062,8 +2754,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIhE6$valueE",
"name" : "android::trait_trivial_copy<unsigned char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3079,8 +2770,6 @@
],
"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"
@@ -3096,8 +2785,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIiE6$valueE",
"name" : "android::trait_trivial_copy<int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3113,8 +2801,6 @@
],
"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"
@@ -3130,8 +2816,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIjE6$valueE",
"name" : "android::trait_trivial_copy<unsigned int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3147,8 +2832,6 @@
],
"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"
@@ -3164,8 +2847,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIlE6$valueE",
"name" : "android::trait_trivial_copy<long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3181,8 +2863,6 @@
],
"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"
@@ -3198,8 +2878,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyImE6$valueE",
"name" : "android::trait_trivial_copy<unsigned long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3215,8 +2894,6 @@
],
"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"
@@ -3232,8 +2909,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIsE6$valueE",
"name" : "android::trait_trivial_copy<short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3249,8 +2925,6 @@
],
"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"
@@ -3266,8 +2940,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyItE6$valueE",
"name" : "android::trait_trivial_copy<unsigned short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3283,8 +2956,6 @@
],
"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"
@@ -3300,8 +2971,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIvE6$valueE",
"name" : "android::trait_trivial_copy<void>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3317,8 +2987,6 @@
],
"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"
@@ -3334,8 +3002,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIxE6$valueE",
"name" : "android::trait_trivial_copy<long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3351,8 +3018,6 @@
],
"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"
@@ -3368,8 +3033,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIyE6$valueE",
"name" : "android::trait_trivial_copy<unsigned long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3385,8 +3049,6 @@
],
"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"
@@ -3402,8 +3064,6 @@
],
"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"
@@ -3419,8 +3079,6 @@
],
"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"
@@ -3436,8 +3094,6 @@
],
"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"
@@ -3453,8 +3109,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE",
"name" : "android::trait_trivial_ctor<bool>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3470,8 +3125,6 @@
],
"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"
@@ -3487,8 +3140,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE",
"name" : "android::trait_trivial_ctor<char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3504,8 +3156,6 @@
],
"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"
@@ -3521,8 +3171,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE",
"name" : "android::trait_trivial_ctor<double>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3538,8 +3187,6 @@
],
"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"
@@ -3555,8 +3202,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE",
"name" : "android::trait_trivial_ctor<float>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3572,8 +3218,6 @@
],
"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"
@@ -3589,8 +3233,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE",
"name" : "android::trait_trivial_ctor<unsigned char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3606,8 +3249,6 @@
],
"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"
@@ -3623,8 +3264,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE",
"name" : "android::trait_trivial_ctor<int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3640,8 +3280,6 @@
],
"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"
@@ -3657,8 +3295,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE",
"name" : "android::trait_trivial_ctor<unsigned int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3674,8 +3311,6 @@
],
"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"
@@ -3691,8 +3326,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE",
"name" : "android::trait_trivial_ctor<long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3708,8 +3342,6 @@
],
"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"
@@ -3725,8 +3357,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorImE6$valueE",
"name" : "android::trait_trivial_ctor<unsigned long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3742,8 +3373,6 @@
],
"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"
@@ -3759,8 +3388,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE",
"name" : "android::trait_trivial_ctor<short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3776,8 +3404,6 @@
],
"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"
@@ -3793,8 +3419,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorItE6$valueE",
"name" : "android::trait_trivial_ctor<unsigned short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3810,8 +3435,6 @@
],
"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"
@@ -3827,8 +3450,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE",
"name" : "android::trait_trivial_ctor<void>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3844,8 +3466,6 @@
],
"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"
@@ -3861,8 +3481,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE",
"name" : "android::trait_trivial_ctor<long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3878,8 +3497,6 @@
],
"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"
@@ -3895,8 +3512,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE",
"name" : "android::trait_trivial_ctor<unsigned long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3912,8 +3528,6 @@
],
"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"
@@ -3929,8 +3543,6 @@
],
"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"
@@ -3946,8 +3558,6 @@
],
"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"
@@ -3963,8 +3573,6 @@
],
"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"
@@ -3980,8 +3588,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE",
"name" : "android::trait_trivial_dtor<bool>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3997,8 +3604,6 @@
],
"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"
@@ -4014,8 +3619,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE",
"name" : "android::trait_trivial_dtor<char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4031,8 +3635,6 @@
],
"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"
@@ -4048,8 +3650,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE",
"name" : "android::trait_trivial_dtor<double>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4065,8 +3666,6 @@
],
"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"
@@ -4082,8 +3681,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE",
"name" : "android::trait_trivial_dtor<float>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4099,8 +3697,6 @@
],
"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"
@@ -4116,8 +3712,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE",
"name" : "android::trait_trivial_dtor<unsigned char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4133,8 +3728,6 @@
],
"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"
@@ -4150,8 +3743,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE",
"name" : "android::trait_trivial_dtor<int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4167,8 +3759,6 @@
],
"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"
@@ -4184,8 +3774,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE",
"name" : "android::trait_trivial_dtor<unsigned int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4201,8 +3790,6 @@
],
"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"
@@ -4218,8 +3805,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE",
"name" : "android::trait_trivial_dtor<long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4235,8 +3821,6 @@
],
"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"
@@ -4252,8 +3836,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorImE6$valueE",
"name" : "android::trait_trivial_dtor<unsigned long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4269,8 +3852,6 @@
],
"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"
@@ -4286,8 +3867,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE",
"name" : "android::trait_trivial_dtor<short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4303,8 +3883,6 @@
],
"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"
@@ -4320,8 +3898,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorItE6$valueE",
"name" : "android::trait_trivial_dtor<unsigned short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4337,8 +3914,6 @@
],
"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"
@@ -4354,8 +3929,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE",
"name" : "android::trait_trivial_dtor<void>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4371,8 +3945,6 @@
],
"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"
@@ -4388,8 +3960,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE",
"name" : "android::trait_trivial_dtor<long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4405,8 +3976,6 @@
],
"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"
@@ -4422,8 +3991,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE",
"name" : "android::trait_trivial_dtor<unsigned long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4439,8 +4007,6 @@
],
"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"
@@ -4456,8 +4022,6 @@
],
"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"
@@ -4473,8 +4037,6 @@
],
"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"
@@ -4490,8 +4052,6 @@
],
"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"
@@ -4507,8 +4067,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE",
"name" : "android::trait_trivial_move<android::String8>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h",
"underlying_type" : "_ZTIj"
@@ -4524,8 +4083,6 @@
],
"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/binder/include/utils/String16.h",
"underlying_type" : "_ZTIj"
@@ -4541,8 +4098,6 @@
],
"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"
@@ -4558,8 +4113,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIbE6$valueE",
"name" : "android::trait_trivial_move<bool>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4575,8 +4129,6 @@
],
"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"
@@ -4592,8 +4144,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIcE6$valueE",
"name" : "android::trait_trivial_move<char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4609,8 +4160,6 @@
],
"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"
@@ -4626,8 +4175,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIdE6$valueE",
"name" : "android::trait_trivial_move<double>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4643,8 +4191,6 @@
],
"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"
@@ -4660,8 +4206,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIfE6$valueE",
"name" : "android::trait_trivial_move<float>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4677,8 +4222,6 @@
],
"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"
@@ -4694,8 +4237,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIhE6$valueE",
"name" : "android::trait_trivial_move<unsigned char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4711,8 +4253,6 @@
],
"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"
@@ -4728,8 +4268,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIiE6$valueE",
"name" : "android::trait_trivial_move<int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4745,8 +4284,6 @@
],
"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"
@@ -4762,8 +4299,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIjE6$valueE",
"name" : "android::trait_trivial_move<unsigned int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4779,8 +4315,6 @@
],
"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"
@@ -4796,8 +4330,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIlE6$valueE",
"name" : "android::trait_trivial_move<long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4813,8 +4346,6 @@
],
"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"
@@ -4830,8 +4361,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveImE6$valueE",
"name" : "android::trait_trivial_move<unsigned long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4847,8 +4377,6 @@
],
"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"
@@ -4864,8 +4392,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIsE6$valueE",
"name" : "android::trait_trivial_move<short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4881,8 +4408,6 @@
],
"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"
@@ -4898,8 +4423,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveItE6$valueE",
"name" : "android::trait_trivial_move<unsigned short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4915,8 +4439,6 @@
],
"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"
@@ -4932,8 +4454,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIvE6$valueE",
"name" : "android::trait_trivial_move<void>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4949,8 +4470,6 @@
],
"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"
@@ -4966,8 +4485,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIxE6$valueE",
"name" : "android::trait_trivial_move<long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4983,8 +4501,6 @@
],
"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"
@@ -5000,8 +4516,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIyE6$valueE",
"name" : "android::trait_trivial_move<unsigned long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -5021,8 +4536,6 @@
],
"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"
@@ -5054,8 +4567,6 @@
],
"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"
@@ -5083,8 +4594,6 @@
],
"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"
@@ -5100,8 +4609,6 @@
],
"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"
@@ -5121,8 +4628,6 @@
],
"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"
@@ -5154,8 +4659,6 @@
],
"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"
@@ -5187,8 +4690,6 @@
],
"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"
@@ -5220,8 +4721,6 @@
],
"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"
@@ -5253,8 +4752,6 @@
],
"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"
@@ -5271,8 +4768,6 @@
],
"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"
@@ -5289,8 +4784,7 @@
],
"linker_set_key" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE",
"name" : "android::RefBase::(unnamed)",
- "referenced_type" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h",
"underlying_type" : "_ZTIj"
@@ -5315,8 +4809,6 @@
],
"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"
@@ -5341,8 +4833,7 @@
],
"linker_set_key" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE",
"name" : "android::RefBase::(unnamed)",
- "referenced_type" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h",
"underlying_type" : "_ZTIj"
@@ -5362,8 +4853,6 @@
],
"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"
@@ -5383,8 +4872,6 @@
],
"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"
@@ -5401,8 +4888,6 @@
],
"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"
@@ -5435,9 +4920,7 @@
"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"
},
{
@@ -5453,9 +4936,7 @@
"referenced_type" : "_ZTIPKv"
}
],
- "referenced_type" : "_ZTIFiPKvS0_E",
"return_type" : "_ZTIi",
- "self_type" : "_ZTIFiPKvS0_E",
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
{
@@ -5474,9 +4955,7 @@
"referenced_type" : "_ZTIPv"
}
],
- "referenced_type" : "_ZTIFiPKvS0_PvE",
"return_type" : "_ZTIi",
- "self_type" : "_ZTIFiPKvS0_PvE",
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
{
@@ -5489,9 +4968,7 @@
"referenced_type" : "_ZTIPv"
}
],
- "referenced_type" : "_ZTIFiPvE",
"return_type" : "_ZTIi",
- "self_type" : "_ZTIFiPvE",
"source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
},
{
@@ -5510,18 +4987,14 @@
"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"
}
],
@@ -6850,48 +6323,6 @@
"source_file" : "system/core/libutils/include/utils/misc.h"
},
{
- "function_name" : "android::sp<android::LooperCallback>::clear",
- "linker_set_key" : "_ZN7android2spINS_14LooperCallbackEE5clearEv",
- "parameters" :
- [
- {
- "is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android2spINS_14LooperCallbackEEE"
- }
- ],
- "return_type" : "_ZTIv",
- "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
- },
- {
- "function_name" : "android::sp<android::Looper>::operator=",
- "linker_set_key" : "_ZN7android2spINS_6LooperEEaSEOS2_",
- "parameters" :
- [
- {
- "is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android2spINS_6LooperEEE"
- },
- {
- "referenced_type" : "_ZTION7android2spINS_6LooperEEE"
- }
- ],
- "return_type" : "_ZTIRN7android2spINS_6LooperEEE",
- "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
- },
- {
- "function_name" : "android::sp<android::Thread>::clear",
- "linker_set_key" : "_ZN7android2spINS_6ThreadEE5clearEv",
- "parameters" :
- [
- {
- "is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android2spINS_6ThreadEEE"
- }
- ],
- "return_type" : "_ZTIv",
- "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
- },
- {
"function_name" : "android::LightRefBase_reportIncStrongRequireStrongFailed",
"linker_set_key" : "_ZN7android47LightRefBase_reportIncStrongRequireStrongFailedEPKv",
"parameters" :
@@ -6976,6 +6407,34 @@
"source_file" : "system/core/libutils/include/utils/Looper.h"
},
{
+ "function_name" : "android::Looper::getFdStateDebug",
+ "linker_set_key" : "_ZN7android6Looper15getFdStateDebugEiPiS1_PNS_2spINS_14LooperCallbackEEEPPv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPN7android2spINS_14LooperCallbackEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
"function_name" : "android::Looper::sendMessageAtTime",
"linker_set_key" : "_ZN7android6Looper17sendMessageAtTimeElRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE",
"parameters" :
@@ -7701,7 +7160,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -7730,7 +7189,7 @@
"parameters" :
[
{
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7749,7 +7208,7 @@
"parameters" :
[
{
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7768,7 +7227,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7784,7 +7243,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7800,7 +7259,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7816,7 +7275,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7832,7 +7291,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7848,7 +7307,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIb"
@@ -7868,7 +7327,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7885,7 +7344,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7902,7 +7361,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIi"
@@ -7919,7 +7378,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIj"
@@ -7939,7 +7398,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -7953,7 +7412,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -7967,7 +7426,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -7981,7 +7440,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -7995,7 +7454,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8008,7 +7467,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIm"
@@ -8025,7 +7484,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8044,7 +7503,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8060,7 +7519,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIm"
@@ -8076,7 +7535,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8089,7 +7548,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8108,7 +7567,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8121,7 +7580,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDi"
@@ -8140,7 +7599,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDs"
@@ -8159,7 +7618,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8175,7 +7634,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8194,10 +7653,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8210,7 +7669,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8226,7 +7685,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8245,10 +7704,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIi",
@@ -8263,7 +7722,7 @@
"referenced_type" : "_ZTIPKc"
}
],
- "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
{
@@ -8278,7 +7737,7 @@
"referenced_type" : "_ZTISt9__va_list"
}
],
- "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
{
@@ -8288,7 +7747,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8301,7 +7760,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8317,7 +7776,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDi"
@@ -8333,7 +7792,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDi"
@@ -8352,7 +7811,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDs"
@@ -8368,7 +7827,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDs"
@@ -8387,7 +7846,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8403,7 +7862,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8422,7 +7881,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIRKN7android8String16E"
@@ -8438,10 +7897,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8454,7 +7913,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8467,7 +7926,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDi"
@@ -8483,7 +7942,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDi"
@@ -8502,7 +7961,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDs"
@@ -8518,7 +7977,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDs"
@@ -8537,7 +7996,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8553,7 +8012,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8572,7 +8031,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIRKN7android8String16E"
@@ -8588,10 +8047,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8604,7 +8063,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8617,7 +8076,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8630,7 +8089,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -9005,7 +8464,7 @@
"referenced_type" : "_ZTIPN7android8String16E"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -9159,7 +8618,7 @@
"referenced_type" : "_ZTIPN7android8String16E"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -9571,7 +9030,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIm"
@@ -9587,7 +9046,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIm",
@@ -9601,7 +9060,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIm",
@@ -9740,415 +9199,19 @@
"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#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
}
],
- "return_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
{
@@ -10158,10 +9221,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
- "return_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
{
@@ -10187,7 +9250,7 @@
"referenced_type" : "_ZTIPKN7android7RefBase12weakref_typeE"
}
],
- "return_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
{
@@ -10210,7 +9273,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -10226,7 +9289,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIi",
@@ -10239,7 +9302,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -10255,7 +9318,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -10271,7 +9334,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -10288,10 +9351,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
- "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
{
@@ -10302,10 +9365,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
- "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
{
@@ -10315,7 +9378,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -10335,7 +9398,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIm",
@@ -10935,7 +9998,6 @@
"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/binder/include/utils/String16.h"
},
@@ -10943,8 +10005,7 @@
"alignment" : 8,
"linker_set_key" : "_ZTIRKN7android10VectorImplE",
"name" : "const android::VectorImpl &",
- "referenced_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIRKN7android10VectorImplE",
+ "referenced_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -10953,7 +10014,6 @@
"linker_set_key" : "_ZTIRKN7android16ReferenceRenamerE",
"name" : "const android::ReferenceRenamer &",
"referenced_type" : "_ZTIKN7android16ReferenceRenamerE",
- "self_type" : "_ZTIRKN7android16ReferenceRenamerE",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -10962,7 +10022,6 @@
"linker_set_key" : "_ZTIRKN7android16SortedVectorImplE",
"name" : "const android::SortedVectorImpl &",
"referenced_type" : "_ZTIKN7android16SortedVectorImplE",
- "self_type" : "_ZTIRKN7android16SortedVectorImplE",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -10971,7 +10030,6 @@
"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"
},
@@ -10980,7 +10038,6 @@
"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"
},
@@ -10989,7 +10046,6 @@
"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"
},
@@ -10998,7 +10054,6 @@
"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"
},
@@ -11007,16 +10062,14 @@
"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"
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.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"
},
@@ -11025,7 +10078,6 @@
"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"
},
@@ -11034,7 +10086,6 @@
"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"
},
@@ -11043,7 +10094,6 @@
"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"
},
@@ -11052,7 +10102,6 @@
"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"
},
@@ -11061,7 +10110,6 @@
"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"
},
@@ -11070,7 +10118,6 @@
"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"
},
@@ -11078,8 +10125,8 @@
"alignment" : 8,
"linker_set_key" : "_ZTIRKN7android7String8E",
"name" : "const android::String8 &",
- "referenced_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -11088,7 +10135,6 @@
"linker_set_key" : "_ZTIRKN7android8String1610StaticDataILm1EEE",
"name" : "const android::String16::StaticData<1> &",
"referenced_type" : "_ZTIKN7android8String1610StaticDataILm1EEE",
- "self_type" : "_ZTIRKN7android8String1610StaticDataILm1EEE",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11097,7 +10143,6 @@
"linker_set_key" : "_ZTIRKN7android8String16E",
"name" : "const android::String16 &",
"referenced_type" : "_ZTIKN7android8String16E",
- "self_type" : "_ZTIRKN7android8String16E",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11106,7 +10151,6 @@
"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"
},
@@ -11115,7 +10159,6 @@
"linker_set_key" : "_ZTIRKb",
"name" : "const bool &",
"referenced_type" : "_ZTIKb",
- "self_type" : "_ZTIRKb",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11124,7 +10167,6 @@
"linker_set_key" : "_ZTIRKd",
"name" : "const double &",
"referenced_type" : "_ZTIKd",
- "self_type" : "_ZTIRKd",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11133,7 +10175,6 @@
"linker_set_key" : "_ZTIRKf",
"name" : "const float &",
"referenced_type" : "_ZTIKf",
- "self_type" : "_ZTIRKf",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11142,7 +10183,6 @@
"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"
},
@@ -11151,7 +10191,6 @@
"linker_set_key" : "_ZTIRKi",
"name" : "const int &",
"referenced_type" : "_ZTIKi",
- "self_type" : "_ZTIRKi",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11160,7 +10199,6 @@
"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"
},
@@ -11169,7 +10207,6 @@
"linker_set_key" : "_ZTIRKl",
"name" : "const long &",
"referenced_type" : "_ZTIKl",
- "self_type" : "_ZTIRKl",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11178,7 +10215,6 @@
"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"
},
@@ -11187,7 +10223,6 @@
"linker_set_key" : "_ZTIRKs",
"name" : "const short &",
"referenced_type" : "_ZTIKs",
- "self_type" : "_ZTIRKs",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11196,7 +10231,6 @@
"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"
},
@@ -11204,8 +10238,7 @@
"alignment" : 8,
"linker_set_key" : "_ZTIRN7android10VectorImplE",
"name" : "android::VectorImpl &",
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIRN7android10VectorImplE",
+ "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11213,8 +10246,7 @@
"alignment" : 8,
"linker_set_key" : "_ZTIRN7android16SortedVectorImplE",
"name" : "android::SortedVectorImpl &",
- "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIRN7android16SortedVectorImplE",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11223,7 +10255,6 @@
"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"
},
@@ -11232,7 +10263,6 @@
"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"
},
@@ -11241,7 +10271,6 @@
"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"
},
@@ -11250,7 +10279,6 @@
"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"
},
@@ -11259,7 +10287,6 @@
"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"
},
@@ -11268,7 +10295,6 @@
"linker_set_key" : "_ZTIRN7android5MutexE",
"name" : "android::Mutex &",
"referenced_type" : "_ZTIN7android5MutexE",
- "self_type" : "_ZTIRN7android5MutexE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Mutex.h"
},
@@ -11277,7 +10303,6 @@
"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"
},
@@ -11286,7 +10311,6 @@
"linker_set_key" : "_ZTIRN7android6RWLockE",
"name" : "android::RWLock &",
"referenced_type" : "_ZTIN7android6RWLockE",
- "self_type" : "_ZTIRN7android6RWLockE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/RWLock.h"
},
@@ -11295,7 +10319,6 @@
"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"
},
@@ -11304,7 +10327,6 @@
"linker_set_key" : "_ZTIRN7android7FileMapE",
"name" : "android::FileMap &",
"referenced_type" : "_ZTIN7android7FileMapE",
- "self_type" : "_ZTIRN7android7FileMapE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -11313,7 +10335,6 @@
"linker_set_key" : "_ZTIRN7android7PrinterE",
"name" : "android::Printer &",
"referenced_type" : "_ZTIN7android7PrinterE",
- "self_type" : "_ZTIRN7android7PrinterE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -11322,7 +10343,6 @@
"linker_set_key" : "_ZTIRN7android7String8E",
"name" : "android::String8 &",
"referenced_type" : "_ZTIN7android7String8E",
- "self_type" : "_ZTIRN7android7String8E",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/String8.h"
},
@@ -11330,8 +10350,8 @@
"alignment" : 8,
"linker_set_key" : "_ZTIRN7android7String8E",
"name" : "android::String8 &",
- "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIRN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIRN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -11340,7 +10360,6 @@
"linker_set_key" : "_ZTIRN7android8String16E",
"name" : "android::String16 &",
"referenced_type" : "_ZTIN7android8String16E",
- "self_type" : "_ZTIRN7android8String16E",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11349,7 +10368,6 @@
"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"
},
@@ -11358,7 +10376,6 @@
"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"
},
@@ -11367,7 +10384,6 @@
"linker_set_key" : "_ZTIRb",
"name" : "bool &",
"referenced_type" : "_ZTIb",
- "self_type" : "_ZTIRb",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
}
@@ -11379,7 +10395,6 @@
"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"
},
@@ -11388,7 +10403,6 @@
"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"
},
@@ -11397,7 +10411,6 @@
"linker_set_key" : "_ZTIP3DIR",
"name" : "DIR *",
"referenced_type" : "_ZTI3DIR",
- "self_type" : "_ZTIP3DIR",
"size" : 8,
"source_file" : "system/libbase/include/android-base/unique_fd.h"
},
@@ -11406,7 +10419,6 @@
"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"
},
@@ -11415,7 +10427,6 @@
"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"
},
@@ -11424,7 +10435,6 @@
"linker_set_key" : "_ZTIPDs",
"name" : "char16_t *",
"referenced_type" : "_ZTIDs",
- "self_type" : "_ZTIPDs",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11433,7 +10443,6 @@
"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"
},
@@ -11442,7 +10451,6 @@
"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/binder/include/utils/VectorImpl.h"
},
@@ -11451,7 +10459,6 @@
"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/binder/include/utils/VectorImpl.h"
},
@@ -11460,7 +10467,6 @@
"linker_set_key" : "_ZTIPFiPvE",
"name" : "int (*)(void *)",
"referenced_type" : "_ZTIFiPvE",
- "self_type" : "_ZTIPFiPvE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
},
@@ -11469,7 +10475,6 @@
"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"
},
@@ -11478,7 +10483,6 @@
"linker_set_key" : "_ZTIPFvvE",
"name" : "void (*)()",
"referenced_type" : "_ZTIFvvE",
- "self_type" : "_ZTIPFvvE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/misc.h"
},
@@ -11487,7 +10491,6 @@
"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"
},
@@ -11496,7 +10499,6 @@
"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"
},
@@ -11505,7 +10507,6 @@
"linker_set_key" : "_ZTIPKDi",
"name" : "const char32_t *",
"referenced_type" : "_ZTIKDi",
- "self_type" : "_ZTIPKDi",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -11514,7 +10515,6 @@
"linker_set_key" : "_ZTIPKDs",
"name" : "const char16_t *",
"referenced_type" : "_ZTIKDs",
- "self_type" : "_ZTIPKDs",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11523,7 +10523,6 @@
"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"
},
@@ -11531,8 +10530,8 @@
"alignment" : 8,
"linker_set_key" : "_ZTIPKN7android10VectorImplE",
"name" : "const android::VectorImpl *",
- "referenced_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11541,7 +10540,6 @@
"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"
},
@@ -11550,7 +10548,6 @@
"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"
},
@@ -11559,7 +10556,6 @@
"linker_set_key" : "_ZTIPKN7android16SortedVectorImplE",
"name" : "const android::SortedVectorImpl *",
"referenced_type" : "_ZTIKN7android16SortedVectorImplE",
- "self_type" : "_ZTIPKN7android16SortedVectorImplE",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11568,7 +10564,6 @@
"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"
},
@@ -11577,7 +10572,6 @@
"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"
},
@@ -11586,7 +10580,6 @@
"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"
},
@@ -11595,7 +10588,6 @@
"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"
},
@@ -11604,7 +10596,6 @@
"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"
},
@@ -11613,7 +10604,6 @@
"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"
},
@@ -11622,7 +10612,6 @@
"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"
},
@@ -11631,7 +10620,6 @@
"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"
},
@@ -11640,7 +10628,6 @@
"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"
},
@@ -11649,7 +10636,6 @@
"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"
},
@@ -11658,7 +10644,6 @@
"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"
},
@@ -11667,7 +10652,6 @@
"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"
},
@@ -11676,7 +10660,6 @@
"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"
},
@@ -11685,7 +10668,6 @@
"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"
},
@@ -11694,7 +10676,6 @@
"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"
},
@@ -11703,7 +10684,6 @@
"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"
},
@@ -11712,7 +10692,6 @@
"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"
},
@@ -11721,7 +10700,6 @@
"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/binder/include/utils/Vector.h"
},
@@ -11730,7 +10708,6 @@
"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"
},
@@ -11739,7 +10716,6 @@
"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/binder/include/utils/RefBase.h"
},
@@ -11748,7 +10724,6 @@
"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"
},
@@ -11756,8 +10731,8 @@
"alignment" : 8,
"linker_set_key" : "_ZTIPKN7android7RefBaseE",
"name" : "const android::RefBase *",
- "referenced_type" : "_ZTIKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -11766,7 +10741,6 @@
"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"
},
@@ -11774,8 +10748,8 @@
"alignment" : 8,
"linker_set_key" : "_ZTIPKN7android7String8E",
"name" : "const android::String8 *",
- "referenced_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -11784,7 +10758,6 @@
"linker_set_key" : "_ZTIPKN7android8String16E",
"name" : "const android::String16 *",
"referenced_type" : "_ZTIKN7android8String16E",
- "self_type" : "_ZTIPKN7android8String16E",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11793,7 +10766,6 @@
"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"
},
@@ -11802,7 +10774,6 @@
"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"
},
@@ -11811,7 +10782,6 @@
"linker_set_key" : "_ZTIPKc",
"name" : "const char *",
"referenced_type" : "_ZTIKc",
- "self_type" : "_ZTIPKc",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -11820,7 +10790,6 @@
"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"
},
@@ -11829,7 +10798,6 @@
"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"
},
@@ -11838,7 +10806,6 @@
"linker_set_key" : "_ZTIPKv",
"name" : "const void *",
"referenced_type" : "_ZTIKv",
- "self_type" : "_ZTIPKv",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/LightRefBase.h"
},
@@ -11847,7 +10814,6 @@
"linker_set_key" : "_ZTIPN7android10LogPrinterE",
"name" : "android::LogPrinter *",
"referenced_type" : "_ZTIN7android10LogPrinterE",
- "self_type" : "_ZTIPN7android10LogPrinterE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -11855,8 +10821,7 @@
"alignment" : 8,
"linker_set_key" : "_ZTIPN7android10VectorImplE",
"name" : "android::VectorImpl *",
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android10VectorImplE",
+ "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11865,7 +10830,6 @@
"linker_set_key" : "_ZTIPN7android11ScopedTraceE",
"name" : "android::ScopedTrace *",
"referenced_type" : "_ZTIN7android11ScopedTraceE",
- "self_type" : "_ZTIPN7android11ScopedTraceE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Trace.h"
},
@@ -11874,7 +10838,6 @@
"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"
},
@@ -11883,7 +10846,6 @@
"linker_set_key" : "_ZTIPN7android12NativeHandleE",
"name" : "android::NativeHandle *",
"referenced_type" : "_ZTIN7android12NativeHandleE",
- "self_type" : "_ZTIPN7android12NativeHandleE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
},
@@ -11892,7 +10854,6 @@
"linker_set_key" : "_ZTIPN7android13PrefixPrinterE",
"name" : "android::PrefixPrinter *",
"referenced_type" : "_ZTIN7android13PrefixPrinterE",
- "self_type" : "_ZTIPN7android13PrefixPrinterE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -11901,7 +10862,6 @@
"linker_set_key" : "_ZTIPN7android14LooperCallbackE",
"name" : "android::LooperCallback *",
"referenced_type" : "_ZTIN7android14LooperCallbackE",
- "self_type" : "_ZTIPN7android14LooperCallbackE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
},
@@ -11910,7 +10870,6 @@
"linker_set_key" : "_ZTIPN7android14MessageHandlerE",
"name" : "android::MessageHandler *",
"referenced_type" : "_ZTIN7android14MessageHandlerE",
- "self_type" : "_ZTIPN7android14MessageHandlerE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/RefBase.h"
},
@@ -11919,7 +10878,6 @@
"linker_set_key" : "_ZTIPN7android14StaticString16ILm1EEE",
"name" : "android::StaticString16<1> *",
"referenced_type" : "_ZTIN7android14StaticString16ILm1EEE",
- "self_type" : "_ZTIPN7android14StaticString16ILm1EEE",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11928,7 +10886,6 @@
"linker_set_key" : "_ZTIPN7android14String8PrinterE",
"name" : "android::String8Printer *",
"referenced_type" : "_ZTIN7android14String8PrinterE",
- "self_type" : "_ZTIPN7android14String8PrinterE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -11937,7 +10894,6 @@
"linker_set_key" : "_ZTIPN7android16ReferenceRenamerE",
"name" : "android::ReferenceRenamer *",
"referenced_type" : "_ZTIN7android16ReferenceRenamerE",
- "self_type" : "_ZTIPN7android16ReferenceRenamerE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/RefBase.h"
},
@@ -11945,8 +10901,8 @@
"alignment" : 8,
"linker_set_key" : "_ZTIPN7android16ReferenceRenamerE",
"name" : "android::ReferenceRenamer *",
- "referenced_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -11954,8 +10910,7 @@
"alignment" : 8,
"linker_set_key" : "_ZTIPN7android16SortedVectorImplE",
"name" : "android::SortedVectorImpl *",
- "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android16SortedVectorImplE",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11964,7 +10919,6 @@
"linker_set_key" : "_ZTIPN7android18WeakMessageHandlerE",
"name" : "android::WeakMessageHandler *",
"referenced_type" : "_ZTIN7android18WeakMessageHandlerE",
- "self_type" : "_ZTIPN7android18WeakMessageHandlerE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Looper.h"
},
@@ -11973,7 +10927,6 @@
"linker_set_key" : "_ZTIPN7android19VirtualLightRefBaseE",
"name" : "android::VirtualLightRefBase *",
"referenced_type" : "_ZTIN7android19VirtualLightRefBaseE",
- "self_type" : "_ZTIPN7android19VirtualLightRefBaseE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/LightRefBase.h"
},
@@ -11981,8 +10934,8 @@
"alignment" : 8,
"linker_set_key" : "_ZTIPN7android19VirtualLightRefBaseE",
"name" : "android::VirtualLightRefBase *",
- "referenced_type" : "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/LightRefBase.h"
},
@@ -11991,7 +10944,6 @@
"linker_set_key" : "_ZTIPN7android20SimpleLooperCallbackE",
"name" : "android::SimpleLooperCallback *",
"referenced_type" : "_ZTIN7android20SimpleLooperCallbackE",
- "self_type" : "_ZTIPN7android20SimpleLooperCallbackE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
},
@@ -12000,7 +10952,6 @@
"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"
},
@@ -12009,7 +10960,6 @@
"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"
},
@@ -12018,7 +10968,6 @@
"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"
},
@@ -12027,7 +10976,6 @@
"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"
},
@@ -12036,7 +10984,6 @@
"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"
},
@@ -12045,7 +10992,6 @@
"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"
},
@@ -12054,7 +11000,6 @@
"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"
},
@@ -12063,7 +11008,6 @@
"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"
},
@@ -12072,7 +11016,6 @@
"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"
},
@@ -12081,7 +11024,6 @@
"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"
},
@@ -12090,7 +11032,6 @@
"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"
},
@@ -12099,7 +11040,6 @@
"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"
},
@@ -12108,7 +11048,6 @@
"linker_set_key" : "_ZTIPN7android5MutexE",
"name" : "android::Mutex *",
"referenced_type" : "_ZTIN7android5MutexE",
- "self_type" : "_ZTIPN7android5MutexE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Mutex.h"
},
@@ -12117,7 +11056,6 @@
"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"
},
@@ -12126,7 +11064,6 @@
"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"
},
@@ -12135,7 +11072,6 @@
"linker_set_key" : "_ZTIPN7android6LooperE",
"name" : "android::Looper *",
"referenced_type" : "_ZTIN7android6LooperE",
- "self_type" : "_ZTIPN7android6LooperE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
},
@@ -12144,7 +11080,6 @@
"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"
},
@@ -12153,7 +11088,6 @@
"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"
},
@@ -12162,7 +11096,6 @@
"linker_set_key" : "_ZTIPN7android6RWLockE",
"name" : "android::RWLock *",
"referenced_type" : "_ZTIN7android6RWLockE",
- "self_type" : "_ZTIPN7android6RWLockE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/RWLock.h"
},
@@ -12171,7 +11104,6 @@
"linker_set_key" : "_ZTIPN7android6ThreadE",
"name" : "android::Thread *",
"referenced_type" : "_ZTIN7android6ThreadE",
- "self_type" : "_ZTIPN7android6ThreadE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/RefBase.h"
},
@@ -12180,7 +11112,6 @@
"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"
},
@@ -12189,7 +11120,6 @@
"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"
},
@@ -12198,7 +11128,6 @@
"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"
},
@@ -12207,7 +11136,6 @@
"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/binder/include/utils/Vector.h"
},
@@ -12216,7 +11144,6 @@
"linker_set_key" : "_ZTIPN7android7FileMapE",
"name" : "android::FileMap *",
"referenced_type" : "_ZTIN7android7FileMapE",
- "self_type" : "_ZTIPN7android7FileMapE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -12225,7 +11152,6 @@
"linker_set_key" : "_ZTIPN7android7MessageE",
"name" : "android::Message *",
"referenced_type" : "_ZTIN7android7MessageE",
- "self_type" : "_ZTIPN7android7MessageE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Looper.h"
},
@@ -12234,7 +11160,6 @@
"linker_set_key" : "_ZTIPN7android7PrinterE",
"name" : "android::Printer *",
"referenced_type" : "_ZTIN7android7PrinterE",
- "self_type" : "_ZTIPN7android7PrinterE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -12243,7 +11168,6 @@
"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"
},
@@ -12252,7 +11176,6 @@
"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"
},
@@ -12260,8 +11183,8 @@
"alignment" : 8,
"linker_set_key" : "_ZTIPN7android7RefBase12weakref_typeE",
"name" : "android::RefBase::weakref_type *",
- "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -12270,7 +11193,6 @@
"linker_set_key" : "_ZTIPN7android7RefBaseE",
"name" : "android::RefBase *",
"referenced_type" : "_ZTIN7android7RefBaseE",
- "self_type" : "_ZTIPN7android7RefBaseE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/RefBase.h"
},
@@ -12278,8 +11200,8 @@
"alignment" : 8,
"linker_set_key" : "_ZTIPN7android7RefBaseE",
"name" : "android::RefBase *",
- "referenced_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -12288,7 +11210,6 @@
"linker_set_key" : "_ZTIPN7android7String8E",
"name" : "android::String8 *",
"referenced_type" : "_ZTIN7android7String8E",
- "self_type" : "_ZTIPN7android7String8E",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -12296,8 +11217,8 @@
"alignment" : 8,
"linker_set_key" : "_ZTIPN7android7String8E",
"name" : "android::String8 *",
- "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -12306,7 +11227,6 @@
"linker_set_key" : "_ZTIPN7android8String1610StaticDataILm1EEE",
"name" : "android::String16::StaticData<1> *",
"referenced_type" : "_ZTIN7android8String1610StaticDataILm1EEE",
- "self_type" : "_ZTIPN7android8String1610StaticDataILm1EEE",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -12315,7 +11235,6 @@
"linker_set_key" : "_ZTIPN7android8String16E",
"name" : "android::String16 *",
"referenced_type" : "_ZTIN7android8String16E",
- "self_type" : "_ZTIPN7android8String16E",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -12324,7 +11243,6 @@
"linker_set_key" : "_ZTIPN7android9ConditionE",
"name" : "android::Condition *",
"referenced_type" : "_ZTIN7android9ConditionE",
- "self_type" : "_ZTIPN7android9ConditionE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Condition.h"
},
@@ -12333,7 +11251,6 @@
"linker_set_key" : "_ZTIPN7android9FdPrinterE",
"name" : "android::FdPrinter *",
"referenced_type" : "_ZTIN7android9FdPrinterE",
- "self_type" : "_ZTIPN7android9FdPrinterE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -12342,7 +11259,6 @@
"linker_set_key" : "_ZTIPN7android9StopWatchE",
"name" : "android::StopWatch *",
"referenced_type" : "_ZTIN7android9StopWatchE",
- "self_type" : "_ZTIPN7android9StopWatchE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/StopWatch.h"
},
@@ -12351,7 +11267,6 @@
"linker_set_key" : "_ZTIPN7android9TokenizerE",
"name" : "android::Tokenizer *",
"referenced_type" : "_ZTIN7android9TokenizerE",
- "self_type" : "_ZTIPN7android9TokenizerE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Tokenizer.h"
},
@@ -12360,7 +11275,6 @@
"linker_set_key" : "_ZTIPPN7android9TokenizerE",
"name" : "android::Tokenizer **",
"referenced_type" : "_ZTIPN7android9TokenizerE",
- "self_type" : "_ZTIPPN7android9TokenizerE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Tokenizer.h"
},
@@ -12369,7 +11283,6 @@
"linker_set_key" : "_ZTIPPv",
"name" : "void **",
"referenced_type" : "_ZTIPv",
- "self_type" : "_ZTIPPv",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
},
@@ -12378,7 +11291,6 @@
"linker_set_key" : "_ZTIPc",
"name" : "char *",
"referenced_type" : "_ZTIc",
- "self_type" : "_ZTIPc",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -12387,7 +11299,6 @@
"linker_set_key" : "_ZTIPh",
"name" : "unsigned char *",
"referenced_type" : "_ZTIh",
- "self_type" : "_ZTIPh",
"size" : 8,
"source_file" : "system/core/libsystem/include/system/graphics.h"
},
@@ -12396,7 +11307,6 @@
"linker_set_key" : "_ZTIPi",
"name" : "int *",
"referenced_type" : "_ZTIi",
- "self_type" : "_ZTIPi",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/Looper.h"
},
@@ -12405,7 +11315,6 @@
"linker_set_key" : "_ZTIPm",
"name" : "unsigned long *",
"referenced_type" : "_ZTIm",
- "self_type" : "_ZTIPm",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/Unicode.h"
},
@@ -12414,7 +11323,6 @@
"linker_set_key" : "_ZTIPv",
"name" : "void *",
"referenced_type" : "_ZTIv",
- "self_type" : "_ZTIPv",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
}
@@ -12427,7 +11335,6 @@
"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/binder/include/utils/String16.h"
},
@@ -12437,7 +11344,6 @@
"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"
},
@@ -12447,7 +11353,6 @@
"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"
},
@@ -12457,7 +11362,6 @@
"linker_set_key" : "_ZTIKDi",
"name" : "const char32_t",
"referenced_type" : "_ZTIDi",
- "self_type" : "_ZTIKDi",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -12467,7 +11371,6 @@
"linker_set_key" : "_ZTIKDs",
"name" : "const char16_t",
"referenced_type" : "_ZTIDs",
- "self_type" : "_ZTIKDs",
"size" : 2,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -12476,8 +11379,8 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android10VectorImplE",
"name" : "const android::VectorImpl",
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 40,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -12487,7 +11390,6 @@
"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"
},
@@ -12497,7 +11399,6 @@
"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"
},
@@ -12507,7 +11408,6 @@
"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"
},
@@ -12516,8 +11416,7 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android16ReferenceRenamerE",
"name" : "const android::ReferenceRenamer",
- "referenced_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android16ReferenceRenamerE",
+ "referenced_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -12526,8 +11425,7 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android16SortedVectorImplE",
"name" : "const android::SortedVectorImpl",
- "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android16SortedVectorImplE",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 40,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -12537,7 +11435,6 @@
"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"
},
@@ -12547,7 +11444,6 @@
"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"
},
@@ -12557,7 +11453,6 @@
"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"
},
@@ -12567,7 +11462,6 @@
"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"
},
@@ -12577,7 +11471,6 @@
"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"
},
@@ -12587,7 +11480,6 @@
"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"
},
@@ -12597,7 +11489,6 @@
"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"
},
@@ -12607,7 +11498,6 @@
"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"
},
@@ -12617,7 +11507,6 @@
"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"
},
@@ -12627,7 +11516,6 @@
"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"
},
@@ -12637,7 +11525,6 @@
"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"
},
@@ -12647,7 +11534,6 @@
"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"
},
@@ -12657,7 +11543,6 @@
"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"
},
@@ -12667,7 +11552,6 @@
"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"
},
@@ -12677,7 +11561,6 @@
"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"
},
@@ -12687,7 +11570,6 @@
"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"
},
@@ -12697,7 +11579,6 @@
"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"
},
@@ -12707,7 +11588,6 @@
"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"
},
@@ -12717,7 +11597,6 @@
"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/binder/include/utils/Vector.h"
},
@@ -12727,7 +11606,6 @@
"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"
},
@@ -12737,7 +11615,6 @@
"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"
},
@@ -12746,8 +11623,7 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android7RefBase12weakref_typeE",
"name" : "const android::RefBase::weakref_type",
- "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android7RefBase12weakref_typeE",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -12756,8 +11632,8 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android7RefBaseE",
"name" : "const android::RefBase",
- "referenced_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 16,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -12767,7 +11643,6 @@
"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"
},
@@ -12776,8 +11651,8 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android7String8E",
"name" : "const android::String8",
- "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -12787,7 +11662,6 @@
"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"
},
@@ -12797,7 +11671,6 @@
"linker_set_key" : "_ZTIKN7android8String1610StaticDataILm1EEE",
"name" : "const android::String16::StaticData<1>",
"referenced_type" : "_ZTIN7android8String1610StaticDataILm1EEE",
- "self_type" : "_ZTIKN7android8String1610StaticDataILm1EEE",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -12807,7 +11680,6 @@
"linker_set_key" : "_ZTIKN7android8String16E",
"name" : "const android::String16",
"referenced_type" : "_ZTIN7android8String16E",
- "self_type" : "_ZTIKN7android8String16E",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -12817,7 +11689,6 @@
"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"
},
@@ -12827,27 +11698,15 @@
"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"
},
@@ -12857,7 +11716,6 @@
"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"
},
@@ -12867,7 +11725,6 @@
"linker_set_key" : "_ZTIKb",
"name" : "const bool",
"referenced_type" : "_ZTIb",
- "self_type" : "_ZTIKb",
"size" : 1,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12877,7 +11734,6 @@
"linker_set_key" : "_ZTIKc",
"name" : "const char",
"referenced_type" : "_ZTIc",
- "self_type" : "_ZTIKc",
"size" : 1,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -12887,7 +11743,6 @@
"linker_set_key" : "_ZTIKd",
"name" : "const double",
"referenced_type" : "_ZTId",
- "self_type" : "_ZTIKd",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12897,7 +11752,6 @@
"linker_set_key" : "_ZTIKf",
"name" : "const float",
"referenced_type" : "_ZTIf",
- "self_type" : "_ZTIKf",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12907,7 +11761,6 @@
"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"
},
@@ -12917,7 +11770,6 @@
"linker_set_key" : "_ZTIKi",
"name" : "const int",
"referenced_type" : "_ZTIi",
- "self_type" : "_ZTIKi",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12927,7 +11779,6 @@
"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"
},
@@ -12937,7 +11788,6 @@
"linker_set_key" : "_ZTIKl",
"name" : "const long",
"referenced_type" : "_ZTIl",
- "self_type" : "_ZTIKl",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12947,7 +11797,6 @@
"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"
},
@@ -12957,7 +11806,6 @@
"linker_set_key" : "_ZTIKs",
"name" : "const short",
"referenced_type" : "_ZTIs",
- "self_type" : "_ZTIKs",
"size" : 2,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12967,7 +11815,6 @@
"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"
},
@@ -12976,7 +11823,6 @@
"linker_set_key" : "_ZTIKv",
"name" : "const void",
"referenced_type" : "_ZTIv",
- "self_type" : "_ZTIKv",
"source_file" : "system/core/libutils/include/utils/LightRefBase.h"
},
{
@@ -12985,7 +11831,6 @@
"linker_set_key" : "_ZTIVb",
"name" : "volatile bool",
"referenced_type" : "_ZTIb",
- "self_type" : "_ZTIVb",
"size" : 1,
"source_file" : "system/core/libutils/include/utils/Thread.h"
}
@@ -13038,8 +11883,6 @@
],
"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"
},
@@ -13084,8 +11927,6 @@
],
"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"
},
@@ -13115,8 +11956,6 @@
],
"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"
},
@@ -13136,8 +11975,6 @@
],
"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"
},
@@ -13187,8 +12024,6 @@
],
"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"
},
@@ -13213,8 +12048,6 @@
],
"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"
},
@@ -13239,8 +12072,6 @@
],
"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"
},
@@ -13285,8 +12116,6 @@
],
"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"
},
@@ -13306,8 +12135,6 @@
],
"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"
},
@@ -13347,8 +12174,6 @@
],
"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"
},
@@ -13362,8 +12187,6 @@
],
"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"
},
@@ -13383,8 +12206,6 @@
],
"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"
},
@@ -13426,8 +12247,6 @@
"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" :
@@ -13487,8 +12306,6 @@
"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" :
@@ -13566,8 +12383,7 @@
"linker_set_key" : "_ZTIN7android10VectorImplE",
"name" : "android::VectorImpl",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 40,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h",
"vtable_components" :
@@ -13626,8 +12442,6 @@
"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"
},
@@ -13644,8 +12458,6 @@
"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" :
@@ -13666,8 +12478,6 @@
"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" :
@@ -13688,13 +12498,12 @@
"linker_set_key" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE",
"name" : "android::LightRefBase<android::VirtualLightRefBase>",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/LightRefBase.h",
"template_args" :
[
- "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
]
},
{
@@ -13723,8 +12532,6 @@
"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"
},
@@ -13754,8 +12561,6 @@
"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" :
@@ -13787,8 +12592,6 @@
"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" :
@@ -13800,8 +12603,6 @@
"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" :
@@ -13813,8 +12614,6 @@
"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" :
@@ -13834,8 +12633,6 @@
"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" :
@@ -13921,8 +12718,6 @@
"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" :
@@ -14001,8 +12796,6 @@
"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"
},
@@ -14011,8 +12804,7 @@
"linker_set_key" : "_ZTIN7android14ReferenceMoverE",
"name" : "android::ReferenceMover",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android14ReferenceMoverE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android14ReferenceMoverE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android14ReferenceMoverE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -14036,8 +12828,6 @@
"linker_set_key" : "_ZTIN7android14StaticString16ILm1EEE",
"name" : "android::StaticString16<1>",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android14StaticString16ILm1EEE",
- "self_type" : "_ZTIN7android14StaticString16ILm1EEE",
"size" : 16,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -14067,8 +12857,6 @@
"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" :
@@ -14101,8 +12889,6 @@
"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" :
@@ -14125,8 +12911,7 @@
"linker_set_key" : "_ZTIN7android16ReferenceRenamerE",
"name" : "android::ReferenceRenamer",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h",
"vtable_components" :
@@ -14155,8 +12940,6 @@
"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" :
@@ -14211,14 +12994,13 @@
"base_specifiers" :
[
{
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"linker_set_key" : "_ZTIN7android16SortedVectorImplE",
"name" : "android::SortedVectorImpl",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 40,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h",
"vtable_components" :
@@ -14278,8 +13060,6 @@
],
"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" :
@@ -14297,8 +13077,6 @@
],
"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" :
@@ -14316,8 +13094,6 @@
],
"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" :
@@ -14345,8 +13121,6 @@
"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" :
@@ -14423,8 +13197,6 @@
"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" :
@@ -14436,8 +13208,6 @@
"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" :
@@ -14449,8 +13219,6 @@
"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" :
@@ -14462,8 +13230,6 @@
"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" :
@@ -14475,8 +13241,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIbEE",
"name" : "android::trait_trivial_copy<bool>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14488,8 +13253,6 @@
"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" :
@@ -14501,8 +13264,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIcEE",
"name" : "android::trait_trivial_copy<char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14514,8 +13276,6 @@
"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" :
@@ -14527,8 +13287,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIdEE",
"name" : "android::trait_trivial_copy<double>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14540,8 +13299,6 @@
"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" :
@@ -14553,8 +13310,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIfEE",
"name" : "android::trait_trivial_copy<float>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14566,8 +13322,6 @@
"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" :
@@ -14579,8 +13333,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIhEE",
"name" : "android::trait_trivial_copy<unsigned char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14592,8 +13345,6 @@
"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" :
@@ -14605,8 +13356,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIiEE",
"name" : "android::trait_trivial_copy<int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14618,8 +13368,6 @@
"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" :
@@ -14631,8 +13379,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIjEE",
"name" : "android::trait_trivial_copy<unsigned int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14644,8 +13391,6 @@
"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" :
@@ -14657,8 +13402,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIlEE",
"name" : "android::trait_trivial_copy<long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14670,8 +13414,6 @@
"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" :
@@ -14683,8 +13425,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyImEE",
"name" : "android::trait_trivial_copy<unsigned long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14696,8 +13437,6 @@
"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" :
@@ -14709,8 +13448,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIsEE",
"name" : "android::trait_trivial_copy<short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14722,8 +13460,6 @@
"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" :
@@ -14735,8 +13471,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyItEE",
"name" : "android::trait_trivial_copy<unsigned short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14748,8 +13483,6 @@
"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" :
@@ -14761,8 +13494,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIvEE",
"name" : "android::trait_trivial_copy<void>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14774,8 +13506,6 @@
"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" :
@@ -14787,8 +13517,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIxEE",
"name" : "android::trait_trivial_copy<long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14800,8 +13529,6 @@
"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" :
@@ -14813,8 +13540,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIyEE",
"name" : "android::trait_trivial_copy<unsigned long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14826,8 +13552,6 @@
"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" :
@@ -14839,8 +13563,6 @@
"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" :
@@ -14852,8 +13574,6 @@
"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" :
@@ -14865,8 +13585,6 @@
"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" :
@@ -14878,8 +13596,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIbEE",
"name" : "android::trait_trivial_ctor<bool>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14891,8 +13608,6 @@
"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" :
@@ -14904,8 +13619,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIcEE",
"name" : "android::trait_trivial_ctor<char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14917,8 +13631,6 @@
"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" :
@@ -14930,8 +13642,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIdEE",
"name" : "android::trait_trivial_ctor<double>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14943,8 +13654,6 @@
"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" :
@@ -14956,8 +13665,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIfEE",
"name" : "android::trait_trivial_ctor<float>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14969,8 +13677,6 @@
"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" :
@@ -14982,8 +13688,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIhEE",
"name" : "android::trait_trivial_ctor<unsigned char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14995,8 +13700,6 @@
"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" :
@@ -15008,8 +13711,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIiEE",
"name" : "android::trait_trivial_ctor<int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15021,8 +13723,6 @@
"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" :
@@ -15034,8 +13734,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIjEE",
"name" : "android::trait_trivial_ctor<unsigned int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15047,8 +13746,6 @@
"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" :
@@ -15060,8 +13757,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIlEE",
"name" : "android::trait_trivial_ctor<long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15073,8 +13769,6 @@
"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" :
@@ -15086,8 +13780,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorImEE",
"name" : "android::trait_trivial_ctor<unsigned long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15099,8 +13792,6 @@
"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" :
@@ -15112,8 +13803,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIsEE",
"name" : "android::trait_trivial_ctor<short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15125,8 +13815,6 @@
"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" :
@@ -15138,8 +13826,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorItEE",
"name" : "android::trait_trivial_ctor<unsigned short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15151,8 +13838,6 @@
"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" :
@@ -15164,8 +13849,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIvEE",
"name" : "android::trait_trivial_ctor<void>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15177,8 +13861,6 @@
"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" :
@@ -15190,8 +13872,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIxEE",
"name" : "android::trait_trivial_ctor<long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15203,8 +13884,6 @@
"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" :
@@ -15216,8 +13895,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIyEE",
"name" : "android::trait_trivial_ctor<unsigned long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15229,8 +13907,6 @@
"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" :
@@ -15242,8 +13918,6 @@
"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" :
@@ -15255,8 +13929,6 @@
"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" :
@@ -15268,8 +13940,6 @@
"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" :
@@ -15281,8 +13951,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIbEE",
"name" : "android::trait_trivial_dtor<bool>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15294,8 +13963,6 @@
"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" :
@@ -15307,8 +13974,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIcEE",
"name" : "android::trait_trivial_dtor<char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15320,8 +13986,6 @@
"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" :
@@ -15333,8 +13997,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIdEE",
"name" : "android::trait_trivial_dtor<double>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15346,8 +14009,6 @@
"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" :
@@ -15359,8 +14020,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIfEE",
"name" : "android::trait_trivial_dtor<float>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15372,8 +14032,6 @@
"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" :
@@ -15385,8 +14043,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIhEE",
"name" : "android::trait_trivial_dtor<unsigned char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15398,8 +14055,6 @@
"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" :
@@ -15411,8 +14066,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIiEE",
"name" : "android::trait_trivial_dtor<int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15424,8 +14078,6 @@
"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" :
@@ -15437,8 +14089,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIjEE",
"name" : "android::trait_trivial_dtor<unsigned int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15450,8 +14101,6 @@
"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" :
@@ -15463,8 +14112,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIlEE",
"name" : "android::trait_trivial_dtor<long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15476,8 +14124,6 @@
"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" :
@@ -15489,8 +14135,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorImEE",
"name" : "android::trait_trivial_dtor<unsigned long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15502,8 +14147,6 @@
"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" :
@@ -15515,8 +14158,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIsEE",
"name" : "android::trait_trivial_dtor<short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15528,8 +14170,6 @@
"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" :
@@ -15541,8 +14181,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorItEE",
"name" : "android::trait_trivial_dtor<unsigned short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15554,8 +14193,6 @@
"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" :
@@ -15567,8 +14204,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIvEE",
"name" : "android::trait_trivial_dtor<void>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15580,8 +14216,6 @@
"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" :
@@ -15593,8 +14227,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIxEE",
"name" : "android::trait_trivial_dtor<long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15606,8 +14239,6 @@
"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" :
@@ -15619,8 +14250,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIyEE",
"name" : "android::trait_trivial_dtor<unsigned long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15632,8 +14262,6 @@
"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" :
@@ -15645,8 +14273,6 @@
"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" :
@@ -15658,8 +14284,6 @@
"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" :
@@ -15671,8 +14295,6 @@
"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" :
@@ -15684,21 +14306,18 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE",
"name" : "android::trait_trivial_move<android::String8>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/String8.h",
"template_args" :
[
- "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
]
},
{
"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/binder/include/utils/String16.h",
"template_args" :
@@ -15710,8 +14329,6 @@
"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" :
@@ -15723,8 +14340,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIbEE",
"name" : "android::trait_trivial_move<bool>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15736,8 +14352,6 @@
"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" :
@@ -15749,8 +14363,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIcEE",
"name" : "android::trait_trivial_move<char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15762,8 +14375,6 @@
"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" :
@@ -15775,8 +14386,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIdEE",
"name" : "android::trait_trivial_move<double>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15788,8 +14398,6 @@
"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" :
@@ -15801,8 +14409,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIfEE",
"name" : "android::trait_trivial_move<float>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15814,8 +14421,6 @@
"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" :
@@ -15827,8 +14432,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIhEE",
"name" : "android::trait_trivial_move<unsigned char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15840,8 +14444,6 @@
"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" :
@@ -15853,8 +14455,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIiEE",
"name" : "android::trait_trivial_move<int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15866,8 +14467,6 @@
"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" :
@@ -15879,8 +14478,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIjEE",
"name" : "android::trait_trivial_move<unsigned int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15892,8 +14490,6 @@
"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" :
@@ -15905,8 +14501,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIlEE",
"name" : "android::trait_trivial_move<long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15918,8 +14513,6 @@
"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" :
@@ -15931,8 +14524,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveImEE",
"name" : "android::trait_trivial_move<unsigned long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15944,8 +14536,6 @@
"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" :
@@ -15957,8 +14547,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIsEE",
"name" : "android::trait_trivial_move<short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15970,8 +14559,6 @@
"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" :
@@ -15983,8 +14570,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveItEE",
"name" : "android::trait_trivial_move<unsigned short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15996,8 +14582,6 @@
"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" :
@@ -16009,8 +14593,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIvEE",
"name" : "android::trait_trivial_move<void>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -16022,8 +14605,6 @@
"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" :
@@ -16035,8 +14616,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIxEE",
"name" : "android::trait_trivial_move<long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -16048,8 +14628,6 @@
"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" :
@@ -16061,8 +14639,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIyEE",
"name" : "android::trait_trivial_move<unsigned long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -16081,8 +14658,6 @@
"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" :
@@ -16109,14 +14684,13 @@
"base_specifiers" :
[
{
- "referenced_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"linker_set_key" : "_ZTIN7android19VirtualLightRefBaseE",
"name" : "android::VirtualLightRefBase",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 16,
"source_file" : "system/core/libutils/binder/include/utils/LightRefBase.h",
"vtable_components" :
@@ -16158,8 +14732,6 @@
"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" :
@@ -16245,8 +14817,6 @@
"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" :
@@ -16267,8 +14837,6 @@
"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" :
@@ -16289,8 +14857,6 @@
"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" :
@@ -16311,8 +14877,6 @@
"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" :
@@ -16333,8 +14897,6 @@
"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" :
@@ -16355,8 +14917,6 @@
"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" :
@@ -16383,8 +14943,6 @@
"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" :
@@ -16411,8 +14969,6 @@
"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" :
@@ -16432,8 +14988,6 @@
],
"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"
},
@@ -16441,8 +14995,6 @@
"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"
},
@@ -16459,8 +15011,6 @@
"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" :
@@ -16481,8 +15031,6 @@
"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"
},
@@ -16499,8 +15047,6 @@
"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"
},
@@ -16526,8 +15072,6 @@
],
"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"
},
@@ -16563,8 +15107,6 @@
],
"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"
},
@@ -16590,8 +15132,6 @@
],
"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"
},
@@ -16693,8 +15233,6 @@
"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" :
@@ -16741,8 +15279,6 @@
"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"
},
@@ -16759,8 +15295,6 @@
"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"
},
@@ -16777,8 +15311,6 @@
"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"
},
@@ -16851,8 +15383,6 @@
"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" :
@@ -16947,8 +15477,6 @@
"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" :
@@ -17004,8 +15532,6 @@
"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" :
@@ -17061,8 +15587,6 @@
"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" :
@@ -17112,19 +15636,17 @@
[
{
"access" : "private",
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"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/binder/include/utils/Vector.h",
"template_args" :
[
- "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
],
"vtable_components" :
[
@@ -17167,8 +15689,6 @@
"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" :
@@ -17180,8 +15700,6 @@
"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" :
@@ -17193,8 +15711,6 @@
"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" :
@@ -17245,8 +15761,6 @@
"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"
},
@@ -17261,8 +15775,6 @@
],
"linker_set_key" : "_ZTIN7android7MessageE",
"name" : "android::Message",
- "referenced_type" : "_ZTIN7android7MessageE",
- "self_type" : "_ZTIN7android7MessageE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Looper.h"
},
@@ -17271,8 +15783,6 @@
"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" :
@@ -17306,8 +15816,6 @@
"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"
},
@@ -17316,8 +15824,7 @@
"linker_set_key" : "_ZTIN7android7RefBase12weakref_typeE",
"name" : "android::RefBase::weakref_type",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -17335,8 +15842,6 @@
"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" :
@@ -17384,8 +15889,7 @@
"linker_set_key" : "_ZTIN7android7RefBaseE",
"name" : "android::RefBase",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 16,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h",
"vtable_components" :
@@ -17432,8 +15936,6 @@
"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"
},
@@ -17450,8 +15952,7 @@
"linker_set_key" : "_ZTIN7android7String8E",
"name" : "android::String8",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm64_armv8-a_static_afdo-libutils_lto-none/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm64_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -17471,8 +15972,6 @@
],
"linker_set_key" : "_ZTIN7android8String1610StaticDataILm1EEE",
"name" : "android::String16::StaticData<1>",
- "referenced_type" : "_ZTIN7android8String1610StaticDataILm1EEE",
- "self_type" : "_ZTIN7android8String1610StaticDataILm1EEE",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -17489,8 +15988,6 @@
"linker_set_key" : "_ZTIN7android8String16E",
"name" : "android::String16",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android8String16E",
- "self_type" : "_ZTIN7android8String16E",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -17507,8 +16004,6 @@
"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"
},
@@ -17550,8 +16045,6 @@
"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" :
@@ -17604,8 +16097,6 @@
"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"
},
@@ -17658,8 +16149,6 @@
"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"
},
@@ -17680,8 +16169,6 @@
"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"
}
@@ -17693,7 +16180,6 @@
"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"
},
@@ -17702,7 +16188,6 @@
"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"
},
@@ -17711,7 +16196,6 @@
"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"
},
@@ -17720,7 +16204,6 @@
"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"
},
@@ -17729,7 +16212,6 @@
"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"
},
@@ -17738,7 +16220,6 @@
"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"
},
@@ -17747,7 +16228,6 @@
"linker_set_key" : "_ZTION7android7FileMapE",
"name" : "android::FileMap &&",
"referenced_type" : "_ZTIN7android7FileMapE",
- "self_type" : "_ZTION7android7FileMapE",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -17756,7 +16236,6 @@
"linker_set_key" : "_ZTION7android8String16E",
"name" : "android::String16 &&",
"referenced_type" : "_ZTIN7android8String16E",
- "self_type" : "_ZTION7android8String16E",
"size" : 8,
"source_file" : "system/core/libutils/binder/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
index b9c4c52..5e49856 100644
--- a/libutils/abi-dumps/arm_arm64/source-based/libutils.so.lsdump
+++ b/libutils/abi-dumps/arm_arm64/source-based/libutils.so.lsdump
@@ -6,7 +6,6 @@
"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"
},
{
@@ -14,7 +13,6 @@
"linker_set_key" : "_ZTIA1_Ds",
"name" : "char16_t[1]",
"referenced_type" : "_ZTIDs",
- "self_type" : "_ZTIA1_Ds",
"size" : 2,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -23,7 +21,6 @@
"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"
},
@@ -32,7 +29,6 @@
"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"
},
@@ -41,7 +37,6 @@
"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"
},
@@ -50,7 +45,6 @@
"linker_set_key" : "_ZTIA_f",
"name" : "float[]",
"referenced_type" : "_ZTIf",
- "self_type" : "_ZTIA_f",
"source_file" : "system/core/libsystem/include/system/graphics.h"
}
],
@@ -62,16 +56,12 @@
"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
},
{
@@ -80,8 +70,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIDs",
"name" : "char16_t",
- "referenced_type" : "_ZTIDs",
- "self_type" : "_ZTIDs",
"size" : 2
},
{
@@ -89,8 +77,6 @@
"is_integral" : true,
"linker_set_key" : "_ZTIa",
"name" : "signed char",
- "referenced_type" : "_ZTIa",
- "self_type" : "_ZTIa",
"size" : 1
},
{
@@ -99,8 +85,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIb",
"name" : "bool",
- "referenced_type" : "_ZTIb",
- "self_type" : "_ZTIb",
"size" : 1
},
{
@@ -109,24 +93,18 @@
"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
},
{
@@ -135,8 +113,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIh",
"name" : "unsigned char",
- "referenced_type" : "_ZTIh",
- "self_type" : "_ZTIh",
"size" : 1
},
{
@@ -144,8 +120,6 @@
"is_integral" : true,
"linker_set_key" : "_ZTIi",
"name" : "int",
- "referenced_type" : "_ZTIi",
- "self_type" : "_ZTIi",
"size" : 4
},
{
@@ -154,8 +128,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIj",
"name" : "unsigned int",
- "referenced_type" : "_ZTIj",
- "self_type" : "_ZTIj",
"size" : 4
},
{
@@ -163,8 +135,6 @@
"is_integral" : true,
"linker_set_key" : "_ZTIl",
"name" : "long",
- "referenced_type" : "_ZTIl",
- "self_type" : "_ZTIl",
"size" : 4
},
{
@@ -173,8 +143,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIm",
"name" : "unsigned long",
- "referenced_type" : "_ZTIm",
- "self_type" : "_ZTIm",
"size" : 4
},
{
@@ -182,8 +150,6 @@
"is_integral" : true,
"linker_set_key" : "_ZTIs",
"name" : "short",
- "referenced_type" : "_ZTIs",
- "self_type" : "_ZTIs",
"size" : 2
},
{
@@ -192,23 +158,17 @@
"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"
+ "name" : "void"
},
{
"alignment" : 8,
"is_integral" : true,
"linker_set_key" : "_ZTIx",
"name" : "long long",
- "referenced_type" : "_ZTIx",
- "self_type" : "_ZTIx",
"size" : 8
},
{
@@ -217,8 +177,6 @@
"is_unsigned" : true,
"linker_set_key" : "_ZTIy",
"name" : "unsigned long long",
- "referenced_type" : "_ZTIy",
- "self_type" : "_ZTIy",
"size" : 8
}
],
@@ -497,10 +455,22 @@
},
{
"binding" : "weak",
+ "name" : "_ZN7android2spINS_14LooperCallbackEEaSERKS2_"
+ },
+ {
+ "binding" : "weak",
+ "name" : "_ZN7android2spINS_6LooperEED2Ev"
+ },
+ {
+ "binding" : "weak",
"name" : "_ZN7android2spINS_6LooperEEaSEOS2_"
},
{
"binding" : "weak",
+ "name" : "_ZN7android2spINS_6LooperEEaSERKS2_"
+ },
+ {
+ "binding" : "weak",
"name" : "_ZN7android2spINS_6ThreadEE5clearEv"
},
{
@@ -529,6 +499,9 @@
"name" : "_ZN7android6Looper14removeMessagesERKNS_2spINS_14MessageHandlerEEEi"
},
{
+ "name" : "_ZN7android6Looper15getFdStateDebugEiPiS1_PNS_2spINS_14LooperCallbackEEEPPv"
+ },
+ {
"name" : "_ZN7android6Looper17sendMessageAtTimeExRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE"
},
{
@@ -1202,71 +1175,43 @@
},
{
"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_"
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIiyEENS_22__unordered_map_hasherIiS2_NS_4hashIiEENS_8equal_toIiEELb1EEENS_21__unordered_map_equalIiS2_S7_S5_Lb1EEENS_9allocatorIS2_EEE11__do_rehashILb1EEEvj"
},
{
"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_"
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIiyEENS_22__unordered_map_hasherIiS2_NS_4hashIiEENS_8equal_toIiEELb1EEENS_21__unordered_map_equalIiS2_S7_S5_Lb1EEENS_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_EEE4findIiEENS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_"
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIiyEENS_22__unordered_map_hasherIiS2_NS_4hashIiEENS_8equal_toIiEELb1EEENS_21__unordered_map_equalIiS2_S7_S5_Lb1EEENS_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_EEE5eraseENS_21__hash_const_iteratorIPNS_11__hash_nodeIS2_PvEEEE"
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIiyEENS_22__unordered_map_hasherIiS2_NS_4hashIiEENS_8equal_toIiEELb1EEENS_21__unordered_map_equalIiS2_S7_S5_Lb1EEENS_9allocatorIS2_EEE4findIiEENS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEERKT_"
},
{
"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"
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIiyEENS_22__unordered_map_hasherIiS2_NS_4hashIiEENS_8equal_toIiEELb1EEENS_21__unordered_map_equalIiS2_S7_S5_Lb1EEENS_9allocatorIS2_EEE8__rehashILb1EEEvj"
},
{
"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"
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIyN7android6Looper7RequestEEENS_22__unordered_map_hasherIyS5_NS_4hashIyEENS_8equal_toIyEELb1EEENS_21__unordered_map_equalIyS5_SA_S8_Lb1EEENS_9allocatorIS5_EEE11__do_rehashILb1EEEvj"
},
{
"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"
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIyN7android6Looper7RequestEEENS_22__unordered_map_hasherIyS5_NS_4hashIyEENS_8equal_toIyEELb1EEENS_21__unordered_map_equalIyS5_SA_S8_Lb1EEENS_9allocatorIS5_EEE14__erase_uniqueIyEEjRKT_"
},
{
"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_EEED2Ev"
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIyN7android6Looper7RequestEEENS_22__unordered_map_hasherIyS5_NS_4hashIyEENS_8equal_toIyEELb1EEENS_21__unordered_map_equalIyS5_SA_S8_Lb1EEENS_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_EEE14__erase_uniqueIyEEjRKT_"
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIyN7android6Looper7RequestEEENS_22__unordered_map_hasherIyS5_NS_4hashIyEENS_8equal_toIyEELb1EEENS_21__unordered_map_equalIyS5_SA_S8_Lb1EEENS_9allocatorIS5_EEE4findIyEENS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEERKT_"
},
{
"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_EEE17__deallocate_nodeEPNS_16__hash_node_baseIPNS_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_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_EEE4findIyEENS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEERKT_"
- },
- {
- "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_EEE5eraseENS_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_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"
- },
- {
- "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_EEED2Ev"
+ "name" : "_ZNSt3__112__hash_tableINS_17__hash_value_typeIyN7android6Looper7RequestEEENS_22__unordered_map_hasherIyS5_NS_4hashIyEENS_8equal_toIyEELb1EEENS_21__unordered_map_equalIyS5_SA_S8_Lb1EEENS_9allocatorIS5_EEE8__rehashILb1EEEvj"
},
{
"name" : "_ZTv0_n12_N7android14LooperCallbackD0Ev"
@@ -1466,67 +1411,6 @@
"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"
},
@@ -1541,8 +1425,6 @@
],
"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"
@@ -1558,8 +1440,6 @@
],
"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"
@@ -1607,8 +1487,6 @@
],
"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"
@@ -1848,8 +1726,6 @@
],
"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"
@@ -1885,8 +1761,6 @@
],
"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"
@@ -1918,8 +1792,6 @@
],
"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"
@@ -1971,8 +1843,6 @@
],
"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"
@@ -2004,8 +1874,6 @@
],
"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"
@@ -2045,8 +1913,6 @@
],
"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"
@@ -2138,8 +2004,6 @@
],
"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"
@@ -2203,8 +2067,6 @@
],
"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"
@@ -2232,8 +2094,6 @@
],
"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"
@@ -2261,8 +2121,6 @@
],
"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"
@@ -2286,8 +2144,6 @@
],
"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"
@@ -2303,8 +2159,6 @@
],
"linker_set_key" : "_ZTI25android_color_mode_v1_2_t",
"name" : "android_color_mode_v1_2_t",
- "referenced_type" : "_ZTI25android_color_mode_v1_2_t",
- "self_type" : "_ZTI25android_color_mode_v1_2_t",
"size" : 4,
"source_file" : "system/core/libsystem/include/system/graphics-base-v1.2.h",
"underlying_type" : "_ZTIj"
@@ -2344,8 +2198,6 @@
],
"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"
@@ -2373,8 +2225,6 @@
],
"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"
@@ -2414,8 +2264,6 @@
],
"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"
@@ -2431,8 +2279,6 @@
],
"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"
@@ -2460,8 +2306,6 @@
],
"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"
@@ -2517,8 +2361,6 @@
],
"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"
@@ -2542,8 +2384,6 @@
],
"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"
@@ -2567,8 +2407,7 @@
],
"linker_set_key" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE",
"name" : "android::VectorImpl::(unnamed)",
- "referenced_type" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android10VectorImpl17$HAS_TRIVIAL_COPYE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h",
"underlying_type" : "_ZTIj"
@@ -2584,8 +2423,6 @@
],
"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"
@@ -2601,8 +2438,6 @@
],
"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"
@@ -2618,8 +2453,6 @@
],
"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"
@@ -2711,8 +2544,6 @@
],
"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"
@@ -2804,8 +2635,7 @@
],
"linker_set_key" : "_ZTIN7android15$ALREADY_EXISTSE",
"name" : "android::(unnamed)",
- "referenced_type" : "_ZTIN7android15$ALREADY_EXISTSE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/Errors.sdump",
- "self_type" : "_ZTIN7android15$ALREADY_EXISTSE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/Errors.sdump",
+ "self_type" : "_ZTIN7android15$ALREADY_EXISTSE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/Errors.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/Errors.h",
"underlying_type" : "_ZTIi"
@@ -2865,8 +2695,6 @@
],
"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"
@@ -2882,8 +2710,6 @@
],
"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"
@@ -2899,8 +2725,6 @@
],
"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"
@@ -2916,8 +2740,6 @@
],
"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"
@@ -2933,8 +2755,6 @@
],
"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"
@@ -2950,8 +2770,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIbE6$valueE",
"name" : "android::trait_trivial_copy<bool>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -2967,8 +2786,6 @@
],
"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"
@@ -2984,8 +2801,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIcE6$valueE",
"name" : "android::trait_trivial_copy<char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3001,8 +2817,6 @@
],
"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"
@@ -3018,8 +2832,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIdE6$valueE",
"name" : "android::trait_trivial_copy<double>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3035,8 +2848,6 @@
],
"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"
@@ -3052,8 +2863,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIfE6$valueE",
"name" : "android::trait_trivial_copy<float>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3069,8 +2879,6 @@
],
"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"
@@ -3086,8 +2894,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIhE6$valueE",
"name" : "android::trait_trivial_copy<unsigned char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3103,8 +2910,6 @@
],
"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"
@@ -3120,8 +2925,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIiE6$valueE",
"name" : "android::trait_trivial_copy<int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3137,8 +2941,6 @@
],
"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"
@@ -3154,8 +2956,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIjE6$valueE",
"name" : "android::trait_trivial_copy<unsigned int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3171,8 +2972,6 @@
],
"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"
@@ -3188,8 +2987,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIlE6$valueE",
"name" : "android::trait_trivial_copy<long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3205,8 +3003,6 @@
],
"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"
@@ -3222,8 +3018,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyImE6$valueE",
"name" : "android::trait_trivial_copy<unsigned long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3239,8 +3034,6 @@
],
"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"
@@ -3256,8 +3049,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIsE6$valueE",
"name" : "android::trait_trivial_copy<short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3273,8 +3065,6 @@
],
"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"
@@ -3290,8 +3080,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyItE6$valueE",
"name" : "android::trait_trivial_copy<unsigned short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3307,8 +3096,6 @@
],
"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"
@@ -3324,8 +3111,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIvE6$valueE",
"name" : "android::trait_trivial_copy<void>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3341,8 +3127,6 @@
],
"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"
@@ -3358,8 +3142,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIxE6$valueE",
"name" : "android::trait_trivial_copy<long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3375,8 +3158,6 @@
],
"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"
@@ -3392,8 +3173,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIyE6$valueE",
"name" : "android::trait_trivial_copy<unsigned long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3409,8 +3189,6 @@
],
"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"
@@ -3426,8 +3204,6 @@
],
"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"
@@ -3443,8 +3219,6 @@
],
"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"
@@ -3460,8 +3234,6 @@
],
"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"
@@ -3477,8 +3249,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE",
"name" : "android::trait_trivial_ctor<bool>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3494,8 +3265,6 @@
],
"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"
@@ -3511,8 +3280,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE",
"name" : "android::trait_trivial_ctor<char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3528,8 +3296,6 @@
],
"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"
@@ -3545,8 +3311,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE",
"name" : "android::trait_trivial_ctor<double>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3562,8 +3327,6 @@
],
"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"
@@ -3579,8 +3342,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE",
"name" : "android::trait_trivial_ctor<float>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3596,8 +3358,6 @@
],
"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"
@@ -3613,8 +3373,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE",
"name" : "android::trait_trivial_ctor<unsigned char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3630,8 +3389,6 @@
],
"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"
@@ -3647,8 +3404,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE",
"name" : "android::trait_trivial_ctor<int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3664,8 +3420,6 @@
],
"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"
@@ -3681,8 +3435,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE",
"name" : "android::trait_trivial_ctor<unsigned int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3698,8 +3451,6 @@
],
"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"
@@ -3715,8 +3466,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE",
"name" : "android::trait_trivial_ctor<long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3732,8 +3482,6 @@
],
"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"
@@ -3749,8 +3497,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorImE6$valueE",
"name" : "android::trait_trivial_ctor<unsigned long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3766,8 +3513,6 @@
],
"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"
@@ -3783,8 +3528,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE",
"name" : "android::trait_trivial_ctor<short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3800,8 +3544,6 @@
],
"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"
@@ -3817,8 +3559,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorItE6$valueE",
"name" : "android::trait_trivial_ctor<unsigned short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3834,8 +3575,6 @@
],
"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"
@@ -3851,8 +3590,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE",
"name" : "android::trait_trivial_ctor<void>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3868,8 +3606,6 @@
],
"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"
@@ -3885,8 +3621,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE",
"name" : "android::trait_trivial_ctor<long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3902,8 +3637,6 @@
],
"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"
@@ -3919,8 +3652,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE",
"name" : "android::trait_trivial_ctor<unsigned long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -3936,8 +3668,6 @@
],
"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"
@@ -3953,8 +3683,6 @@
],
"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"
@@ -3970,8 +3698,6 @@
],
"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"
@@ -3987,8 +3713,6 @@
],
"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"
@@ -4004,8 +3728,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE",
"name" : "android::trait_trivial_dtor<bool>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4021,8 +3744,6 @@
],
"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"
@@ -4038,8 +3759,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE",
"name" : "android::trait_trivial_dtor<char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4055,8 +3775,6 @@
],
"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"
@@ -4072,8 +3790,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE",
"name" : "android::trait_trivial_dtor<double>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4089,8 +3806,6 @@
],
"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"
@@ -4106,8 +3821,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE",
"name" : "android::trait_trivial_dtor<float>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4123,8 +3837,6 @@
],
"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"
@@ -4140,8 +3852,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE",
"name" : "android::trait_trivial_dtor<unsigned char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4157,8 +3868,6 @@
],
"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"
@@ -4174,8 +3883,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE",
"name" : "android::trait_trivial_dtor<int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4191,8 +3899,6 @@
],
"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"
@@ -4208,8 +3914,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE",
"name" : "android::trait_trivial_dtor<unsigned int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4225,8 +3930,6 @@
],
"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"
@@ -4242,8 +3945,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE",
"name" : "android::trait_trivial_dtor<long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4259,8 +3961,6 @@
],
"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"
@@ -4276,8 +3976,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorImE6$valueE",
"name" : "android::trait_trivial_dtor<unsigned long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4293,8 +3992,6 @@
],
"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"
@@ -4310,8 +4007,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE",
"name" : "android::trait_trivial_dtor<short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4327,8 +4023,6 @@
],
"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"
@@ -4344,8 +4038,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorItE6$valueE",
"name" : "android::trait_trivial_dtor<unsigned short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4361,8 +4054,6 @@
],
"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"
@@ -4378,8 +4069,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE",
"name" : "android::trait_trivial_dtor<void>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4395,8 +4085,6 @@
],
"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"
@@ -4412,8 +4100,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE",
"name" : "android::trait_trivial_dtor<long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4429,8 +4116,6 @@
],
"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"
@@ -4446,8 +4131,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE",
"name" : "android::trait_trivial_dtor<unsigned long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4463,8 +4147,6 @@
],
"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"
@@ -4480,8 +4162,6 @@
],
"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"
@@ -4497,8 +4177,6 @@
],
"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"
@@ -4514,8 +4192,6 @@
],
"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"
@@ -4531,8 +4207,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE",
"name" : "android::trait_trivial_move<android::String8>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h",
"underlying_type" : "_ZTIj"
@@ -4548,8 +4223,6 @@
],
"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/binder/include/utils/String16.h",
"underlying_type" : "_ZTIj"
@@ -4565,8 +4238,6 @@
],
"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"
@@ -4582,8 +4253,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIbE6$valueE",
"name" : "android::trait_trivial_move<bool>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIbE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4599,8 +4269,6 @@
],
"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"
@@ -4616,8 +4284,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIcE6$valueE",
"name" : "android::trait_trivial_move<char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIcE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4633,8 +4300,6 @@
],
"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"
@@ -4650,8 +4315,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIdE6$valueE",
"name" : "android::trait_trivial_move<double>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIdE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4667,8 +4331,6 @@
],
"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"
@@ -4684,8 +4346,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIfE6$valueE",
"name" : "android::trait_trivial_move<float>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIfE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4701,8 +4362,6 @@
],
"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"
@@ -4718,8 +4377,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIhE6$valueE",
"name" : "android::trait_trivial_move<unsigned char>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIhE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4735,8 +4393,6 @@
],
"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"
@@ -4752,8 +4408,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIiE6$valueE",
"name" : "android::trait_trivial_move<int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIiE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4769,8 +4424,6 @@
],
"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"
@@ -4786,8 +4439,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIjE6$valueE",
"name" : "android::trait_trivial_move<unsigned int>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIjE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4803,8 +4455,6 @@
],
"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"
@@ -4820,8 +4470,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIlE6$valueE",
"name" : "android::trait_trivial_move<long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIlE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4837,8 +4486,6 @@
],
"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"
@@ -4854,8 +4501,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveImE6$valueE",
"name" : "android::trait_trivial_move<unsigned long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveImE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4871,8 +4517,6 @@
],
"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"
@@ -4888,8 +4532,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIsE6$valueE",
"name" : "android::trait_trivial_move<short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIsE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4905,8 +4548,6 @@
],
"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"
@@ -4922,8 +4563,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveItE6$valueE",
"name" : "android::trait_trivial_move<unsigned short>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveItE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4939,8 +4579,6 @@
],
"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"
@@ -4956,8 +4594,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIvE6$valueE",
"name" : "android::trait_trivial_move<void>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIvE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -4973,8 +4610,6 @@
],
"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"
@@ -4990,8 +4625,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIxE6$valueE",
"name" : "android::trait_trivial_move<long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIxE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -5007,8 +4641,6 @@
],
"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"
@@ -5024,8 +4656,7 @@
],
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIyE6$valueE",
"name" : "android::trait_trivial_move<unsigned long long>::(unnamed)",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIyE6$valueE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"underlying_type" : "_ZTIj"
@@ -5045,8 +4676,6 @@
],
"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"
@@ -5078,8 +4707,6 @@
],
"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"
@@ -5107,8 +4734,6 @@
],
"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"
@@ -5124,8 +4749,6 @@
],
"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"
@@ -5145,8 +4768,6 @@
],
"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"
@@ -5178,8 +4799,6 @@
],
"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"
@@ -5211,8 +4830,6 @@
],
"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"
@@ -5244,8 +4861,6 @@
],
"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"
@@ -5277,8 +4892,6 @@
],
"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"
@@ -5295,8 +4908,6 @@
],
"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"
@@ -5313,8 +4924,7 @@
],
"linker_set_key" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE",
"name" : "android::RefBase::(unnamed)",
- "referenced_type" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android7RefBase17$FIRST_INC_STRONGE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h",
"underlying_type" : "_ZTIj"
@@ -5339,8 +4949,6 @@
],
"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"
@@ -5365,8 +4973,7 @@
],
"linker_set_key" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE",
"name" : "android::RefBase::(unnamed)",
- "referenced_type" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android7RefBase21$OBJECT_LIFETIME_MASKE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h",
"underlying_type" : "_ZTIj"
@@ -5386,8 +4993,6 @@
],
"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"
@@ -5407,8 +5012,6 @@
],
"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"
@@ -5425,8 +5028,6 @@
],
"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"
@@ -5459,9 +5060,7 @@
"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"
},
{
@@ -5477,9 +5076,7 @@
"referenced_type" : "_ZTIPKv"
}
],
- "referenced_type" : "_ZTIFiPKvS0_E",
"return_type" : "_ZTIi",
- "self_type" : "_ZTIFiPKvS0_E",
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
{
@@ -5498,9 +5095,7 @@
"referenced_type" : "_ZTIPv"
}
],
- "referenced_type" : "_ZTIFiPKvS0_PvE",
"return_type" : "_ZTIi",
- "self_type" : "_ZTIFiPKvS0_PvE",
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
{
@@ -5513,9 +5108,7 @@
"referenced_type" : "_ZTIPv"
}
],
- "referenced_type" : "_ZTIFiPvE",
"return_type" : "_ZTIi",
- "self_type" : "_ZTIFiPvE",
"source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
},
{
@@ -5534,18 +5127,14 @@
"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"
}
],
@@ -6887,6 +6476,35 @@
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
},
{
+ "function_name" : "android::sp<android::LooperCallback>::operator=",
+ "linker_set_key" : "_ZN7android2spINS_14LooperCallbackEEaSERKS2_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android2spINS_14LooperCallbackEEE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_14LooperCallbackEEE"
+ }
+ ],
+ "return_type" : "_ZTIRN7android2spINS_14LooperCallbackEEE",
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
+ "function_name" : "android::sp<android::Looper>::~sp",
+ "linker_set_key" : "_ZN7android2spINS_6LooperEED2Ev",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android2spINS_6LooperEEE"
+ }
+ ],
+ "return_type" : "_ZTIv",
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
"function_name" : "android::sp<android::Looper>::operator=",
"linker_set_key" : "_ZN7android2spINS_6LooperEEaSEOS2_",
"parameters" :
@@ -6903,6 +6521,22 @@
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
},
{
+ "function_name" : "android::sp<android::Looper>::operator=",
+ "linker_set_key" : "_ZN7android2spINS_6LooperEEaSERKS2_",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android2spINS_6LooperEEE"
+ },
+ {
+ "referenced_type" : "_ZTIRKN7android2spINS_6LooperEEE"
+ }
+ ],
+ "return_type" : "_ZTIRN7android2spINS_6LooperEEE",
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.h"
+ },
+ {
"function_name" : "android::sp<android::Thread>::clear",
"linker_set_key" : "_ZN7android2spINS_6ThreadEE5clearEv",
"parameters" :
@@ -7016,6 +6650,34 @@
"source_file" : "system/core/libutils/include/utils/Looper.h"
},
{
+ "function_name" : "android::Looper::getFdStateDebug",
+ "linker_set_key" : "_ZN7android6Looper15getFdStateDebugEiPiS1_PNS_2spINS_14LooperCallbackEEEPPv",
+ "parameters" :
+ [
+ {
+ "is_this_ptr" : true,
+ "referenced_type" : "_ZTIPN7android6LooperE"
+ },
+ {
+ "referenced_type" : "_ZTIi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPi"
+ },
+ {
+ "referenced_type" : "_ZTIPN7android2spINS_14LooperCallbackEEE"
+ },
+ {
+ "referenced_type" : "_ZTIPPv"
+ }
+ ],
+ "return_type" : "_ZTIb",
+ "source_file" : "system/core/libutils/include/utils/Looper.h"
+ },
+ {
"function_name" : "android::Looper::sendMessageAtTime",
"linker_set_key" : "_ZN7android6Looper17sendMessageAtTimeExRKNS_2spINS_14MessageHandlerEEERKNS_7MessageE",
"parameters" :
@@ -7741,7 +7403,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -7770,7 +7432,7 @@
"parameters" :
[
{
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7789,7 +7451,7 @@
"parameters" :
[
{
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7808,7 +7470,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7824,7 +7486,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7840,7 +7502,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7856,7 +7518,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7872,7 +7534,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7888,7 +7550,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIb"
@@ -7908,7 +7570,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7925,7 +7587,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -7942,7 +7604,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIi"
@@ -7959,7 +7621,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIj"
@@ -7979,7 +7641,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -7993,7 +7655,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8007,7 +7669,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8021,7 +7683,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8035,7 +7697,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8048,7 +7710,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIj"
@@ -8065,7 +7727,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8084,7 +7746,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8100,7 +7762,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIj"
@@ -8116,7 +7778,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8129,7 +7791,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8148,7 +7810,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8161,7 +7823,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDi"
@@ -8180,7 +7842,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDs"
@@ -8199,7 +7861,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8215,7 +7877,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8234,10 +7896,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8250,7 +7912,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8266,7 +7928,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8285,10 +7947,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIi",
@@ -8303,7 +7965,7 @@
"referenced_type" : "_ZTIPKc"
}
],
- "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
{
@@ -8318,7 +7980,7 @@
"referenced_type" : "_ZTISt9__va_list"
}
],
- "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
{
@@ -8328,7 +7990,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8341,7 +8003,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8357,7 +8019,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDi"
@@ -8373,7 +8035,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDi"
@@ -8392,7 +8054,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDs"
@@ -8408,7 +8070,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDs"
@@ -8427,7 +8089,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8443,7 +8105,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8462,7 +8124,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIRKN7android8String16E"
@@ -8478,10 +8140,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8494,7 +8156,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8507,7 +8169,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDi"
@@ -8523,7 +8185,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDi"
@@ -8542,7 +8204,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDs"
@@ -8558,7 +8220,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKDs"
@@ -8577,7 +8239,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8593,7 +8255,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -8612,7 +8274,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIRKN7android8String16E"
@@ -8628,10 +8290,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8644,7 +8306,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8657,7 +8319,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -8670,7 +8332,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -9045,7 +8707,7 @@
"referenced_type" : "_ZTIPN7android8String16E"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -9199,7 +8861,7 @@
"referenced_type" : "_ZTIPN7android8String16E"
},
{
- "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIv",
@@ -9611,7 +9273,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIj"
@@ -9627,7 +9289,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIj",
@@ -9641,7 +9303,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIj",
@@ -10182,13 +9844,13 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
}
],
- "return_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
{
@@ -10198,10 +9860,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
- "return_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
{
@@ -10227,7 +9889,7 @@
"referenced_type" : "_ZTIPKN7android7RefBase12weakref_typeE"
}
],
- "return_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
{
@@ -10250,7 +9912,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -10266,7 +9928,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIi",
@@ -10279,7 +9941,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -10295,7 +9957,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -10311,7 +9973,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKv"
@@ -10328,10 +9990,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
- "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
{
@@ -10342,10 +10004,10 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
- "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "return_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
{
@@ -10355,7 +10017,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
},
{
"referenced_type" : "_ZTIPKc"
@@ -10375,7 +10037,7 @@
[
{
"is_this_ptr" : true,
- "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"return_type" : "_ZTIj",
@@ -10975,7 +10637,6 @@
"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/binder/include/utils/String16.h"
},
@@ -10983,8 +10644,7 @@
"alignment" : 4,
"linker_set_key" : "_ZTIRKN7android10VectorImplE",
"name" : "const android::VectorImpl &",
- "referenced_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIRKN7android10VectorImplE",
+ "referenced_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -10993,7 +10653,6 @@
"linker_set_key" : "_ZTIRKN7android16ReferenceRenamerE",
"name" : "const android::ReferenceRenamer &",
"referenced_type" : "_ZTIKN7android16ReferenceRenamerE",
- "self_type" : "_ZTIRKN7android16ReferenceRenamerE",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -11002,7 +10661,6 @@
"linker_set_key" : "_ZTIRKN7android16SortedVectorImplE",
"name" : "const android::SortedVectorImpl &",
"referenced_type" : "_ZTIKN7android16SortedVectorImplE",
- "self_type" : "_ZTIRKN7android16SortedVectorImplE",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11011,7 +10669,6 @@
"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"
},
@@ -11020,7 +10677,6 @@
"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"
},
@@ -11029,7 +10685,6 @@
"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"
},
@@ -11038,7 +10693,6 @@
"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"
},
@@ -11047,16 +10701,14 @@
"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"
+ "source_file" : "system/core/libutils/include/utils/StrongPointer.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"
},
@@ -11065,7 +10717,6 @@
"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"
},
@@ -11074,7 +10725,6 @@
"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"
},
@@ -11083,7 +10733,6 @@
"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"
},
@@ -11092,7 +10741,6 @@
"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"
},
@@ -11101,7 +10749,6 @@
"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"
},
@@ -11110,7 +10757,6 @@
"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"
},
@@ -11118,8 +10764,8 @@
"alignment" : 4,
"linker_set_key" : "_ZTIRKN7android7String8E",
"name" : "const android::String8 &",
- "referenced_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIRKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -11128,7 +10774,6 @@
"linker_set_key" : "_ZTIRKN7android8String1610StaticDataILj1EEE",
"name" : "const android::String16::StaticData<1> &",
"referenced_type" : "_ZTIKN7android8String1610StaticDataILj1EEE",
- "self_type" : "_ZTIRKN7android8String1610StaticDataILj1EEE",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11137,7 +10782,6 @@
"linker_set_key" : "_ZTIRKN7android8String16E",
"name" : "const android::String16 &",
"referenced_type" : "_ZTIKN7android8String16E",
- "self_type" : "_ZTIRKN7android8String16E",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11146,7 +10790,6 @@
"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"
},
@@ -11155,7 +10798,6 @@
"linker_set_key" : "_ZTIRKb",
"name" : "const bool &",
"referenced_type" : "_ZTIKb",
- "self_type" : "_ZTIRKb",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11164,7 +10806,6 @@
"linker_set_key" : "_ZTIRKd",
"name" : "const double &",
"referenced_type" : "_ZTIKd",
- "self_type" : "_ZTIRKd",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11173,7 +10814,6 @@
"linker_set_key" : "_ZTIRKf",
"name" : "const float &",
"referenced_type" : "_ZTIKf",
- "self_type" : "_ZTIRKf",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11182,7 +10822,6 @@
"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"
},
@@ -11191,7 +10830,6 @@
"linker_set_key" : "_ZTIRKi",
"name" : "const int &",
"referenced_type" : "_ZTIKi",
- "self_type" : "_ZTIRKi",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11200,7 +10838,6 @@
"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"
},
@@ -11209,7 +10846,6 @@
"linker_set_key" : "_ZTIRKs",
"name" : "const short &",
"referenced_type" : "_ZTIKs",
- "self_type" : "_ZTIRKs",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -11218,7 +10854,6 @@
"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"
},
@@ -11227,7 +10862,6 @@
"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"
},
@@ -11236,7 +10870,6 @@
"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"
},
@@ -11244,8 +10877,7 @@
"alignment" : 4,
"linker_set_key" : "_ZTIRN7android10VectorImplE",
"name" : "android::VectorImpl &",
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIRN7android10VectorImplE",
+ "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11253,8 +10885,7 @@
"alignment" : 4,
"linker_set_key" : "_ZTIRN7android16SortedVectorImplE",
"name" : "android::SortedVectorImpl &",
- "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIRN7android16SortedVectorImplE",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11263,7 +10894,6 @@
"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"
},
@@ -11272,7 +10902,6 @@
"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"
},
@@ -11281,7 +10910,6 @@
"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"
},
@@ -11290,7 +10918,6 @@
"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"
},
@@ -11299,7 +10926,6 @@
"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"
},
@@ -11308,7 +10934,6 @@
"linker_set_key" : "_ZTIRN7android5MutexE",
"name" : "android::Mutex &",
"referenced_type" : "_ZTIN7android5MutexE",
- "self_type" : "_ZTIRN7android5MutexE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Mutex.h"
},
@@ -11317,7 +10942,6 @@
"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"
},
@@ -11326,7 +10950,6 @@
"linker_set_key" : "_ZTIRN7android6RWLockE",
"name" : "android::RWLock &",
"referenced_type" : "_ZTIN7android6RWLockE",
- "self_type" : "_ZTIRN7android6RWLockE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/RWLock.h"
},
@@ -11335,7 +10958,6 @@
"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"
},
@@ -11344,7 +10966,6 @@
"linker_set_key" : "_ZTIRN7android7FileMapE",
"name" : "android::FileMap &",
"referenced_type" : "_ZTIN7android7FileMapE",
- "self_type" : "_ZTIRN7android7FileMapE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -11353,7 +10974,6 @@
"linker_set_key" : "_ZTIRN7android7PrinterE",
"name" : "android::Printer &",
"referenced_type" : "_ZTIN7android7PrinterE",
- "self_type" : "_ZTIRN7android7PrinterE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -11362,7 +10982,6 @@
"linker_set_key" : "_ZTIRN7android7String8E",
"name" : "android::String8 &",
"referenced_type" : "_ZTIN7android7String8E",
- "self_type" : "_ZTIRN7android7String8E",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/String8.h"
},
@@ -11370,8 +10989,8 @@
"alignment" : 4,
"linker_set_key" : "_ZTIRN7android7String8E",
"name" : "android::String8 &",
- "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIRN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIRN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -11380,7 +10999,6 @@
"linker_set_key" : "_ZTIRN7android8String16E",
"name" : "android::String16 &",
"referenced_type" : "_ZTIN7android8String16E",
- "self_type" : "_ZTIRN7android8String16E",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11389,7 +11007,6 @@
"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"
},
@@ -11398,7 +11015,6 @@
"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"
},
@@ -11407,7 +11023,6 @@
"linker_set_key" : "_ZTIRb",
"name" : "bool &",
"referenced_type" : "_ZTIb",
- "self_type" : "_ZTIRb",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
}
@@ -11419,7 +11034,6 @@
"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"
},
@@ -11428,7 +11042,6 @@
"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"
},
@@ -11437,7 +11050,6 @@
"linker_set_key" : "_ZTIP3DIR",
"name" : "DIR *",
"referenced_type" : "_ZTI3DIR",
- "self_type" : "_ZTIP3DIR",
"size" : 4,
"source_file" : "system/libbase/include/android-base/unique_fd.h"
},
@@ -11446,7 +11058,6 @@
"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"
},
@@ -11455,7 +11066,6 @@
"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"
},
@@ -11464,7 +11074,6 @@
"linker_set_key" : "_ZTIPDs",
"name" : "char16_t *",
"referenced_type" : "_ZTIDs",
- "self_type" : "_ZTIPDs",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11473,7 +11082,6 @@
"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"
},
@@ -11482,7 +11090,6 @@
"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/binder/include/utils/VectorImpl.h"
},
@@ -11491,7 +11098,6 @@
"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/binder/include/utils/VectorImpl.h"
},
@@ -11500,7 +11106,6 @@
"linker_set_key" : "_ZTIPFiPvE",
"name" : "int (*)(void *)",
"referenced_type" : "_ZTIFiPvE",
- "self_type" : "_ZTIPFiPvE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
},
@@ -11509,7 +11114,6 @@
"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"
},
@@ -11518,7 +11122,6 @@
"linker_set_key" : "_ZTIPFvvE",
"name" : "void (*)()",
"referenced_type" : "_ZTIFvvE",
- "self_type" : "_ZTIPFvvE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/misc.h"
},
@@ -11527,7 +11130,6 @@
"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"
},
@@ -11536,7 +11138,6 @@
"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"
},
@@ -11545,7 +11146,6 @@
"linker_set_key" : "_ZTIPKDi",
"name" : "const char32_t *",
"referenced_type" : "_ZTIKDi",
- "self_type" : "_ZTIPKDi",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -11554,7 +11154,6 @@
"linker_set_key" : "_ZTIPKDs",
"name" : "const char16_t *",
"referenced_type" : "_ZTIKDs",
- "self_type" : "_ZTIPKDs",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11563,7 +11162,6 @@
"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"
},
@@ -11571,8 +11169,8 @@
"alignment" : 4,
"linker_set_key" : "_ZTIPKN7android10VectorImplE",
"name" : "const android::VectorImpl *",
- "referenced_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11581,7 +11179,6 @@
"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"
},
@@ -11590,7 +11187,6 @@
"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"
},
@@ -11599,7 +11195,6 @@
"linker_set_key" : "_ZTIPKN7android16SortedVectorImplE",
"name" : "const android::SortedVectorImpl *",
"referenced_type" : "_ZTIKN7android16SortedVectorImplE",
- "self_type" : "_ZTIPKN7android16SortedVectorImplE",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11608,7 +11203,6 @@
"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"
},
@@ -11617,7 +11211,6 @@
"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"
},
@@ -11626,7 +11219,6 @@
"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"
},
@@ -11635,7 +11227,6 @@
"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"
},
@@ -11644,7 +11235,6 @@
"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"
},
@@ -11653,7 +11243,6 @@
"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"
},
@@ -11662,7 +11251,6 @@
"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"
},
@@ -11671,7 +11259,6 @@
"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"
},
@@ -11680,7 +11267,6 @@
"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"
},
@@ -11689,7 +11275,6 @@
"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"
},
@@ -11698,7 +11283,6 @@
"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"
},
@@ -11707,7 +11291,6 @@
"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"
},
@@ -11716,7 +11299,6 @@
"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"
},
@@ -11725,7 +11307,6 @@
"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"
},
@@ -11734,7 +11315,6 @@
"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"
},
@@ -11743,7 +11323,6 @@
"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"
},
@@ -11752,7 +11331,6 @@
"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"
},
@@ -11761,7 +11339,6 @@
"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/binder/include/utils/Vector.h"
},
@@ -11770,7 +11347,6 @@
"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"
},
@@ -11779,7 +11355,6 @@
"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/binder/include/utils/RefBase.h"
},
@@ -11788,7 +11363,6 @@
"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"
},
@@ -11796,8 +11370,8 @@
"alignment" : 4,
"linker_set_key" : "_ZTIPKN7android7RefBaseE",
"name" : "const android::RefBase *",
- "referenced_type" : "_ZTIKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -11806,7 +11380,6 @@
"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"
},
@@ -11814,8 +11387,8 @@
"alignment" : 4,
"linker_set_key" : "_ZTIPKN7android7String8E",
"name" : "const android::String8 *",
- "referenced_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -11824,7 +11397,6 @@
"linker_set_key" : "_ZTIPKN7android8String16E",
"name" : "const android::String16 *",
"referenced_type" : "_ZTIKN7android8String16E",
- "self_type" : "_ZTIPKN7android8String16E",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11833,7 +11405,6 @@
"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"
},
@@ -11842,7 +11413,6 @@
"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"
},
@@ -11851,7 +11421,6 @@
"linker_set_key" : "_ZTIPKc",
"name" : "const char *",
"referenced_type" : "_ZTIKc",
- "self_type" : "_ZTIPKc",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -11860,7 +11429,6 @@
"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"
},
@@ -11869,7 +11437,6 @@
"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"
},
@@ -11878,7 +11445,6 @@
"linker_set_key" : "_ZTIPKv",
"name" : "const void *",
"referenced_type" : "_ZTIKv",
- "self_type" : "_ZTIPKv",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/LightRefBase.h"
},
@@ -11887,7 +11453,6 @@
"linker_set_key" : "_ZTIPN7android10LogPrinterE",
"name" : "android::LogPrinter *",
"referenced_type" : "_ZTIN7android10LogPrinterE",
- "self_type" : "_ZTIPN7android10LogPrinterE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -11895,8 +11460,7 @@
"alignment" : 4,
"linker_set_key" : "_ZTIPN7android10VectorImplE",
"name" : "android::VectorImpl *",
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android10VectorImplE",
+ "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -11905,7 +11469,6 @@
"linker_set_key" : "_ZTIPN7android11ScopedTraceE",
"name" : "android::ScopedTrace *",
"referenced_type" : "_ZTIN7android11ScopedTraceE",
- "self_type" : "_ZTIPN7android11ScopedTraceE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Trace.h"
},
@@ -11914,7 +11477,6 @@
"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"
},
@@ -11923,7 +11485,6 @@
"linker_set_key" : "_ZTIPN7android12NativeHandleE",
"name" : "android::NativeHandle *",
"referenced_type" : "_ZTIN7android12NativeHandleE",
- "self_type" : "_ZTIPN7android12NativeHandleE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
},
@@ -11932,7 +11493,6 @@
"linker_set_key" : "_ZTIPN7android13PrefixPrinterE",
"name" : "android::PrefixPrinter *",
"referenced_type" : "_ZTIN7android13PrefixPrinterE",
- "self_type" : "_ZTIPN7android13PrefixPrinterE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -11941,7 +11501,6 @@
"linker_set_key" : "_ZTIPN7android14LooperCallbackE",
"name" : "android::LooperCallback *",
"referenced_type" : "_ZTIN7android14LooperCallbackE",
- "self_type" : "_ZTIPN7android14LooperCallbackE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
},
@@ -11950,7 +11509,6 @@
"linker_set_key" : "_ZTIPN7android14MessageHandlerE",
"name" : "android::MessageHandler *",
"referenced_type" : "_ZTIN7android14MessageHandlerE",
- "self_type" : "_ZTIPN7android14MessageHandlerE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/RefBase.h"
},
@@ -11959,7 +11517,6 @@
"linker_set_key" : "_ZTIPN7android14StaticString16ILj1EEE",
"name" : "android::StaticString16<1> *",
"referenced_type" : "_ZTIN7android14StaticString16ILj1EEE",
- "self_type" : "_ZTIPN7android14StaticString16ILj1EEE",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -11968,7 +11525,6 @@
"linker_set_key" : "_ZTIPN7android14String8PrinterE",
"name" : "android::String8Printer *",
"referenced_type" : "_ZTIN7android14String8PrinterE",
- "self_type" : "_ZTIPN7android14String8PrinterE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -11977,7 +11533,6 @@
"linker_set_key" : "_ZTIPN7android16ReferenceRenamerE",
"name" : "android::ReferenceRenamer *",
"referenced_type" : "_ZTIN7android16ReferenceRenamerE",
- "self_type" : "_ZTIPN7android16ReferenceRenamerE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/RefBase.h"
},
@@ -11985,8 +11540,8 @@
"alignment" : 4,
"linker_set_key" : "_ZTIPN7android16ReferenceRenamerE",
"name" : "android::ReferenceRenamer *",
- "referenced_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -11994,8 +11549,7 @@
"alignment" : 4,
"linker_set_key" : "_ZTIPN7android16SortedVectorImplE",
"name" : "android::SortedVectorImpl *",
- "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android16SortedVectorImplE",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -12004,7 +11558,6 @@
"linker_set_key" : "_ZTIPN7android18WeakMessageHandlerE",
"name" : "android::WeakMessageHandler *",
"referenced_type" : "_ZTIN7android18WeakMessageHandlerE",
- "self_type" : "_ZTIPN7android18WeakMessageHandlerE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Looper.h"
},
@@ -12013,7 +11566,6 @@
"linker_set_key" : "_ZTIPN7android19VirtualLightRefBaseE",
"name" : "android::VirtualLightRefBase *",
"referenced_type" : "_ZTIN7android19VirtualLightRefBaseE",
- "self_type" : "_ZTIPN7android19VirtualLightRefBaseE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/LightRefBase.h"
},
@@ -12021,8 +11573,8 @@
"alignment" : 4,
"linker_set_key" : "_ZTIPN7android19VirtualLightRefBaseE",
"name" : "android::VirtualLightRefBase *",
- "referenced_type" : "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/LightRefBase.h"
},
@@ -12031,7 +11583,6 @@
"linker_set_key" : "_ZTIPN7android20SimpleLooperCallbackE",
"name" : "android::SimpleLooperCallback *",
"referenced_type" : "_ZTIN7android20SimpleLooperCallbackE",
- "self_type" : "_ZTIPN7android20SimpleLooperCallbackE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
},
@@ -12040,7 +11591,6 @@
"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"
},
@@ -12049,7 +11599,6 @@
"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"
},
@@ -12058,7 +11607,6 @@
"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"
},
@@ -12067,7 +11615,6 @@
"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"
},
@@ -12076,7 +11623,6 @@
"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"
},
@@ -12085,7 +11631,6 @@
"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"
},
@@ -12094,7 +11639,6 @@
"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"
},
@@ -12103,7 +11647,6 @@
"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"
},
@@ -12112,7 +11655,6 @@
"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"
},
@@ -12121,7 +11663,6 @@
"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"
},
@@ -12130,7 +11671,6 @@
"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"
},
@@ -12139,7 +11679,6 @@
"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"
},
@@ -12148,7 +11687,6 @@
"linker_set_key" : "_ZTIPN7android5MutexE",
"name" : "android::Mutex *",
"referenced_type" : "_ZTIN7android5MutexE",
- "self_type" : "_ZTIPN7android5MutexE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Mutex.h"
},
@@ -12157,7 +11695,6 @@
"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"
},
@@ -12166,7 +11703,6 @@
"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"
},
@@ -12175,7 +11711,6 @@
"linker_set_key" : "_ZTIPN7android6LooperE",
"name" : "android::Looper *",
"referenced_type" : "_ZTIN7android6LooperE",
- "self_type" : "_ZTIPN7android6LooperE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/StrongPointer.h"
},
@@ -12184,7 +11719,6 @@
"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"
},
@@ -12193,7 +11727,6 @@
"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"
},
@@ -12202,7 +11735,6 @@
"linker_set_key" : "_ZTIPN7android6RWLockE",
"name" : "android::RWLock *",
"referenced_type" : "_ZTIN7android6RWLockE",
- "self_type" : "_ZTIPN7android6RWLockE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/RWLock.h"
},
@@ -12211,7 +11743,6 @@
"linker_set_key" : "_ZTIPN7android6ThreadE",
"name" : "android::Thread *",
"referenced_type" : "_ZTIN7android6ThreadE",
- "self_type" : "_ZTIPN7android6ThreadE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/RefBase.h"
},
@@ -12220,7 +11751,6 @@
"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"
},
@@ -12229,7 +11759,6 @@
"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"
},
@@ -12238,7 +11767,6 @@
"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"
},
@@ -12247,7 +11775,6 @@
"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/binder/include/utils/Vector.h"
},
@@ -12256,7 +11783,6 @@
"linker_set_key" : "_ZTIPN7android7FileMapE",
"name" : "android::FileMap *",
"referenced_type" : "_ZTIN7android7FileMapE",
- "self_type" : "_ZTIPN7android7FileMapE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -12265,7 +11791,6 @@
"linker_set_key" : "_ZTIPN7android7MessageE",
"name" : "android::Message *",
"referenced_type" : "_ZTIN7android7MessageE",
- "self_type" : "_ZTIPN7android7MessageE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Looper.h"
},
@@ -12274,7 +11799,6 @@
"linker_set_key" : "_ZTIPN7android7PrinterE",
"name" : "android::Printer *",
"referenced_type" : "_ZTIN7android7PrinterE",
- "self_type" : "_ZTIPN7android7PrinterE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -12283,7 +11807,6 @@
"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"
},
@@ -12292,7 +11815,6 @@
"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"
},
@@ -12300,8 +11822,8 @@
"alignment" : 4,
"linker_set_key" : "_ZTIPN7android7RefBase12weakref_typeE",
"name" : "android::RefBase::weakref_type *",
- "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -12310,7 +11832,6 @@
"linker_set_key" : "_ZTIPN7android7RefBaseE",
"name" : "android::RefBase *",
"referenced_type" : "_ZTIN7android7RefBaseE",
- "self_type" : "_ZTIPN7android7RefBaseE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/RefBase.h"
},
@@ -12318,8 +11839,8 @@
"alignment" : 4,
"linker_set_key" : "_ZTIPN7android7RefBaseE",
"name" : "android::RefBase *",
- "referenced_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -12328,7 +11849,6 @@
"linker_set_key" : "_ZTIPN7android7String8E",
"name" : "android::String8 *",
"referenced_type" : "_ZTIN7android7String8E",
- "self_type" : "_ZTIPN7android7String8E",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -12336,8 +11856,8 @@
"alignment" : 4,
"linker_set_key" : "_ZTIPN7android7String8E",
"name" : "android::String8 *",
- "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIPN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -12346,7 +11866,6 @@
"linker_set_key" : "_ZTIPN7android8String1610StaticDataILj1EEE",
"name" : "android::String16::StaticData<1> *",
"referenced_type" : "_ZTIN7android8String1610StaticDataILj1EEE",
- "self_type" : "_ZTIPN7android8String1610StaticDataILj1EEE",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -12355,7 +11874,6 @@
"linker_set_key" : "_ZTIPN7android8String16E",
"name" : "android::String16 *",
"referenced_type" : "_ZTIN7android8String16E",
- "self_type" : "_ZTIPN7android8String16E",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -12364,7 +11882,6 @@
"linker_set_key" : "_ZTIPN7android9ConditionE",
"name" : "android::Condition *",
"referenced_type" : "_ZTIN7android9ConditionE",
- "self_type" : "_ZTIPN7android9ConditionE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Condition.h"
},
@@ -12373,7 +11890,6 @@
"linker_set_key" : "_ZTIPN7android9FdPrinterE",
"name" : "android::FdPrinter *",
"referenced_type" : "_ZTIN7android9FdPrinterE",
- "self_type" : "_ZTIPN7android9FdPrinterE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Printer.h"
},
@@ -12382,7 +11898,6 @@
"linker_set_key" : "_ZTIPN7android9StopWatchE",
"name" : "android::StopWatch *",
"referenced_type" : "_ZTIN7android9StopWatchE",
- "self_type" : "_ZTIPN7android9StopWatchE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/StopWatch.h"
},
@@ -12391,7 +11906,6 @@
"linker_set_key" : "_ZTIPN7android9TokenizerE",
"name" : "android::Tokenizer *",
"referenced_type" : "_ZTIN7android9TokenizerE",
- "self_type" : "_ZTIPN7android9TokenizerE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Tokenizer.h"
},
@@ -12400,7 +11914,6 @@
"linker_set_key" : "_ZTIPPN7android9TokenizerE",
"name" : "android::Tokenizer **",
"referenced_type" : "_ZTIPN7android9TokenizerE",
- "self_type" : "_ZTIPPN7android9TokenizerE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Tokenizer.h"
},
@@ -12409,7 +11922,6 @@
"linker_set_key" : "_ZTIPPv",
"name" : "void **",
"referenced_type" : "_ZTIPv",
- "self_type" : "_ZTIPPv",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/AndroidThreads.h"
},
@@ -12418,7 +11930,6 @@
"linker_set_key" : "_ZTIPc",
"name" : "char *",
"referenced_type" : "_ZTIc",
- "self_type" : "_ZTIPc",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -12427,7 +11938,6 @@
"linker_set_key" : "_ZTIPh",
"name" : "unsigned char *",
"referenced_type" : "_ZTIh",
- "self_type" : "_ZTIPh",
"size" : 4,
"source_file" : "system/core/libsystem/include/system/graphics.h"
},
@@ -12436,7 +11946,6 @@
"linker_set_key" : "_ZTIPi",
"name" : "int *",
"referenced_type" : "_ZTIi",
- "self_type" : "_ZTIPi",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Looper.h"
},
@@ -12445,7 +11954,6 @@
"linker_set_key" : "_ZTIPj",
"name" : "unsigned int *",
"referenced_type" : "_ZTIj",
- "self_type" : "_ZTIPj",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/Unicode.h"
},
@@ -12454,7 +11962,6 @@
"linker_set_key" : "_ZTIPv",
"name" : "void *",
"referenced_type" : "_ZTIv",
- "self_type" : "_ZTIPv",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
}
@@ -12467,7 +11974,6 @@
"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/binder/include/utils/String16.h"
},
@@ -12477,7 +11983,6 @@
"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"
},
@@ -12487,7 +11992,6 @@
"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"
},
@@ -12497,7 +12001,6 @@
"linker_set_key" : "_ZTIKDi",
"name" : "const char32_t",
"referenced_type" : "_ZTIDi",
- "self_type" : "_ZTIKDi",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -12507,7 +12010,6 @@
"linker_set_key" : "_ZTIKDs",
"name" : "const char16_t",
"referenced_type" : "_ZTIDs",
- "self_type" : "_ZTIKDs",
"size" : 2,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -12516,8 +12018,8 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android10VectorImplE",
"name" : "const android::VectorImpl",
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIKN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 20,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -12527,7 +12029,6 @@
"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"
},
@@ -12537,7 +12038,6 @@
"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"
},
@@ -12547,7 +12047,6 @@
"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"
},
@@ -12556,8 +12055,7 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android16ReferenceRenamerE",
"name" : "const android::ReferenceRenamer",
- "referenced_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android16ReferenceRenamerE",
+ "referenced_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -12566,8 +12064,7 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android16SortedVectorImplE",
"name" : "const android::SortedVectorImpl",
- "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android16SortedVectorImplE",
+ "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 20,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h"
},
@@ -12577,7 +12074,6 @@
"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"
},
@@ -12587,7 +12083,6 @@
"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"
},
@@ -12597,7 +12092,6 @@
"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"
},
@@ -12607,7 +12101,6 @@
"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"
},
@@ -12617,7 +12110,6 @@
"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"
},
@@ -12627,7 +12119,6 @@
"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"
},
@@ -12637,7 +12128,6 @@
"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"
},
@@ -12647,7 +12137,6 @@
"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"
},
@@ -12657,7 +12146,6 @@
"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"
},
@@ -12667,7 +12155,6 @@
"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"
},
@@ -12677,7 +12164,6 @@
"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"
},
@@ -12687,7 +12173,6 @@
"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"
},
@@ -12697,7 +12182,6 @@
"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"
},
@@ -12707,7 +12191,6 @@
"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"
},
@@ -12717,7 +12200,6 @@
"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"
},
@@ -12727,7 +12209,6 @@
"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"
},
@@ -12737,7 +12218,6 @@
"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"
},
@@ -12747,7 +12227,6 @@
"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"
},
@@ -12757,7 +12236,6 @@
"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/binder/include/utils/Vector.h"
},
@@ -12767,7 +12245,6 @@
"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"
},
@@ -12777,7 +12254,6 @@
"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"
},
@@ -12786,8 +12262,7 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android7RefBase12weakref_typeE",
"name" : "const android::RefBase::weakref_type",
- "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android7RefBase12weakref_typeE",
+ "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -12796,8 +12271,8 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android7RefBaseE",
"name" : "const android::RefBase",
- "referenced_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIKN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -12807,7 +12282,6 @@
"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"
},
@@ -12816,8 +12290,8 @@
"is_const" : true,
"linker_set_key" : "_ZTIKN7android7String8E",
"name" : "const android::String8",
- "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIKN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -12827,7 +12301,6 @@
"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"
},
@@ -12837,7 +12310,6 @@
"linker_set_key" : "_ZTIKN7android8String1610StaticDataILj1EEE",
"name" : "const android::String16::StaticData<1>",
"referenced_type" : "_ZTIN7android8String1610StaticDataILj1EEE",
- "self_type" : "_ZTIKN7android8String1610StaticDataILj1EEE",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -12847,7 +12319,6 @@
"linker_set_key" : "_ZTIKN7android8String16E",
"name" : "const android::String16",
"referenced_type" : "_ZTIN7android8String16E",
- "self_type" : "_ZTIKN7android8String16E",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -12857,7 +12328,6 @@
"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"
},
@@ -12867,27 +12337,15 @@
"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"
},
@@ -12897,7 +12355,6 @@
"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"
},
@@ -12907,7 +12364,6 @@
"linker_set_key" : "_ZTIKb",
"name" : "const bool",
"referenced_type" : "_ZTIb",
- "self_type" : "_ZTIKb",
"size" : 1,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12917,7 +12373,6 @@
"linker_set_key" : "_ZTIKc",
"name" : "const char",
"referenced_type" : "_ZTIc",
- "self_type" : "_ZTIKc",
"size" : 1,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -12927,7 +12382,6 @@
"linker_set_key" : "_ZTIKd",
"name" : "const double",
"referenced_type" : "_ZTId",
- "self_type" : "_ZTIKd",
"size" : 8,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12937,7 +12391,6 @@
"linker_set_key" : "_ZTIKf",
"name" : "const float",
"referenced_type" : "_ZTIf",
- "self_type" : "_ZTIKf",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12947,7 +12400,6 @@
"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"
},
@@ -12957,7 +12409,6 @@
"linker_set_key" : "_ZTIKi",
"name" : "const int",
"referenced_type" : "_ZTIi",
- "self_type" : "_ZTIKi",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12967,7 +12418,6 @@
"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"
},
@@ -12977,7 +12427,6 @@
"linker_set_key" : "_ZTIKs",
"name" : "const short",
"referenced_type" : "_ZTIs",
- "self_type" : "_ZTIKs",
"size" : 2,
"source_file" : "system/core/libutils/include/utils/TypeHelpers.h"
},
@@ -12987,7 +12436,6 @@
"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"
},
@@ -12996,7 +12444,6 @@
"linker_set_key" : "_ZTIKv",
"name" : "const void",
"referenced_type" : "_ZTIv",
- "self_type" : "_ZTIKv",
"source_file" : "system/core/libutils/include/utils/LightRefBase.h"
},
{
@@ -13005,7 +12452,6 @@
"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"
},
@@ -13015,7 +12461,6 @@
"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"
},
@@ -13025,7 +12470,6 @@
"linker_set_key" : "_ZTIVb",
"name" : "volatile bool",
"referenced_type" : "_ZTIb",
- "self_type" : "_ZTIVb",
"size" : 1,
"source_file" : "system/core/libutils/include/utils/Thread.h"
}
@@ -13078,8 +12522,6 @@
],
"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"
},
@@ -13124,8 +12566,6 @@
],
"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"
},
@@ -13155,8 +12595,6 @@
],
"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"
},
@@ -13176,8 +12614,6 @@
],
"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"
},
@@ -13227,8 +12663,6 @@
],
"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"
},
@@ -13253,8 +12687,6 @@
],
"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"
},
@@ -13279,8 +12711,6 @@
],
"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"
},
@@ -13325,8 +12755,6 @@
],
"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"
},
@@ -13346,8 +12774,6 @@
],
"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"
},
@@ -13387,8 +12813,6 @@
],
"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"
},
@@ -13402,8 +12826,6 @@
],
"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"
},
@@ -13423,8 +12845,6 @@
],
"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"
},
@@ -13466,8 +12886,6 @@
"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" :
@@ -13527,8 +12945,6 @@
"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" :
@@ -13606,8 +13022,7 @@
"linker_set_key" : "_ZTIN7android10VectorImplE",
"name" : "android::VectorImpl",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 20,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h",
"vtable_components" :
@@ -13666,8 +13081,6 @@
"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"
},
@@ -13684,8 +13097,6 @@
"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" :
@@ -13706,8 +13117,6 @@
"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" :
@@ -13728,13 +13137,12 @@
"linker_set_key" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE",
"name" : "android::LightRefBase<android::VirtualLightRefBase>",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/LightRefBase.h",
"template_args" :
[
- "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
]
},
{
@@ -13763,8 +13171,6 @@
"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"
},
@@ -13794,8 +13200,6 @@
"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" :
@@ -13827,8 +13231,6 @@
"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" :
@@ -13840,8 +13242,6 @@
"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" :
@@ -13853,8 +13253,6 @@
"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" :
@@ -13874,8 +13272,6 @@
"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" :
@@ -13961,8 +13357,6 @@
"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" :
@@ -14041,8 +13435,6 @@
"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"
},
@@ -14051,8 +13443,7 @@
"linker_set_key" : "_ZTIN7android14ReferenceMoverE",
"name" : "android::ReferenceMover",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android14ReferenceMoverE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android14ReferenceMoverE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android14ReferenceMoverE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -14076,8 +13467,6 @@
"linker_set_key" : "_ZTIN7android14StaticString16ILj1EEE",
"name" : "android::StaticString16<1>",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android14StaticString16ILj1EEE",
- "self_type" : "_ZTIN7android14StaticString16ILj1EEE",
"size" : 12,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -14107,8 +13496,6 @@
"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" :
@@ -14141,8 +13528,6 @@
"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" :
@@ -14165,8 +13550,7 @@
"linker_set_key" : "_ZTIN7android16ReferenceRenamerE",
"name" : "android::ReferenceRenamer",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android16ReferenceRenamerE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h",
"vtable_components" :
@@ -14195,8 +13579,6 @@
"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" :
@@ -14251,14 +13633,13 @@
"base_specifiers" :
[
{
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"linker_set_key" : "_ZTIN7android16SortedVectorImplE",
"name" : "android::SortedVectorImpl",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android16SortedVectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 20,
"source_file" : "system/core/libutils/binder/include/utils/VectorImpl.h",
"vtable_components" :
@@ -14318,8 +13699,6 @@
],
"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" :
@@ -14337,8 +13716,6 @@
],
"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" :
@@ -14356,8 +13733,6 @@
],
"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" :
@@ -14385,8 +13760,6 @@
"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" :
@@ -14463,8 +13836,6 @@
"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" :
@@ -14476,8 +13847,6 @@
"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" :
@@ -14489,8 +13858,6 @@
"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" :
@@ -14502,8 +13869,6 @@
"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" :
@@ -14515,8 +13880,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIbEE",
"name" : "android::trait_trivial_copy<bool>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14528,8 +13892,6 @@
"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" :
@@ -14541,8 +13903,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIcEE",
"name" : "android::trait_trivial_copy<char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14554,8 +13915,6 @@
"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" :
@@ -14567,8 +13926,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIdEE",
"name" : "android::trait_trivial_copy<double>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14580,8 +13938,6 @@
"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" :
@@ -14593,8 +13949,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIfEE",
"name" : "android::trait_trivial_copy<float>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14606,8 +13961,6 @@
"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" :
@@ -14619,8 +13972,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIhEE",
"name" : "android::trait_trivial_copy<unsigned char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14632,8 +13984,6 @@
"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" :
@@ -14645,8 +13995,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIiEE",
"name" : "android::trait_trivial_copy<int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14658,8 +14007,6 @@
"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" :
@@ -14671,8 +14018,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIjEE",
"name" : "android::trait_trivial_copy<unsigned int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14684,8 +14030,6 @@
"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" :
@@ -14697,8 +14041,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIlEE",
"name" : "android::trait_trivial_copy<long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14710,8 +14053,6 @@
"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" :
@@ -14723,8 +14064,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyImEE",
"name" : "android::trait_trivial_copy<unsigned long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14736,8 +14076,6 @@
"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" :
@@ -14749,8 +14087,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIsEE",
"name" : "android::trait_trivial_copy<short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14762,8 +14099,6 @@
"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" :
@@ -14775,8 +14110,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyItEE",
"name" : "android::trait_trivial_copy<unsigned short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14788,8 +14122,6 @@
"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" :
@@ -14801,8 +14133,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIvEE",
"name" : "android::trait_trivial_copy<void>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14814,8 +14145,6 @@
"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" :
@@ -14827,8 +14156,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIxEE",
"name" : "android::trait_trivial_copy<long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14840,8 +14168,6 @@
"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" :
@@ -14853,8 +14179,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_copyIyEE",
"name" : "android::trait_trivial_copy<unsigned long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_copyIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_copyIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_copyIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14866,8 +14191,6 @@
"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" :
@@ -14879,8 +14202,6 @@
"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" :
@@ -14892,8 +14213,6 @@
"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" :
@@ -14905,8 +14224,6 @@
"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" :
@@ -14918,8 +14235,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIbEE",
"name" : "android::trait_trivial_ctor<bool>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14931,8 +14247,6 @@
"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" :
@@ -14944,8 +14258,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIcEE",
"name" : "android::trait_trivial_ctor<char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14957,8 +14270,6 @@
"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" :
@@ -14970,8 +14281,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIdEE",
"name" : "android::trait_trivial_ctor<double>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -14983,8 +14293,6 @@
"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" :
@@ -14996,8 +14304,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIfEE",
"name" : "android::trait_trivial_ctor<float>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15009,8 +14316,6 @@
"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" :
@@ -15022,8 +14327,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIhEE",
"name" : "android::trait_trivial_ctor<unsigned char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15035,8 +14339,6 @@
"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" :
@@ -15048,8 +14350,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIiEE",
"name" : "android::trait_trivial_ctor<int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15061,8 +14362,6 @@
"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" :
@@ -15074,8 +14373,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIjEE",
"name" : "android::trait_trivial_ctor<unsigned int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15087,8 +14385,6 @@
"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" :
@@ -15100,8 +14396,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIlEE",
"name" : "android::trait_trivial_ctor<long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15113,8 +14408,6 @@
"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" :
@@ -15126,8 +14419,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorImEE",
"name" : "android::trait_trivial_ctor<unsigned long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15139,8 +14431,6 @@
"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" :
@@ -15152,8 +14442,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIsEE",
"name" : "android::trait_trivial_ctor<short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15165,8 +14454,6 @@
"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" :
@@ -15178,8 +14465,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorItEE",
"name" : "android::trait_trivial_ctor<unsigned short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15191,8 +14477,6 @@
"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" :
@@ -15204,8 +14488,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIvEE",
"name" : "android::trait_trivial_ctor<void>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15217,8 +14500,6 @@
"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" :
@@ -15230,8 +14511,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIxEE",
"name" : "android::trait_trivial_ctor<long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15243,8 +14523,6 @@
"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" :
@@ -15256,8 +14534,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_ctorIyEE",
"name" : "android::trait_trivial_ctor<unsigned long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_ctorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_ctorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_ctorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15269,8 +14546,6 @@
"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" :
@@ -15282,8 +14557,6 @@
"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" :
@@ -15295,8 +14568,6 @@
"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" :
@@ -15308,8 +14579,6 @@
"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" :
@@ -15321,8 +14590,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIbEE",
"name" : "android::trait_trivial_dtor<bool>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15334,8 +14602,6 @@
"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" :
@@ -15347,8 +14613,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIcEE",
"name" : "android::trait_trivial_dtor<char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15360,8 +14625,6 @@
"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" :
@@ -15373,8 +14636,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIdEE",
"name" : "android::trait_trivial_dtor<double>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15386,8 +14648,6 @@
"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" :
@@ -15399,8 +14659,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIfEE",
"name" : "android::trait_trivial_dtor<float>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15412,8 +14671,6 @@
"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" :
@@ -15425,8 +14682,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIhEE",
"name" : "android::trait_trivial_dtor<unsigned char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15438,8 +14694,6 @@
"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" :
@@ -15451,8 +14705,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIiEE",
"name" : "android::trait_trivial_dtor<int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15464,8 +14717,6 @@
"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" :
@@ -15477,8 +14728,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIjEE",
"name" : "android::trait_trivial_dtor<unsigned int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15490,8 +14740,6 @@
"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" :
@@ -15503,8 +14751,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIlEE",
"name" : "android::trait_trivial_dtor<long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15516,8 +14763,6 @@
"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" :
@@ -15529,8 +14774,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorImEE",
"name" : "android::trait_trivial_dtor<unsigned long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15542,8 +14786,6 @@
"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" :
@@ -15555,8 +14797,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIsEE",
"name" : "android::trait_trivial_dtor<short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15568,8 +14809,6 @@
"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" :
@@ -15581,8 +14820,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorItEE",
"name" : "android::trait_trivial_dtor<unsigned short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15594,8 +14832,6 @@
"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" :
@@ -15607,8 +14843,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIvEE",
"name" : "android::trait_trivial_dtor<void>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15620,8 +14855,6 @@
"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" :
@@ -15633,8 +14866,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIxEE",
"name" : "android::trait_trivial_dtor<long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15646,8 +14878,6 @@
"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" :
@@ -15659,8 +14889,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_dtorIyEE",
"name" : "android::trait_trivial_dtor<unsigned long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_dtorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_dtorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_dtorIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15672,8 +14901,6 @@
"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" :
@@ -15685,8 +14912,6 @@
"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" :
@@ -15698,8 +14923,6 @@
"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" :
@@ -15711,8 +14934,6 @@
"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" :
@@ -15724,21 +14945,18 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE",
"name" : "android::trait_trivial_move<android::String8>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveINS_7String8EEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/String8.h",
"template_args" :
[
- "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
]
},
{
"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/binder/include/utils/String16.h",
"template_args" :
@@ -15750,8 +14968,6 @@
"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" :
@@ -15763,8 +14979,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIbEE",
"name" : "android::trait_trivial_move<bool>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIbEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15776,8 +14991,6 @@
"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" :
@@ -15789,8 +15002,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIcEE",
"name" : "android::trait_trivial_move<char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIcEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15802,8 +15014,6 @@
"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" :
@@ -15815,8 +15025,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIdEE",
"name" : "android::trait_trivial_move<double>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIdEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15828,8 +15037,6 @@
"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" :
@@ -15841,8 +15048,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIfEE",
"name" : "android::trait_trivial_move<float>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIfEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15854,8 +15060,6 @@
"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" :
@@ -15867,8 +15071,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIhEE",
"name" : "android::trait_trivial_move<unsigned char>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIhEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15880,8 +15083,6 @@
"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" :
@@ -15893,8 +15094,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIiEE",
"name" : "android::trait_trivial_move<int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIiEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15906,8 +15106,6 @@
"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" :
@@ -15919,8 +15117,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIjEE",
"name" : "android::trait_trivial_move<unsigned int>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIjEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15932,8 +15129,6 @@
"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" :
@@ -15945,8 +15140,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIlEE",
"name" : "android::trait_trivial_move<long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIlEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15958,8 +15152,6 @@
"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" :
@@ -15971,8 +15163,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveImEE",
"name" : "android::trait_trivial_move<unsigned long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveImEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -15984,8 +15175,6 @@
"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" :
@@ -15997,8 +15186,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIsEE",
"name" : "android::trait_trivial_move<short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIsEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -16010,8 +15198,6 @@
"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" :
@@ -16023,8 +15209,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveItEE",
"name" : "android::trait_trivial_move<unsigned short>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveItEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -16036,8 +15221,6 @@
"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" :
@@ -16049,8 +15232,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIvEE",
"name" : "android::trait_trivial_move<void>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIvEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -16062,8 +15244,6 @@
"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" :
@@ -16075,8 +15255,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIxEE",
"name" : "android::trait_trivial_move<long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIxEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -16088,8 +15267,6 @@
"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" :
@@ -16101,8 +15278,7 @@
"alignment" : 1,
"linker_set_key" : "_ZTIN7android18trait_trivial_moveIyEE",
"name" : "android::trait_trivial_move<unsigned long long>",
- "referenced_type" : "_ZTIN7android18trait_trivial_moveIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android18trait_trivial_moveIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android18trait_trivial_moveIyEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/TypeHelpers.h",
"template_args" :
@@ -16121,8 +15297,6 @@
"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" :
@@ -16149,14 +15323,13 @@
"base_specifiers" :
[
{
- "referenced_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIN7android12LightRefBaseINS_19VirtualLightRefBaseEEE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"linker_set_key" : "_ZTIN7android19VirtualLightRefBaseE",
"name" : "android::VirtualLightRefBase",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android19VirtualLightRefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/LightRefBase.h",
"vtable_components" :
@@ -16198,8 +15371,6 @@
"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" :
@@ -16285,8 +15456,6 @@
"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" :
@@ -16307,8 +15476,6 @@
"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" :
@@ -16329,8 +15496,6 @@
"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" :
@@ -16351,8 +15516,6 @@
"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" :
@@ -16373,8 +15536,6 @@
"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" :
@@ -16395,8 +15556,6 @@
"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" :
@@ -16423,8 +15582,6 @@
"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" :
@@ -16451,8 +15608,6 @@
"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" :
@@ -16472,8 +15627,6 @@
],
"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"
},
@@ -16481,8 +15634,6 @@
"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"
},
@@ -16499,8 +15650,6 @@
"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" :
@@ -16521,8 +15670,6 @@
"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"
},
@@ -16539,8 +15686,6 @@
"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"
},
@@ -16566,8 +15711,6 @@
],
"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"
},
@@ -16603,8 +15746,6 @@
],
"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"
},
@@ -16630,8 +15771,6 @@
],
"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"
},
@@ -16733,8 +15872,6 @@
"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" :
@@ -16781,8 +15918,6 @@
"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"
},
@@ -16799,8 +15934,6 @@
"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"
},
@@ -16817,8 +15950,6 @@
"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"
},
@@ -16891,8 +16022,6 @@
"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" :
@@ -16987,8 +16116,6 @@
"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" :
@@ -17044,8 +16171,6 @@
"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" :
@@ -17101,8 +16226,6 @@
"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" :
@@ -17152,19 +16275,17 @@
[
{
"access" : "private",
- "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "referenced_type" : "_ZTIN7android10VectorImplE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
}
],
"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/binder/include/utils/Vector.h",
"template_args" :
[
- "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump"
+ "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump"
],
"vtable_components" :
[
@@ -17207,8 +16328,6 @@
"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" :
@@ -17220,8 +16339,6 @@
"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" :
@@ -17233,8 +16350,6 @@
"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" :
@@ -17285,8 +16400,6 @@
"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"
},
@@ -17301,8 +16414,6 @@
],
"linker_set_key" : "_ZTIN7android7MessageE",
"name" : "android::Message",
- "referenced_type" : "_ZTIN7android7MessageE",
- "self_type" : "_ZTIN7android7MessageE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/Looper.h"
},
@@ -17311,8 +16422,6 @@
"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" :
@@ -17346,8 +16455,6 @@
"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"
},
@@ -17356,8 +16463,7 @@
"linker_set_key" : "_ZTIN7android7RefBase12weakref_typeE",
"name" : "android::RefBase::weakref_type",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android7RefBase12weakref_typeE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 1,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h"
},
@@ -17375,8 +16481,6 @@
"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" :
@@ -17424,8 +16528,7 @@
"linker_set_key" : "_ZTIN7android7RefBaseE",
"name" : "android::RefBase",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android7RefBaseE#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/RefBase.h",
"vtable_components" :
@@ -17472,8 +16575,6 @@
"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"
},
@@ -17490,8 +16591,7 @@
"linker_set_key" : "_ZTIN7android7String8E",
"name" : "android::String8",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
- "self_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor.VanillaIceCream_arm_armv8-a_static_afdo-libutils/e560d7b19ebf7276b3e850d3d346dec8/obj/system/core/libutils/binder/RefBase.sdump",
+ "self_type" : "_ZTIN7android7String8E#ODR:out/soong/.intermediates/system/core/libutils/binder/libutils_binder/android_vendor_arm_armv8-a_cortex-a53_static_afdo-libutils/obj/system/core/libutils/binder/RefBase.sdump",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String8.h"
},
@@ -17511,8 +16611,6 @@
],
"linker_set_key" : "_ZTIN7android8String1610StaticDataILj1EEE",
"name" : "android::String16::StaticData<1>",
- "referenced_type" : "_ZTIN7android8String1610StaticDataILj1EEE",
- "self_type" : "_ZTIN7android8String1610StaticDataILj1EEE",
"size" : 8,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -17529,8 +16627,6 @@
"linker_set_key" : "_ZTIN7android8String16E",
"name" : "android::String16",
"record_kind" : "class",
- "referenced_type" : "_ZTIN7android8String16E",
- "self_type" : "_ZTIN7android8String16E",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
},
@@ -17547,8 +16643,6 @@
"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"
},
@@ -17590,8 +16684,6 @@
"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" :
@@ -17644,8 +16736,6 @@
"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"
},
@@ -17698,8 +16788,6 @@
"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"
},
@@ -17720,8 +16808,6 @@
"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"
}
@@ -17733,7 +16819,6 @@
"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"
},
@@ -17742,7 +16827,6 @@
"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"
},
@@ -17751,7 +16835,6 @@
"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"
},
@@ -17760,7 +16843,6 @@
"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"
},
@@ -17769,7 +16851,6 @@
"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"
},
@@ -17778,7 +16859,6 @@
"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"
},
@@ -17787,7 +16867,6 @@
"linker_set_key" : "_ZTION7android7FileMapE",
"name" : "android::FileMap &&",
"referenced_type" : "_ZTIN7android7FileMapE",
- "self_type" : "_ZTION7android7FileMapE",
"size" : 4,
"source_file" : "system/core/libutils/include/utils/FileMap.h"
},
@@ -17796,7 +16875,6 @@
"linker_set_key" : "_ZTION7android8String16E",
"name" : "android::String16 &&",
"referenced_type" : "_ZTIN7android8String16E",
- "self_type" : "_ZTION7android8String16E",
"size" : 4,
"source_file" : "system/core/libutils/binder/include/utils/String16.h"
}
diff --git a/libutils/include/utils/Looper.h b/libutils/include/utils/Looper.h
index a02280b..eea348e 100644
--- a/libutils/include/utils/Looper.h
+++ b/libutils/include/utils/Looper.h
@@ -323,6 +323,12 @@
int addFd(int fd, int ident, int events, const sp<LooperCallback>& callback, void* data);
/**
+ * May be useful for testing, instead of executing a looper on another thread for code expecting
+ * a looper, you can call callbacks directly.
+ */
+ bool getFdStateDebug(int fd, int* ident, int* events, sp<LooperCallback>* cb, void** data);
+
+ /**
* Removes a previously added file descriptor from the looper.
*
* When this method returns, it is safe to close the file descriptor since the looper
diff --git a/property_service/libpropertyinfoserializer/property_info_serializer_test.cpp b/property_service/libpropertyinfoserializer/property_info_serializer_test.cpp
index a484441..bed4a73 100644
--- a/property_service/libpropertyinfoserializer/property_info_serializer_test.cpp
+++ b/property_service/libpropertyinfoserializer/property_info_serializer_test.cpp
@@ -729,7 +729,6 @@
{"sys.ims.QMI_DAEMON_STATUS", "u:object_r:qcom_ims_prop:s0"},
{"sys.listeners.registered", "u:object_r:qseecomtee_prop:s0"},
{"sys.logbootcomplete", "u:object_r:system_prop:s0"},
- {"sys.oem_unlock_allowed", "u:object_r:system_prop:s0"},
{"sys.qcom.devup", "u:object_r:system_prop:s0"},
{"sys.sysctl.extra_free_kbytes", "u:object_r:system_prop:s0"},
{"sys.usb.config", "u:object_r:system_radio_prop:s0"},
diff --git a/rootdir/Android.bp b/rootdir/Android.bp
index 5f0a2c3..44acbba 100644
--- a/rootdir/Android.bp
+++ b/rootdir/Android.bp
@@ -50,10 +50,15 @@
recovery_available: true,
}
+filegroup {
+ name: "system_linker_config_json_file",
+ srcs: ["etc/linker.config.json"],
+}
+
// TODO(b/147210213) Generate list of libraries during build and fill in at build time
linker_config {
name: "system_linker_config",
- src: "etc/linker.config.json",
+ src: ":system_linker_config_json_file",
installable: false,
}
diff --git a/rootdir/Android.mk b/rootdir/create_root_structure.mk
similarity index 97%
rename from rootdir/Android.mk
rename to rootdir/create_root_structure.mk
index f866e9b..1daf239 100644
--- a/rootdir/Android.mk
+++ b/rootdir/create_root_structure.mk
@@ -1,7 +1,5 @@
LOCAL_PATH:= $(call my-dir)
-$(eval $(call declare-1p-copy-files,system/core/rootdir,))
-
#######################################
ifneq ($(filter address,$(SANITIZE_TARGET)),)
ASAN_EXTRACT_FILES :=
@@ -35,7 +33,8 @@
ln -sf /system/etc $(TARGET_ROOT_OUT)/etc; \
ln -sf /data/user_de/0/com.android.shell/files/bugreports $(TARGET_ROOT_OUT)/bugreports; \
ln -sfn /sys/kernel/debug $(TARGET_ROOT_OUT)/d; \
- ln -sf /storage/self/primary $(TARGET_ROOT_OUT)/sdcard
+ ln -sf /storage/self/primary $(TARGET_ROOT_OUT)/sdcard; \
+ ln -sf /product/etc/security/adb_keys $(TARGET_ROOT_OUT)/adb_keys
ALL_ROOTDIR_SYMLINKS := \
$(TARGET_ROOT_OUT)/bin \
@@ -150,4 +149,3 @@
init.environ.rc-soong := $(call intermediates-dir-for,ETC,init.environ.rc-soong)/init.environ.rc-soong
$(eval $(call copy-one-file,$(init.environ.rc-soong),$(LOCAL_BUILT_MODULE)))
init.environ.rc-soong :=
-
diff --git a/rootdir/init.rc b/rootdir/init.rc
index b967831..1acd637 100644
--- a/rootdir/init.rc
+++ b/rootdir/init.rc
@@ -103,7 +103,7 @@
# Mix device-specific information into the entropy pool
copy /proc/cmdline /dev/urandom
- copy /system/etc/prop.default /dev/urandom
+ copy /proc/bootconfig /dev/urandom
symlink /proc/self/fd/0 /dev/stdin
symlink /proc/self/fd/1 /dev/stdout
@@ -495,6 +495,14 @@
start hwservicemanager
start vndservicemanager
+ # Mount /mnt/vm ASAP to allow early VMs to run.
+ mkdir /mnt/vm 0755 root root
+ mount tmpfs tmpfs /mnt/vm nosuid nodev noexec rw
+ restorecon /mnt/vm
+ chown system system /mnt/vm
+ chmod 0770 /mnt/vm
+ mkdir /mnt/vm/early 0770 system system
+
# Run boringssl self test for each ABI. Any failures trigger reboot to firmware.
import /system/etc/init/hw/init.boringssl.${ro.zygote}.rc
@@ -559,7 +567,8 @@
trigger post-fs-data
# Should be before netd, but after apex, properties and logging is available.
- trigger load_bpf_programs
+ trigger load-bpf-programs
+ trigger bpf-progs-loaded
# Now we can start zygote.
trigger zygote-start
@@ -661,14 +670,6 @@
chmod 0755 /sys/kernel/tracing
chmod 0755 /sys/kernel/debug/tracing
- # Early HALs may use early VM. Mount /mnt/vm before starting such HALs.
- mkdir /mnt/vm 0755 root root
- mount tmpfs tmpfs /mnt/vm nosuid nodev noexec rw
- restorecon /mnt/vm
- chown system system /mnt/vm
- chmod 0770 /mnt/vm
- mkdir /mnt/vm/early 0770 system system
-
# HALs required before storage encryption can get unlocked (FBE)
class_start early_hal
@@ -696,8 +697,6 @@
on post-fs-data
- mark_post_data
-
# Start checkpoint before we touch data
exec - system system -- /system/bin/vdc checkpoint prepareCheckpoint
@@ -1111,6 +1110,22 @@
on property:vold.checkpoint_committed=1
trigger post-fs-data-checkpointed
+# It is important that we start bpfloader after:
+# - /sys/fs/bpf is already mounted,
+# - apex (incl. rollback) is initialized (so that we can load bpf
+# programs shipped as part of apex mainline modules)
+# - logd is ready for us to log stuff
+#
+# At the same time we want to be as early as possible to reduce races and thus
+# failures (before memory is fragmented, and cpu is busy running tons of other
+# stuff) and we absolutely want to be before netd and the system boot slot is
+# considered to have booted successfully.
+on load-bpf-programs
+ exec_start bpfloader
+
+on bpf-progs-loaded
+ start netd
+
# It is recommended to put unnecessary data/ initialization from post-fs-data
# to start-zygote in device's init.rc to unblock zygote start.
on zygote-start
@@ -1118,7 +1133,6 @@
# A/B update verifier that marks a successful boot.
exec_start update_verifier
start statsd
- start netd
start zygote
start zygote_secondary
@@ -1279,7 +1293,7 @@
# controlling access. On older kernels, the paranoid value is the only means of
# controlling access. It is normally 3 (allow only root), but the shell user
# can lower it to 1 (allowing thread-scoped pofiling) via security.perf_harden.
-on load_bpf_programs && property:sys.init.perf_lsm_hooks=1
+on load-bpf-programs && property:sys.init.perf_lsm_hooks=1
write /proc/sys/kernel/perf_event_paranoid -1
on property:security.perf_harden=0 && property:sys.init.perf_lsm_hooks=""
write /proc/sys/kernel/perf_event_paranoid 1
diff --git a/shell_and_utilities/Android.bp b/shell_and_utilities/Android.bp
index d85f6ed..d5893de 100644
--- a/shell_and_utilities/Android.bp
+++ b/shell_and_utilities/Android.bp
@@ -18,6 +18,7 @@
"awk",
"bc",
"bzip2",
+ "cpu-target-features",
"fsck.exfat",
"ldd",
"logwrapper",
diff --git a/trusty/gatekeeper/android.hardware.gatekeeper-service.trusty.rc b/trusty/gatekeeper/android.hardware.gatekeeper-service.trusty.rc
index 66ecbd1..2c9bd83 100644
--- a/trusty/gatekeeper/android.hardware.gatekeeper-service.trusty.rc
+++ b/trusty/gatekeeper/android.hardware.gatekeeper-service.trusty.rc
@@ -1,4 +1,5 @@
-service vendor.gatekeeper_default /vendor/bin/hw/android.hardware.gatekeeper-service.trusty
+service vendor.gatekeeper_default /vendor/bin/hw/android.hardware.gatekeeper-service.trusty \
+ --dev ${ro.hardware.trusty_ipc_dev.gatekeeper:-/dev/trusty-ipc-dev0}
class hal
user system
group system
diff --git a/trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty.rc b/trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty.rc
index 389af41..0ceb584 100644
--- a/trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty.rc
+++ b/trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty.rc
@@ -1,4 +1,5 @@
-service vendor.keymint-trusty /vendor/bin/hw/android.hardware.security.keymint-service.trusty
+service vendor.keymint-trusty /vendor/bin/hw/android.hardware.security.keymint-service.trusty \
+ --dev ${ro.hardware.trusty_ipc_dev.keymint:-/dev/trusty-ipc-dev0}
class early_hal
user nobody
group drmrpc
diff --git a/trusty/keymint/Android.bp b/trusty/keymint/Android.bp
index 92d9c6f..5cdd381 100644
--- a/trusty/keymint/Android.bp
+++ b/trusty/keymint/Android.bp
@@ -17,12 +17,9 @@
default_applicable_licenses: ["Android-Apache-2.0"],
}
-rust_binary {
- name: "android.hardware.security.keymint-service.rust.trusty",
+rust_defaults {
+ name: "android.hardware.security.keymint-service.rust.trusty.default",
relative_install_path: "hw",
- vendor: true,
- init_rc: ["android.hardware.security.keymint-service.rust.trusty.rc"],
- vintf_fragments: ["android.hardware.security.keymint-service.rust.trusty.xml"],
srcs: [
"src/keymint_hal_main.rs",
],
@@ -37,7 +34,26 @@
"liblog_rust",
],
prefer_rlib: true,
+}
+
+rust_binary {
+ name: "android.hardware.security.keymint-service.rust.trusty",
+ vendor: true,
+ defaults: ["android.hardware.security.keymint-service.rust.trusty.default"],
+ init_rc: ["android.hardware.security.keymint-service.rust.trusty.rc"],
+ vintf_fragments: ["android.hardware.security.keymint-service.rust.trusty.xml"],
required: [
"android.hardware.hardware_keystore.xml",
],
}
+
+rust_binary {
+ name: "android.hardware.security.keymint-service.rust.trusty.system.nonsecure",
+ system_ext_specific: true,
+ defaults: ["android.hardware.security.keymint-service.rust.trusty.default"],
+ init_rc: ["android.hardware.security.keymint-service.rust.trusty.system.nonsecure.rc"],
+ features: ["nonsecure"],
+ rustlibs: [
+ "libkmr_hal_nonsecure",
+ ],
+}
diff --git a/trusty/keymint/android.hardware.security.keymint-service.rust.trusty.rc b/trusty/keymint/android.hardware.security.keymint-service.rust.trusty.rc
index e3d94c6..3e3f2a5 100644
--- a/trusty/keymint/android.hardware.security.keymint-service.rust.trusty.rc
+++ b/trusty/keymint/android.hardware.security.keymint-service.rust.trusty.rc
@@ -1,7 +1,8 @@
-service vendor.keymint.rust-trusty /vendor/bin/hw/android.hardware.security.keymint-service.rust.trusty
+service vendor.keymint.rust-trusty /vendor/bin/hw/android.hardware.security.keymint-service.rust.trusty \
+ --dev ${ro.hardware.trusty_ipc_dev.keymint:-/dev/trusty-ipc-dev0}
class early_hal
user nobody
group drmrpc
# The keymint service is not allowed to restart.
# If it crashes, a device restart is required.
- oneshot
\ No newline at end of file
+ oneshot
diff --git a/trusty/keymint/android.hardware.security.keymint-service.rust.trusty.system.nonsecure.rc b/trusty/keymint/android.hardware.security.keymint-service.rust.trusty.system.nonsecure.rc
new file mode 100644
index 0000000..2799188
--- /dev/null
+++ b/trusty/keymint/android.hardware.security.keymint-service.rust.trusty.system.nonsecure.rc
@@ -0,0 +1,17 @@
+service system.keymint.rust-trusty.nonsecure \
+ /system_ext/bin/hw/android.hardware.security.keymint-service.rust.trusty.system.nonsecure \
+ --dev ${system.keymint.trusty_ipc_dev:-/dev/trusty-ipc-dev0}
+ disabled
+ user nobody
+ group drmrpc
+ # The keymint service is not allowed to restart.
+ # If it crashes, a device restart is required.
+ oneshot
+
+# Only starts the non-secure KeyMint HALs when the KeyMint VM feature is enabled
+# TODO(b/357821690): Start the KeyMint HALs when the KeyMint VM is ready once the Trusty VM
+# has a mechanism to notify the host.
+on late-fs && property:ro.hardware.security.keymint.trusty.system=1 && \
+ property:trusty_vm_system.vm_cid=*
+ setprop system.keymint.trusty_ipc_dev VSOCK:${trusty_vm_system.vm_cid}:1
+ start system.keymint.rust-trusty.nonsecure
diff --git a/trusty/keymint/src/keymint_hal_main.rs b/trusty/keymint/src/keymint_hal_main.rs
index 3c5627b..a0b1d79 100644
--- a/trusty/keymint/src/keymint_hal_main.rs
+++ b/trusty/keymint/src/keymint_hal_main.rs
@@ -18,7 +18,7 @@
use kmr_hal::{
extract_rsp, keymint, rpc, secureclock, send_hal_info, sharedsecret, SerializedChannel,
};
-use log::{error, info};
+use log::{error, info, warn};
use std::{
ffi::CString,
ops::DerefMut,
@@ -109,7 +109,11 @@
error!("{}", panic_info);
}));
- info!("Trusty KM HAL service is starting.");
+ if cfg!(feature = "nonsecure") {
+ warn!("Non-secure Trusty KM HAL service is starting.");
+ } else {
+ info!("Trusty KM HAL service is starting.");
+ }
info!("Starting thread pool now.");
binder::ProcessState::start_thread_pool();
@@ -126,6 +130,29 @@
)?;
let tipc_channel = Arc::new(Mutex::new(TipcChannel(connection)));
+ #[cfg(feature = "nonsecure")]
+ {
+ // When the non-secure feature is enabled, retrieve root-of-trust information
+ // (with the exception of the verified boot key hash) from Android properties, and
+ // populate the TA with this information. On a real device, the bootloader should
+ // provide this data to the TA directly.
+ let boot_req = kmr_hal_nonsecure::get_boot_info();
+ info!("boot/HAL->TA: boot info is {:?}", boot_req);
+ kmr_hal::send_boot_info(tipc_channel.lock().unwrap().deref_mut(), boot_req)
+ .map_err(|e| HalServiceError(format!("Failed to send boot info: {:?}", e)))?;
+ // When the non-secure feature is enabled, also retrieve device ID information
+ // (except for IMEI/MEID values) from Android properties and populate the TA with
+ // this information. On a real device, a factory provisioning process would populate
+ // this information.
+ let attest_ids = kmr_hal_nonsecure::attestation_id_info();
+ if let Err(e) =
+ kmr_hal::send_attest_ids(tipc_channel.lock().unwrap().deref_mut(), attest_ids)
+ {
+ error!("Failed to send attestation ID info: {:?}", e);
+ }
+ info!("Successfully sent non-secure boot info and attestation IDs to the TA.");
+ }
+
// Register the Keymint service
let km_service = keymint::Device::new_as_binder(tipc_channel.clone());
let km_service_name = format!("{}/{}", KM_SERVICE_NAME, SERVICE_INSTANCE);
diff --git a/trusty/keymint/trusty-keymint.mk b/trusty/keymint/trusty-keymint.mk
new file mode 100644
index 0000000..d5791ea
--- /dev/null
+++ b/trusty/keymint/trusty-keymint.mk
@@ -0,0 +1,43 @@
+#
+# Copyright (C) 2024 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.
+#
+
+#
+# This makefile should be included by devices that use Trusty TEE
+# to pull in a set of Trusty KeyMint specific modules.
+#
+# Allow KeyMint HAL service implementation selection at build time. This must be
+# synchronized with the TA implementation included in Trusty. Possible values:
+#
+# - Rust implementation for Trusty VM (requires Trusty VM support):
+# export TRUSTY_KEYMINT_IMPL=rust
+# export TRUSTY_SYSTEM_VM=nonsecure
+# - Rust implementation for Trusty TEE (no Trusty VM support):
+# export TRUSTY_KEYMINT_IMPL=rust
+# - C++ implementation (default): (any other value or unset TRUSTY_KEYMINT_IMPL)
+
+ifeq ($(TRUSTY_KEYMINT_IMPL),rust)
+ ifeq ($(TRUSTY_SYSTEM_VM),nonsecure)
+ LOCAL_KEYMINT_PRODUCT_PACKAGE := android.hardware.security.keymint-service.rust.trusty.system.nonsecure
+ else
+ LOCAL_KEYMINT_PRODUCT_PACKAGE := android.hardware.security.keymint-service.rust.trusty
+ endif
+else
+ # Default to the C++ implementation
+ LOCAL_KEYMINT_PRODUCT_PACKAGE := android.hardware.security.keymint-service.trusty
+endif
+
+PRODUCT_PACKAGES += \
+ $(LOCAL_KEYMINT_PRODUCT_PACKAGE) \
diff --git a/trusty/metrics/include/trusty/metrics/tipc.h b/trusty/metrics/include/trusty/metrics/tipc.h
index b4428d5..4c4d37d 100644
--- a/trusty/metrics/include/trusty/metrics/tipc.h
+++ b/trusty/metrics/include/trusty/metrics/tipc.h
@@ -43,6 +43,8 @@
#define UUID_STR_SIZE (37)
+#define HASH_SIZE_BYTES 64
+
/**
* enum metrics_cmd - command identifiers for metrics interface
* @METRICS_CMD_RESP_BIT: message is a response
@@ -112,10 +114,22 @@
* "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
* @crash_reason: architecture-specific code representing the reason for the
* crash
+ * @far: Fault Address Register corresponding to the crash. It is set to 0 and
+ * not always revealed
+ * @far_hash: Fault Address Register obfuscated, always revealed
+ * @elr: Exception Link Register corresponding to the crash. It is set to 0 and
+ * not always revealed
+ * @elr_hash: Exception Link Register obfuscated, always revealed
+ * @is_hash: Boolean value indicating whether far and elr have been ob
*/
struct metrics_report_crash_req {
char app_id[UUID_STR_SIZE];
uint32_t crash_reason;
+ uint64_t far;
+ uint8_t far_hash[HASH_SIZE_BYTES];
+ uint64_t elr;
+ uint8_t elr_hash[HASH_SIZE_BYTES];
+ bool is_hash;
} __attribute__((__packed__));
enum TrustyStorageErrorType {
diff --git a/trusty/storage/interface/Android.bp b/trusty/storage/interface/Android.bp
index d031b0c..769f53d 100644
--- a/trusty/storage/interface/Android.bp
+++ b/trusty/storage/interface/Android.bp
@@ -20,6 +20,7 @@
cc_library_static {
name: "libtrustystorageinterface",
- vendor: true,
+ vendor_available: true,
+ system_ext_specific: true,
export_include_dirs: ["include"],
}
diff --git a/trusty/storage/proxy/Android.bp b/trusty/storage/proxy/Android.bp
index e362b8b..f32188a 100644
--- a/trusty/storage/proxy/Android.bp
+++ b/trusty/storage/proxy/Android.bp
@@ -18,10 +18,8 @@
default_applicable_licenses: ["Android-Apache-2.0"],
}
-cc_binary {
- name: "storageproxyd",
- vendor: true,
-
+cc_defaults {
+ name: "storageproxyd.defaults",
srcs: [
"checkpoint_handling.cpp",
"ipc.c",
@@ -47,9 +45,22 @@
"libtrustystorageinterface",
"libtrusty",
],
-
cflags: [
"-Wall",
"-Werror",
],
}
+
+cc_binary {
+ name: "storageproxyd",
+ defaults: ["storageproxyd.defaults"],
+ vendor: true,
+ // vendor variant requires this flag
+ cflags: ["-DVENDOR_FS_READY_PROPERTY"],
+}
+
+cc_binary {
+ name: "storageproxyd.system",
+ defaults: ["storageproxyd.defaults"],
+ system_ext_specific: true,
+}
diff --git a/trusty/storage/proxy/storage.c b/trusty/storage/proxy/storage.c
index ca39f6a..72c4e93 100644
--- a/trusty/storage/proxy/storage.c
+++ b/trusty/storage/proxy/storage.c
@@ -54,6 +54,8 @@
/* List head for storage mapping, elements added at init, and never removed */
static struct storage_mapping_node* storage_mapping_head;
+#ifdef VENDOR_FS_READY_PROPERTY
+
/*
* Properties set to 1 after we have opened a file under ssdir_name. The backing
* files for both TD and TDP are currently located under /data/vendor/ss and can
@@ -75,16 +77,6 @@
static bool fs_ready_set = false;
static bool fs_ready_rw_set = false;
-static enum sync_state fs_state;
-static enum sync_state fd_state[FD_TBL_SIZE];
-
-static bool alternate_mode;
-
-static struct {
- struct storage_file_read_resp hdr;
- uint8_t data[MAX_READ_SIZE];
-} read_rsp;
-
static bool property_set_helper(const char* prop) {
int rc = property_set(prop, "1");
if (rc == 0) {
@@ -96,6 +88,18 @@
return rc == 0;
}
+#endif // #ifdef VENDOR_FS_READY_PROPERTY
+
+static enum sync_state fs_state;
+static enum sync_state fd_state[FD_TBL_SIZE];
+
+static bool alternate_mode;
+
+static struct {
+ struct storage_file_read_resp hdr;
+ uint8_t data[MAX_READ_SIZE];
+} read_rsp;
+
static uint32_t insert_fd(int open_flags, int fd, struct storage_mapping_node* node) {
uint32_t handle = fd;
@@ -535,6 +539,7 @@
free(path);
path = NULL;
+#ifdef VENDOR_FS_READY_PROPERTY
/* a backing file has been opened, notify any waiting init steps */
if (!fs_ready_set || !fs_ready_rw_set) {
bool is_checkpoint_active = false;
@@ -552,6 +557,7 @@
}
}
}
+#endif // #ifdef VENDOR_FS_READY_PROPERTY
return ipc_respond(msg, &resp, sizeof(resp));
diff --git a/trusty/trusty-base.mk b/trusty/trusty-base.mk
index b21eca6..9d810dc 100644
--- a/trusty/trusty-base.mk
+++ b/trusty/trusty-base.mk
@@ -22,18 +22,7 @@
# 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
+$(call inherit-product, system/core/trusty/keymint/trusty-keymint.mk)
ifeq ($(SECRETKEEPER_ENABLED),true)
LOCAL_SECRETKEEPER_PRODUCT_PACKAGE := android.hardware.security.secretkeeper.trusty
@@ -42,7 +31,6 @@
endif
PRODUCT_PACKAGES += \
- $(LOCAL_KEYMINT_PRODUCT_PACKAGE) \
$(LOCAL_SECRETKEEPER_PRODUCT_PACKAGE) \
android.hardware.gatekeeper-service.trusty \
trusty_apploader \
diff --git a/fastboot/Android.mk b/trusty/trusty-storage-cf.mk
similarity index 61%
rename from fastboot/Android.mk
rename to trusty/trusty-storage-cf.mk
index cde0cb2..3b46445 100644
--- a/fastboot/Android.mk
+++ b/trusty/trusty-storage-cf.mk
@@ -1,4 +1,5 @@
-# Copyright (C) 2007 Google Inc.
+#
+# Copyright (C) 2024 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.
@@ -11,15 +12,14 @@
# 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.
-
-LOCAL_PATH:= $(call my-dir)
-
-#
-# Package fastboot-related executables.
#
-my_dist_files := $(HOST_OUT_EXECUTABLES)/mke2fs
-my_dist_files += $(HOST_OUT_EXECUTABLES)/make_f2fs
-my_dist_files += $(HOST_OUT_EXECUTABLES)/make_f2fs_casefold
-$(call dist-for-goals,dist_files sdk,$(my_dist_files))
-my_dist_files :=
+#
+# This makefile should be included by the cuttlefish device
+# when enabling the Trusty VM to pull in the baseline set
+# of storage specific modules
+
+PRODUCT_PACKAGES += \
+ storageproxyd.system \
+ rpmb_dev.system \
+
diff --git a/trusty/utils/rpmb_dev/Android.bp b/trusty/utils/rpmb_dev/Android.bp
index 5e9caaf..13f151d 100644
--- a/trusty/utils/rpmb_dev/Android.bp
+++ b/trusty/utils/rpmb_dev/Android.bp
@@ -15,15 +15,12 @@
default_applicable_licenses: ["Android-Apache-2.0"],
}
-cc_binary {
- name: "rpmb_dev",
- vendor: true,
-
+cc_defaults {
+ name: "rpmb_dev.cc_defaults",
srcs: [
"rpmb_dev.c",
],
shared_libs: [
- "libc",
"libcutils",
"liblog",
"libcrypto",
@@ -32,7 +29,23 @@
"-Wall",
"-Werror",
],
+}
+
+cc_binary {
+ name: "rpmb_dev",
+ defaults: ["rpmb_dev.cc_defaults"],
+ vendor: true,
+ host_supported: true,
init_rc: [
"rpmb_dev.rc",
],
}
+
+cc_binary {
+ name: "rpmb_dev.system",
+ defaults: ["rpmb_dev.cc_defaults"],
+ system_ext_specific: true,
+ init_rc: [
+ "rpmb_dev.system.rc",
+ ],
+}
diff --git a/trusty/utils/rpmb_dev/rpmb_dev.system.rc b/trusty/utils/rpmb_dev/rpmb_dev.system.rc
new file mode 100644
index 0000000..b78c4e2
--- /dev/null
+++ b/trusty/utils/rpmb_dev/rpmb_dev.system.rc
@@ -0,0 +1,64 @@
+service storageproxyd_system /system_ext/bin/storageproxyd.system \
+ -d ${storageproxyd_system.trusty_ipc_dev:-/dev/trusty-ipc-dev0} \
+ -r /dev/socket/rpmb_mock_system \
+ -p /data/secure_storage_system \
+ -t sock
+ disabled
+ user system
+ group system
+
+service rpmb_mock_init_system /system_ext/bin/rpmb_dev.system \
+ --dev /mnt/secure_storage_rpmb_system/persist/RPMB_DATA --init --size 2048
+ disabled
+ user system
+ group system
+ oneshot
+
+service rpmb_mock_system /system_ext/bin/rpmb_dev.system \
+ --dev /mnt/secure_storage_rpmb_system/persist/RPMB_DATA \
+ --sock rpmb_mock_system
+ disabled
+ user system
+ group system
+ socket rpmb_mock_system stream 660 system system
+
+# storageproxyd
+on late-fs && \
+ property:trusty_vm_system_nonsecure.ready=1 && \
+ property:storageproxyd_system.trusty_ipc_dev=*
+ wait /dev/socket/rpmb_mock_system
+ start storageproxyd_system
+
+
+# RPMB Mock
+on post-fs && \
+ property:trusty_vm_system_nonsecure.ready=1 && \
+ property:trusty_vm_system.vm_cid=*
+ # Create a persistent location for the RPMB data
+ # (work around lack of RPMb block device on CF).
+ # file contexts secure_storage_rpmb_system_file
+ # (only used on Cuttlefish as this is non secure)
+ mkdir /metadata/secure_storage_rpmb_system 0770 system system
+ mkdir /mnt/secure_storage_rpmb_system 0770 system system
+ symlink /metadata/secure_storage_rpmb_system \
+ /mnt/secure_storage_rpmb_system/persist
+ # Create a system persist directory in /metadata
+ # (work around lack of dedicated system persist partition).
+ # file contexts secure_storage_persist_system_file
+ mkdir /metadata/secure_storage_persist_system 0770 system system
+ mkdir /mnt/secure_storage_persist_system 0770 system system
+ symlink /metadata/secure_storage_persist_system \
+ /mnt/secure_storage_persist_system/persist
+ setprop storageproxyd_system.trusty_ipc_dev VSOCK:${trusty_vm_system.vm_cid}:1
+ exec_start rpmb_mock_init_system
+ start rpmb_mock_system
+
+on post-fs-data && \
+ property:trusty_vm_system_nonsecure.ready=1 && \
+ property:storageproxyd_system.trusty_ipc_dev=*
+ # file contexts secure_storage_system_file
+ mkdir /data/secure_storage_system 0770 root system
+ symlink /mnt/secure_storage_persist_system/persist \
+ /data/secure_storage_system/persist
+ chown root system /data/secure_storage_system/persist
+ restart storageproxyd_system
diff --git a/trusty/utils/trusty-ut-ctrl/Android.bp b/trusty/utils/trusty-ut-ctrl/Android.bp
index 6fc2a48..c255614 100644
--- a/trusty/utils/trusty-ut-ctrl/Android.bp
+++ b/trusty/utils/trusty-ut-ctrl/Android.bp
@@ -16,9 +16,8 @@
default_applicable_licenses: ["Android-Apache-2.0"],
}
-cc_binary {
- name: "trusty-ut-ctrl",
- vendor: true,
+cc_defaults {
+ name: "trusty-ut-ctrl.defaults",
srcs: ["ut-ctrl.c"],
shared_libs: [
@@ -33,3 +32,15 @@
"-Werror",
],
}
+
+cc_binary {
+ name: "trusty-ut-ctrl",
+ defaults: ["trusty-ut-ctrl.defaults"],
+ vendor: true,
+}
+
+cc_binary {
+ name: "trusty-ut-ctrl.system",
+ defaults: ["trusty-ut-ctrl.defaults"],
+ system_ext_specific: true,
+}