Home
last modified time | relevance | path

Searched refs:APK_LIB_LEN (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/libs/androidfw/
DApkParsing.cpp25 const size_t APK_LIB_LEN = APK_LIB.size(); variable
39 static const size_t minLength = APK_LIB_LEN + 2 + LIB_PREFIX_LEN + 1 + LIB_SUFFIX_LEN; in ValidLibraryPathLastSlash()
60 if (strncmp(fileName, APK_LIB.data(), APK_LIB_LEN) != 0) { in ValidLibraryPathLastSlash()
65 if (memchr(fileName + APK_LIB_LEN, '/', fileNameLen - APK_LIB_LEN) != lastSlash) { in ValidLibraryPathLastSlash()
79 fileName + APK_LIB_LEN, lastSlash - fileName - APK_LIB_LEN)) != abis.end()) { in ValidLibraryPathLastSlash()
/frameworks/base/libs/androidfw/include/androidfw/
DApkParsing.h22 extern const size_t APK_LIB_LEN;
/frameworks/base/core/jni/
Dcom_android_internal_content_NativeLibraryHelper.cpp426 const char* cpuAbiOffset = fileName + APK_LIB_LEN; in iterateOverNativeFiles()
485 const char* abiOffset = fileName + APK_LIB_LEN; in findSupportedAbi()
/frameworks/base/tools/aapt2/dump/
DDumpManifest.cpp2783 architectures_from_apk.insert(std::string(file_path + APK_LIB_LEN, last_slash)); in Extract()