Searched defs:fullCodePath (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java6699 private InstallArgs createInstallArgs(int flags, String fullCodePath, String fullResourcePath, argument
6706 && !fullCodePath.startsWith(mDrmAppPrivateInstallDir.getAbsolutePath())) {
6717 return new AsecInstallArgs(fullCodePath, fullResourcePath, nativeLibraryPath,
6720 return new FileInstallArgs(fullCodePath, fullResourcePath, nativeLibraryPath);
6812 FileInstallArgs(String fullCodePath, String fullResourcePath, String nativeLibraryPath) { argument
6814 File codeFile = new File(fullCodePath);
6816 codeFileName = fullCodePath;
7126 static String cidFromCodePath(String fullCodePath) { argument
7127 int eidx = fullCodePath.lastIndexOf("/");
7128 String subStr1 = fullCodePath
7148 AsecInstallArgs(String fullCodePath, String fullResourcePath, String nativeLibraryPath, boolean isExternal, boolean isForwardLocked) argument
[all...]

Completed in 1806 milliseconds