OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:zipFilePath
(Results
1 - 7
of
7
) sorted by null
/external/libmojo/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java
241
private void loadLibrary(Linker linker, @Nullable String
zipFilePath
, String libFilePath) {
247
linker.loadLibrary(
zipFilePath
, libFilePath);
251
linker.loadLibraryNoFixedAddress(
zipFilePath
, libFilePath);
255
linker.loadLibrary(
zipFilePath
, libFilePath);
259
if (
zipFilePath
!= null) {
290
String
zipFilePath
= null;
294
zipFilePath
= appContext.getApplicationInfo().sourceDir;
295
Log.i(TAG, "Loading " + library + " from within " +
zipFilePath
);
303
loadLibrary(linker,
zipFilePath
, libFilePath);
Linker.java
561
* @param
zipFilePath
The path of the zip file containing the library (or null).
564
public void loadLibrary(@Nullable String
zipFilePath
, String libFilePath) {
566
Log.i(TAG, "loadLibrary: " +
zipFilePath
+ ", " + libFilePath);
569
loadLibraryImpl(
zipFilePath
, libFilePath, isFixedAddressPermitted);
580
* @param
zipFilePath
The path of the zip file containing the library (or null).
583
public void loadLibraryNoFixedAddress(@Nullable String
zipFilePath
, String libFilePath) {
585
Log.i(TAG, "loadLibraryAtAnyAddress: " +
zipFilePath
+ ", " + libFilePath);
588
loadLibraryImpl(
zipFilePath
, libFilePath, isFixedAddressPermitted);
677
* @param
zipFilePath
The path of the zip file containing the library (or null).
682
abstract void loadLibraryImpl(@Nullable String
zipFilePath
,
[
all
...]
LegacyLinker.java
444
* @param
zipFilePath
The path of the zip file containing the library (or null).
450
void loadLibraryImpl(@Nullable String
zipFilePath
,
455
+
zipFilePath
+ ", " + libFilePath + ", " + isFixedAddressPermitted);
495
if (
zipFilePath
!= null) {
496
if (!nativeLoadLibraryInZipFile(
zipFilePath
, libFilePath, loadAddress, libInfo)) {
498
+ ", in: " +
zipFilePath
;
502
sharedRelRoName =
zipFilePath
;
ModernLinker.java
329
* @param
zipFilePath
The path of the zip file containing the library (or null).
335
void loadLibraryImpl(@Nullable String
zipFilePath
,
340
+
zipFilePath
+ ", " + libFilePath + ", " + isFixedAddressPermitted);
347
if (
zipFilePath
!= null) {
354
dlopenExtPath =
zipFilePath
+ "!/lib/" + cpuAbi + "/crazy." + libFilePath;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
ZipDexContainer.java
60
private final File
zipFilePath
;
66
* @param
zipFilePath
The path to the zip file
69
public ZipDexContainer(@Nonnull File
zipFilePath
, @Nonnull Opcodes opcodes) {
70
this.
zipFilePath
=
zipFilePath
;
182
return new ZipFile(
zipFilePath
);
/frameworks/base/core/tests/webkit/unit_tests_src/com/android/webkit/
WebViewLibraryLoaderTest.java
249
private static void assertIsValidZipEntryPath(String path, String
zipFilePath
)
252
+ "Expected zip path: " +
zipFilePath
+ ", actual zip entry: " + path,
253
path.startsWith(
zipFilePath
+ "!/"));
/external/icu/tools/srcgen/currysrc/libs/
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar
Completed in 436 milliseconds