Searched refs:updateDir (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/java/com/android/server/updates/
H A DSELinuxPolicyInstallReceiver.java65 new File(updateDir, seappContextsPath).renameTo(new File(contexts, seappContextsPath));
66 new File(updateDir, propertyContextsPath).renameTo(new File(contexts, propertyContextsPath));
67 new File(updateDir, fileContextsPath).renameTo(new File(contexts, fileContextsPath));
68 new File(updateDir, sepolicyPath).renameTo(new File(contexts, sepolicyPath));
92 writeUpdate(updateDir, destination, Base64.decode(chunk, Base64.DEFAULT));
99 installFile(new File(updateDir, seappContextsPath), stream, chunkLengths[0]);
100 installFile(new File(updateDir, propertyContextsPath), stream, chunkLengths[1]);
101 installFile(new File(updateDir, fileContextsPath), stream, chunkLengths[2]);
102 installFile(new File(updateDir, sepolicyPath), stream, chunkLengths[3]);
110 File contexts = new File(updateDir
[all...]
H A DConfigUpdateInstallReceiver.java59 protected final File updateDir; field in class:ConfigUpdateInstallReceiver
63 public ConfigUpdateInstallReceiver(String updateDir, String updateContentPath, argument
65 this.updateDir = new File(updateDir);
66 this.updateContent = new File(updateDir, updateContentPath);
67 File updateMetadataDir = new File(updateDir, updateMetadataPath);
258 writeUpdate(updateDir, updateContent, content);
259 writeUpdate(updateDir, updateVersion, Long.toString(version).getBytes());

Completed in 212 milliseconds