Searched refs:libFilePath (Results 1 - 5 of 5) sorted by relevance

/external/libmojo/base/android/java/src/org/chromium/base/library_loader/
H A DLegacyLinker.java445 * @param libFilePath The path of the library (possibly in the zip file).
451 String libFilePath,
455 + zipFilePath + ", " + libFilePath + ", " + isFixedAddressPermitted);
470 if (mLoadedLibraries.containsKey(libFilePath)) {
472 Log.i(TAG, "Not loading " + libFilePath + " twice");
487 "Load address outside reservation, for: " + libFilePath;
494 String sharedRelRoName = libFilePath;
496 if (!nativeLoadLibraryInZipFile(zipFilePath, libFilePath, loadAddress, libInfo)) {
497 String errorMessage = "Unable to load library: " + libFilePath
504 if (!nativeLoadLibrary(libFilePath, loadAddres
450 loadLibraryImpl(@ullable String zipFilePath, String libFilePath, boolean isFixedAddressPermitted) argument
[all...]
H A DModernLinker.java330 * @param libFilePath The path of the library (possibly in the zip file).
336 String libFilePath,
340 + zipFilePath + ", " + libFilePath + ", " + isFixedAddressPermitted);
354 dlopenExtPath = zipFilePath + "!/lib/" + cpuAbi + "/crazy." + libFilePath;
358 dlopenExtPath = libFilePath;
363 Log.i(TAG, "Not loading " + libFilePath + " twice");
377 String errorMessage = "Load address outside reservation, for: " + libFilePath;
389 String relroPath = PathUtils.getDataDirectory() + "/RELRO:" + libFilePath;
426 Locale.US, "%s: %s %x", tag, libFilePath, libInfo.mLoadAddress));
335 loadLibraryImpl(@ullable String zipFilePath, String libFilePath, boolean isFixedAddressPermitted) argument
H A DLibraryLoader.java241 private void loadLibrary(Linker linker, @Nullable String zipFilePath, String libFilePath) { argument
247 linker.loadLibrary(zipFilePath, libFilePath);
251 linker.loadLibraryNoFixedAddress(zipFilePath, libFilePath);
255 linker.loadLibrary(zipFilePath, libFilePath);
291 String libFilePath = System.mapLibraryName(library);
303 loadLibrary(linker, zipFilePath, libFilePath);
H A DLinker.java562 * @param libFilePath The path of the library (possibly in the zip file).
564 public void loadLibrary(@Nullable String zipFilePath, String libFilePath) { argument
566 Log.i(TAG, "loadLibrary: " + zipFilePath + ", " + libFilePath);
569 loadLibraryImpl(zipFilePath, libFilePath, isFixedAddressPermitted);
581 * @param libFilePath The path of the library (possibly in the zip file).
583 public void loadLibraryNoFixedAddress(@Nullable String zipFilePath, String libFilePath) { argument
585 Log.i(TAG, "loadLibraryAtAnyAddress: " + zipFilePath + ", " + libFilePath);
588 loadLibraryImpl(zipFilePath, libFilePath, isFixedAddressPermitted);
678 * @param libFilePath The path of the library (possibly in the zip file).
683 String libFilePath,
682 loadLibraryImpl(@ullable String zipFilePath, String libFilePath, boolean isFixedAddressPermitted) argument
[all...]
/external/icu/icu4c/source/tools/pkgdata/
H A Dpkgdata.cpp1801 char libFilePath[SMALL_BUFFER_MAX_SIZE] = ""; local
1811 uprv_strcpy(libFilePath, dllFilePath);
1814 uprv_strcat(libFilePath, o->libName);
1815 uprv_strcat(libFilePath, ".lib");
1821 uprv_strcat(libFilePath, LIB_FILE);
1823 uprv_strcat(libFilePath, o->libName);
1824 uprv_strcat(libFilePath, ".lib");
1840 (T_FileStream_file_exists(libFilePath) && isFileModTimeLater(libFilePath, gencFilePath))) {
1870 libFilePath,
[all...]

Completed in 250 milliseconds