HomeSort by relevance Sort by last modified time
    Searched refs:keyFile (Results 1 - 4 of 4) sorted by null

  /frameworks/base/keystore/java/android/security/
SystemKeyStore.java 76 File keyFile = getKeyFile(keyName);
77 if (keyFile.exists()) {
90 if (!keyFile.createNewFile()) {
94 FileOutputStream fos = new FileOutputStream(keyFile);
99 FileUtils.setPermissions(keyFile.getName(), (FileUtils.S_IRUSR | FileUtils.S_IWUSR),
110 File keyFile = new File(sysKeystoreDir, keyName + KEY_FILE_EXTENSION);
111 return keyFile;
119 File keyFile = getKeyFile(keyName);
121 if (!keyFile.exists()) {
125 FileInputStream fis = new FileInputStream(keyFile);
    [all...]
  /packages/apps/Phone/src/com/android/phone/
CallTime.java 204 String keyFile = baseName + ".key";
211 file = new File(keyFile);
  /build/tools/signapk/
SignApk.java 97 * @param keyFile The file containing the private key. Used to prompt the user.
99 private static String readPassword(File keyFile) {
101 System.out.print("Enter password for " + keyFile + " (password will not be hidden): ");
118 * @param keyFile The file containing the private key
120 private static KeySpec decryptPrivateKey(byte[] encryptedPrivateKey, File keyFile)
130 char[] password = readPassword(keyFile).toCharArray();
141 System.err.println("signapk: Password for " + keyFile + " may be bad.");
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/
DeviceExplorer.java 388 File keyFile;
392 // create a temp file for keyFile
399 keyFile = new File(path + File.separator + keyEntry.getName());
410 SyncResult result = sync.pullFile(keyEntry, keyFile.getAbsolutePath(), monitor);

Completed in 241 milliseconds