Esempio n. 1
0
 public boolean unlock(String password) {
   try {
     mError = mBinder.unlock(password);
     return mError == NO_ERROR;
   } catch (RemoteException e) {
     Log.w(TAG, "Cannot connect to keystore", e);
     return false;
   }
 }