Searched refs:version (Results 1 - 25 of 240) sorted by last modified time

12345678910

/bionic/libdl/
H A Dlibdl.cpp39 const char* version,
120 void* dlvsym(void* handle, const char* symbol, const char* version) { argument
122 return __loader_dlvsym(handle, symbol, version, caller_addr);
220 // so it doesn't actually need the routine. Define a dummy version here,
221 // because the real version calls libc functions (e.g. memcpy, abort), which
H A Dlibdl_static.c37 const char* version __unused) {
/bionic/linker/
H A Ddlfcn.cpp85 const char* version,
156 void* dlsym_impl(void* handle, const char* symbol, const char* version, const void* caller_addr) { argument
160 if (!do_dlsym(handle, symbol, version, caller_addr, &result)) {
172 void* __loader_dlvsym(void* handle, const char* symbol, const char* version, const void* caller_addr) { argument
173 return dlsym_impl(handle, symbol, version, caller_addr);
H A Dlinker_config.cpp445 bool versioning_enabled = properties.get_bool("enable.target.sdk.version");
448 std::string version_file = dirname(binary_realpath) + "/.version";
452 *error_msg = std::string("error reading version file \"") +
466 *error_msg = std::string("invalid version \"") + version_file + "\": \"" + content +"\"";
550 std::string version = android::base::GetProperty("ro.vndk.version", ""); local
551 if (version != "" && version != "current") {
553 return version.insert(0, 1, delimiter);
H A Dlinker_mips.cpp223 uint16_t version; // version of this structure member in struct:mips_elf_abiflags_v0
/bionic/linker/tests/
H A Dlinker_config_test.cpp57 "enable.target.sdk.version = true\n"
88 static bool write_version(const std::string& path, uint32_t version) { argument
89 std::string content = android::base::StringPrintf("%d", version);
129 std::string version_file = std::string(tmp_dir.path) + "/.version";
/bionic/tests/
H A Dgtest_main.cpp572 fputs("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n", fp);
H A Dunistd_test.cpp228 int fd = open("/proc/version", O_RDONLY);
411 int fd = open("/proc/version", O_RDONLY);
1035 int fd = open("/proc/version", O_RDONLY);
1047 int fd = open("/proc/version", O_RDONLY);
1197 header.version = _LINUX_CAPABILITY_VERSION_3;
/bionic/tests/headers/posix/
H A Dsys_utsname_h.c38 STRUCT_MEMBER_ARRAY(struct utsname, char/*[]*/, version);
/bionic/tests/libs/
H A DAndroid.build.versioned_lib.mk36 -Wl,--version-script,$(LOCAL_PATH)/versioned_uselib.map
70 -Wl,--version-script,$(LOCAL_PATH)/versioned_lib_v1.map \
77 # lib v2 - to make libtest_versioned_uselibv2.so use version 2 of versioned_function()
83 -Wl,--version-script,$(LOCAL_PATH)/versioned_lib_v2.map \
91 # last version - this one is used at the runtime and exports 3 versions
98 -Wl,--version-script,$(LOCAL_PATH)/versioned_lib_v3.map
117 -Wl,--version-script,$(LOCAL_PATH)/versioned_lib_other.map
/bionic/tools/versioner/src/
H A DPreprocessor.cpp191 int version = avail.arch_availability[*it.second.begin()].introduced; local
207 if (avail.arch_availability[arch].introduced != version) {
214 // If all of the archs in the set have a min_api that satifies version, elide the check.
215 if (max_min_version >= version) {
216 version = 0;
219 expressions.emplace_back(generate_guard(arch_expr, version));
/bionic/libc/bionic/
H A Dicu.cpp39 // Allowed icu4c version numbers are in the range [44, 999].
40 // Gingerbread's icu4c 4.4 is the minimum supported ICU version.
64 // We prefer the latest version available.
65 int version = atoi(&namelist[n]->d_name[strlen("icudt")]); local
66 if (version != 0 && version > max_version) max_version = version;
H A Dsystem_property_set.cpp50 static const char* kServiceVersionPropertyName = "ro.property_service.version";
240 uint32_t version = static_cast<uint32_t>(atoll(value));
241 if (version >= kProtocolVersion2) {
/bionic/libc/include/netinet/
H A Dip.h47 * Definitions for internet protocol version 4.
57 ip_v:4; /* version */
222 version:4; member in struct:iphdr
224 uint8_t version:4,
/bionic/libc/include/sys/
H A Dutsname.h42 char version[SYS_NMLN]; member in struct:utsname
/bionic/libc/kernel/android/uapi/linux/
H A Dkeychord.h25 __u16 version; member in struct:input_keychord
/bionic/libc/kernel/uapi/asm-x86/asm/
H A Dbootparam.h63 __u16 version; member in struct:setup_header
H A Dkvm_para.h44 __u32 version; member in struct:kvm_steal_time
/bionic/libc/kernel/uapi/drm/
H A Ddrm.h91 struct drm_version __user * version; member in struct:drm_list
H A Ddrm_mode.h409 __u32 version; member in struct:drm_format_modifier_blob
H A Dexynos_drm.h117 __u32 version; member in struct:drm_exynos_ipp_prop_list
H A Dvmwgfx_drm.h114 __u32 version; member in struct:drm_vmw_execbuf_arg
/bionic/libc/kernel/uapi/linux/
H A Dagpgart.h47 struct agp_version version; member in struct:_agp_info
H A Dapm_bios.h25 __u16 version; member in struct:apm_bios_info
H A Daudit.h316 __u32 version; member in union:audit_status::__anon264

Completed in 356 milliseconds

12345678910