Home | History | Annotate | Download | only in defcontainer

Lines Matching refs:packageUri

99         public String copyResourceToContainer(final Uri packageURI, final String cid,
102 if (packageURI == null || cid == null) {
106 return copyResourceInner(packageURI, cid, key, resFileName, publicResFileName,
113 * @param packageURI the uri of resource to be copied. Should be a file
121 public int copyResource(final Uri packageURI, ContainerEncryptionParams encryptionParams,
123 if (packageURI == null || outStream == null) {
131 copyFile(packageURI, autoOut, encryptionParams);
134 Slog.e(TAG, "Could not copy URI " + packageURI.toString() + " FNF: "
138 Slog.e(TAG, "Could not copy URI " + packageURI.toString() + " IO: "
142 Slog.e(TAG, "Could not copy URI " + packageURI.toString() + " Security: "
194 public boolean checkInternalFreeStorage(Uri packageUri, boolean isForwardLocked,
196 final File apkFile = new File(packageUri.getPath());
205 public boolean checkExternalFreeStorage(Uri packageUri, boolean isForwardLocked)
207 final File apkFile = new File(packageUri.getPath());
299 private String copyResourceInner(Uri packageURI, String newCid, String key, String resFileName,
312 String codePath = packageURI.getPath();