Searched refs:base (Results 76 - 100 of 155) sorted by relevance

1234567

/bionic/linker/
H A Dlinker_main.cpp42 #include "android-base/strings.h"
43 #include "android-base/stringprintf.h"
136 g_ld_preload_names = android::base::Split(path, " :");
156 si->base = reinterpret_cast<ElfW(Addr)>(ehdr_vdso);
319 /* Compute the value of si->base. We can't rely on the fact that
323 si->base = 0;
329 si->base = reinterpret_cast<ElfW(Addr)>(si->phdr) - si->phdr[i].p_offset;
334 if (si->base == 0) {
340 ElfW(Ehdr)* elf_hdr = reinterpret_cast<ElfW(Ehdr)*>(si->base);
532 linker_so.base
[all...]
H A Dlinker_logger.cpp40 #include "android-base/strings.h"
51 std::vector<std::string> options = android::base::Split(value, ",");
H A Dlinker_soinfo.cpp189 symbol_name.get_name(), get_realpath(), reinterpret_cast<void*>(base));
194 symbol_name.get_name(), get_realpath(), reinterpret_cast<void*>(base));
204 symbol_name.get_name(), get_realpath(), reinterpret_cast<void*>(base));
240 symbol_name.get_name(), get_realpath(), reinterpret_cast<void*>(base));
252 reinterpret_cast<void*>(base), hash, hash % nbucket_);
282 reinterpret_cast<void*>(base), hash, hash % nbucket_);
/bionic/tests/
H A Dfcntl_test.cpp27 #include <android-base/stringprintf.h>
325 std::string final_path = android::base::StringPrintf("%s/named_now", dir.dirname);
326 ASSERT_EQ(0, linkat(AT_FDCWD, android::base::StringPrintf("/proc/self/fd/%d", fd).c_str(),
339 ASSERT_EQ(-1, linkat(AT_FDCWD, android::base::StringPrintf("/proc/self/fd/%d", fd).c_str(),
340 AT_FDCWD, android::base::StringPrintf("%s/no_chance", dir.dirname).c_str(),
H A Dnetinet_in_test.cpp23 #include <android-base/macros.h>
H A Dspawn_test.cpp26 #include <android-base/file.h>
27 #include <android-base/strings.h>
252 ASSERT_TRUE(android::base::ReadFdToString(fds[0], &content));
260 for (const auto& line : android::base::Split(content, "\n")) {
283 ASSERT_TRUE(android::base::ReadFdToString(fds[0], content));
316 for (const auto& line : android::base::Split(content, "\n")) {
H A Dsys_mman_test.cpp237 char* base = reinterpret_cast<char*>(mmap(nullptr, PAGE_SIZE * 2, PROT_EXEC | PROT_READ, local
240 __builtin___clear_cache(base, base + (PAGE_SIZE * 2));
H A Dleak_test.cpp32 #include <android-base/macros.h>
H A Dgtest_main.cpp39 #include <android-base/file.h>
40 #include <android-base/strings.h>
41 #include <android-base/unique_fd.h>
283 android::base::unique_fd read_fd;
284 android::base::unique_fd write_fd;
285 if (!android::base::Pipe(&read_fd, &write_fd)) {
307 if (!android::base::ReadFdToString(read_fd, &content)) {
312 for (auto& line : android::base::Split(content, "\n")) {
313 line = android::base::Split(line, "#")[0];
314 line = android::base
[all...]
/bionic/libc/kernel/uapi/drm/
H A Dexynos_drm.h205 struct drm_event base; member in struct:drm_exynos_g2d_event
213 struct drm_event base; member in struct:drm_exynos_ipp_event
/bionic/libc/kernel/uapi/linux/
H A Dnubus.h159 unsigned char * base; member in struct:nubus_dir
165 unsigned char * base; member in struct:nubus_dirent
/bionic/libc/versioner-dependencies/common/kernel_uapi/drm/
H A Dexynos_drm.h205 struct drm_event base; member in struct:drm_exynos_g2d_event
213 struct drm_event base; member in struct:drm_exynos_ipp_event
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dnubus.h159 unsigned char * base; member in struct:nubus_dir
165 unsigned char * base; member in struct:nubus_dirent
/bionic/tools/versioner/dependencies/common/kernel_uapi/drm/
H A Dexynos_drm.h205 struct drm_event base; member in struct:drm_exynos_g2d_event
213 struct drm_event base; member in struct:drm_exynos_ipp_event
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Dnubus.h159 unsigned char * base; member in struct:nubus_dir
165 unsigned char * base; member in struct:nubus_dirent
/bionic/tools/relocation_packer/src/
H A Delf_file_unittest.cc66 const std::string base = std::string("elf_file_unittest_relocs_") + arch; local
67 const std::string relocs = base + ".so";
68 const std::string packed_relocs = base + "_packed.so";
/bionic/libc/malloc_debug/
H A Dmalloc_debug.cpp40 #include <android-base/file.h>
41 #include <android-base/stringprintf.h>
86 int debug_iterate(uintptr_t base, size_t size,
87 void (*callback)(uintptr_t base, size_t size, void* arg), void* arg);
150 error_str = android::base::StringPrintf("HAS INVALID TAG %" PRIx32 " (%s)", header->tag,
250 debug_dump_heap(android::base::StringPrintf("%s.%d.exit.txt",
312 debug_dump_heap(android::base::StringPrintf(
377 debug_dump_heap(android::base::StringPrintf(
734 int debug_iterate(uintptr_t base, size_t size, void (*callback)(uintptr_t, size_t, void*), argument
746 return g_dispatch->iterate(base, siz
[all...]
/bionic/tools/versioner/src/
H A Dversioner.cpp47 #include <android-base/file.h>
48 #include <android-base/macros.h>
49 #include <android-base/parseint.h>
50 #include <android-base/strings.h>
571 if (!android::base::ParseInt<int>(optarg, &max_thread_count, 1)) {
617 if (!android::base::Realpath(argv[optind], &location.header_path)) {
630 if (!android::base::EndsWith(location.header_path, "/")) {
/bionic/libc/bionic/
H A Dftw.cpp100 ftw.base = cur->fts_pathlen - cur->fts_namelen;
H A Dmalloc_common.cpp474 // [base, base+size). Must be called between malloc_disable and malloc_enable.
475 extern "C" int malloc_iterate(uintptr_t base, size_t size, argument
476 void (*callback)(uintptr_t base, size_t size, void* arg), void* arg) {
479 return _iterate(base, size, callback, arg);
481 return Malloc(iterate)(base, size, callback, arg);
/bionic/benchmarks/tests/
H A Dinterface_test.cpp27 #include <android-base/file.h>
53 return "--bionic_xml=" + android::base::GetExecutableDirectory() + "/test_suites/" + xml_file;
/bionic/libc/kernel/uapi/asm-x86/asm/
H A Dkvm.h125 __u64 base; member in struct:kvm_segment
134 __u64 base; member in struct:kvm_dtable
/bionic/libc/malloc_hooks/
H A Dmalloc_hooks.cpp68 int hooks_iterate(uintptr_t base, size_t size,
69 void (*callback)(uintptr_t base, size_t size, void* arg), void* arg);
/bionic/libc/versioner-dependencies/common/kernel_uapi/asm-x86/asm/
H A Dkvm.h125 __u64 base; member in struct:kvm_segment
134 __u64 base; member in struct:kvm_dtable
/bionic/libc/versioner-dependencies/x86/kernel_uapi_asm-x86/asm/
H A Dkvm.h125 __u64 base; member in struct:kvm_segment
134 __u64 base; member in struct:kvm_dtable

Completed in 9536 milliseconds

1234567