Searched defs:arch (Results 1 - 6 of 6) sorted by relevance

/bionic/libc/tools/
H A Dcheck-symbols.py11 arch = re.sub(r'.*/linux-x86/([^/]+)/.*', r'\1', toolchain) variable
13 sys.stderr.write('Checking symbols for arch "%s"...\n' % arch)
17 global arch
20 if library == 'libm' and arch == 'arm':
24 if '64' in arch:
28 if arch == 'aarch64':
29 arch = 'arm64'
31 path = '%s/development/ndk/platforms/android-%s/arch-%s/symbols/%s.so.%s.txt' % (os.environ['ANDROID_BUILD_TOP'], api, arch, librar
[all...]
H A Dcheck-symbols-glibc.py31 arch = re.sub(r'.*/linux-x86/([^/]+)/.*', r'\1', toolchain) variable
32 if arch == 'aarch64':
33 arch = 'arm64' variable
40 def GetNdkIgnored(arch): # pylint: disable=redefined-outer-name
43 (os.getenv('ANDROID_BUILD_TOP'), arch))
68 ndk_ignored = GetNdkIgnored(arch)
/bionic/libc/kernel/uapi/linux/
H A Dseccomp.h42 __u32 arch; member in struct:seccomp_data
H A Dkvm.h235 struct kvm_debug_exit_arch arch; member in struct:kvm_run::__anon502::__anon507
560 struct kvm_guest_debug_arch arch; member in struct:kvm_guest_debug
/bionic/tools/relocation_packer/src/
H A Delf_file_unittest.cc65 void OpenRelocsTestFiles(const std::string& arch, FILE** relocs_so, FILE** packed_relocs_so) { argument
66 const std::string base = std::string("elf_file_unittest_relocs_") + arch;
116 static void RunUnpackRelocationsTestFor(const std::string& arch) { argument
121 OpenRelocsTestFiles(arch, &relocs_so, &packed_relocs_so);
152 static void RunPackRelocationsTestFor(const std::string& arch) { argument
157 OpenRelocsTestFiles(arch, &relocs_so, &packed_relocs_so);
/bionic/libc/
H A DAndroid.mk10 include $(LOCAL_PATH)/arch-$(TARGET_ARCH)/$(TARGET_ARCH).mk
12 $(LOCAL_PATH)/arch-$(TARGET_ARCH)/$(TARGET_ARCH).mk
18 include $(LOCAL_PATH)/arch-$(TARGET_2ND_ARCH)/$(TARGET_2ND_ARCH).mk
21 $(LOCAL_PATH)/arch-$(TARGET_2ND_ARCH)/$(TARGET_2ND_ARCH).mk
655 # Add in the arch or 32-bit specific flags
659 define patch-up-arch-specific-flags
683 LOCAL_SRC_FILES_arm64 := arch-arm64/bionic/__set_tls.c
684 LOCAL_SRC_FILES_x86 := arch-x86/bionic/__set_tls.c
685 LOCAL_SRC_FILES_x86_64 := arch-x86_64/bionic/__set_tls.c
699 $(eval $(call patch-up-arch
[all...]

Completed in 231 milliseconds