HomeSort by relevance Sort by last modified time
    Searched full:keyhandle (Results 1 - 1 of 1) sorted by null

  /system/security/keystore-engine/
eng_keystore.cpp 93 * Makes sure the ex_data for the keyhandle is initially set to NULL.
100 * Frees a previously allocated keyhandle stored in ex_data.
103 char* keyhandle = reinterpret_cast<char*>(ptr); local
104 if (keyhandle != NULL) {
105 free(keyhandle);
110 * Duplicates a keyhandle stored in ex_data in case we copy a key.
115 char* keyhandle = reinterpret_cast<char*>(*ptr); local
116 if (keyhandle != NULL) {
117 char* keyhandle_copy = strdup(keyhandle);

Completed in 77 milliseconds