Home | History | Annotate | Download | only in certinstaller

Lines Matching full:file

5  * you may not use this file except in compliance with the License.
23 import java.io.File;
80 static byte[] readFile(File file) {
82 byte[] data = new byte[(int) file.length()];
83 FileInputStream fis = new FileInputStream(file);
88 Log.w(TAG, "cert file read error: " + e);
93 static boolean deleteFile(File file) {
94 if ((file != null) && !file.delete()) {
95 Log.w(TAG, "cannot delete cert: " + file);