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

  /frameworks/base/core/java/android/os/
IRecoverySystem.aidl 25 boolean uncrypt(in String packageFile, IRecoverySystemProgressListener listener);
RecoverySystem.java 82 * generated by uncrypt.
89 * UNCRYPT_PACKAGE_FILE stores the filename to be uncrypt'd, which will be
90 * read by uncrypt.
98 * of uncrypt.
323 * Process a given package with uncrypt. No-op if the package is not on the
379 if (!rs.uncrypt(filename, progressListener)) {
385 * Process a given package with uncrypt. No-op if the package is not on the
425 * If the package hasn't been processed (i.e. uncrypt'd), set up
426 * UNCRYPT_PACKAGE_FILE and delete BLOCK_MAP_FILE to trigger uncrypt during the
432 * @param processed if the package has been processed (uncrypt'd)
882 private boolean uncrypt(String packageFile, IRecoverySystemProgressListener listener) { method in class:RecoverySystem
    [all...]
  /bootable/recovery/uncrypt/
Android.mk 21 LOCAL_SRC_FILES := uncrypt.cpp
25 LOCAL_MODULE := uncrypt
30 LOCAL_INIT_RC := uncrypt.rc
uncrypt.cpp 43 * In addition to the uncrypt work, uncrypt also takes care of setting and
46 * uncrypt is triggered as init services on demand. It uses socket to
48 * init (i.e. created prior to the service starts, and destroyed when uncrypt
51 * Below is the uncrypt protocol.
53 * a. caller b. init c. uncrypt
58 * uncrypt
61 * /dev/socket/uncrypt
118 #define LOG_TAG "uncrypt"
126 // uncrypt provides three services: SETUP_BCB, CLEAR_BCB and UNCRYPT
419 static int uncrypt(const char* input_path, const char* map_file, const int socket) { function
    [all...]
  /build/target/product/
core_minimal.mk 80 uncrypt \
core_tiny.mk 79 uncrypt \
  /bootable/recovery/
Android.mk 157 $(LOCAL_PATH)/uncrypt/Android.mk \
  /frameworks/base/services/core/java/com/android/server/
RecoverySystemService.java 44 * triggers /system/bin/uncrypt via init to de-encrypt an OTA package on the
51 // The socket at /dev/socket/uncrypt to communicate with uncrypt.
52 private static final String UNCRYPT_SOCKET = "uncrypt";
54 // The init services that communicate with /system/bin/uncrypt.
55 private static final String INIT_SERVICE_UNCRYPT = "init.svc.uncrypt";
77 public boolean uncrypt(String filename, IRecoverySystemProgressListener listener) { method in class:RecoverySystemService.BinderService
78 if (DEBUG) Slog.d(TAG, "uncrypt: " + filename);
85 Slog.e(TAG, "uncrypt service is unavailable.");
90 // uncrypt
    [all...]
  /system/sepolicy/
system_server.te 139 unix_socket_connect(system_server, uncrypt, uncrypt)
file_contexts 120 /dev/socket/uncrypt u:object_r:uncrypt_socket:s0
203 /system/bin/uncrypt u:object_r:uncrypt_exec:s0
  /frameworks/base/services/core/java/com/android/server/power/
ShutdownThread.java 258 // Path 1a: uncrypt needed
264 // device always calls uncrypt prior to reboot.
266 // Path 1b: uncrypt already done
277 // We need the progress bar if uncrypt will be invoked during the
492 // If it's to reboot to install an update and uncrypt hasn't been
494 uncrypt(); method
671 private void uncrypt() { method in class:ShutdownThread
672 Log.i(TAG, "Calling uncrypt and monitoring the progress...");
719 Log.w(TAG, "Timed out waiting for uncrypt.");
726 Log.e(TAG, "Failed to write timeout message to uncrypt status", e)
    [all...]

Completed in 227 milliseconds