Home
last modified time | relevance | path

Searched refs:nativeLibPath (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/jni/
Dcom_android_internal_content_NativeLibraryHelper.cpp142 ScopedUtfChars nativeLibPath(env, *javaNativeLibPath); in copyFileIfChanged() local
196 char localFileName[nativeLibPath.size() + fileNameLen + 2]; in copyFileIfChanged()
198 …if (strlcpy(localFileName, nativeLibPath.c_str(), sizeof(localFileName)) != nativeLibPath.size()) { in copyFileIfChanged()
203 *(localFileName + nativeLibPath.size()) = '/'; in copyFileIfChanged()
205 if (strlcpy(localFileName + nativeLibPath.size() + 1, fileName, sizeof(localFileName) in copyFileIfChanged()
206 - nativeLibPath.size() - 1) != fileNameLen) { in copyFileIfChanged()
220 char localTmpFileName[nativeLibPath.size() + TMP_FILE_PATTERN_LEN + 1]; in copyFileIfChanged()
221 if (strlcpy(localTmpFileName, nativeLibPath.c_str(), sizeof(localTmpFileName)) in copyFileIfChanged()
222 != nativeLibPath.size()) { in copyFileIfChanged()
227 if (strlcpy(localTmpFileName + nativeLibPath.size(), TMP_FILE_PATTERN, in copyFileIfChanged()
/frameworks/base/services/core/java/com/android/server/pm/
DAppDataHelper.java299 final String nativeLibPath = pkg.getNativeLibraryDir();
300 if (!(new File(nativeLibPath).exists())) {
305 nativeLibPath, userId);
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/
DBridge.java183 String nativeLibPath, in init() argument
194 if (!loadNativeLibrariesIfNeeded(log, nativeLibPath)) { in init()