summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-02-02 22:28:02 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-02-02 22:28:02 +0000
commit71369e4b0f3f882a0d8cbf0d4601d7747d8999d2 (patch)
tree83951ad01a20bcbef7ce5da82dcdc7e06f353ceb
parentd1e6cda7c9f744bb2fd9cb3125c9d140f5b589f9 (diff)
parent211f89ec402989e18232bae95bf468637d02cc89 (diff)
downloadlibhardware-71369e4b0f3f882a0d8cbf0d4601d7747d8999d2.tar.gz
Merge "Snap for 11399400 from bce3918b3dfb67f25f927ff35d36c4d37f2d31ca to sdk-release" into sdk-release
-rw-r--r--hardware.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/hardware.c b/hardware.c
index 79073312..94b5d5d3 100644
--- a/hardware.c
+++ b/hardware.c
@@ -179,20 +179,20 @@ static int hw_module_exists(char *path, size_t path_len, const char *name,
const char *subname)
{
#ifdef __ANDROID_APEX__
- // When used in APEX, it should look only into the same APEX because
+ // When used in VAPEX, it should look only into the same APEX because
// libhardware modules don't provide ABI stability.
- if (__builtin_available(android AAPEXSUPPORT_API, *)) {
- AApexInfo *apex_info;
- if (AApexInfo_create(&apex_info) == AAPEXINFO_OK) {
- snprintf(path, path_len, "/apex/%s/%s/%s.%s.so",
- AApexInfo_getName(apex_info), HAL_LIBRARY_SUBDIR, name, subname);
- AApexInfo_destroy(apex_info);
- if (access(path, R_OK) == 0)
- return 0;
- }
- } else {
- ALOGE("hw_module_exists: libapexsupport is not supported in %d.", __ANDROID_API__);
+#if __ANDROID_VENDOR_API__ >= 202404
+ AApexInfo *apex_info;
+ if (AApexInfo_create(&apex_info) == AAPEXINFO_OK) {
+ snprintf(path, path_len, "/apex/%s/%s/%s.%s.so",
+ AApexInfo_getName(apex_info), HAL_LIBRARY_SUBDIR, name, subname);
+ AApexInfo_destroy(apex_info);
+ if (access(path, R_OK) == 0)
+ return 0;
}
+#else // __ANDROID_VENDOR_API__
+ ALOGE("hw_module_exists: libapexsupport is not supported in %d.", __ANDROID_VENDOR_API__);
+#endif // __ANDROID_VENDOR_API__
#else // __ANDROID_APEX__
snprintf(path, path_len, "%s/%s.%s.so",
HAL_LIBRARY_PATH3, name, subname);