Home
last modified time | relevance | path

Searched refs:exportData (Results 1 – 4 of 4) sorted by relevance

/system/security/keystore/
DIKeystoreService.cpp99 ExportResult::ExportResult() : resultCode(0), exportData(NULL), dataLength(0) { in ExportResult()
112 exportData.reset(reinterpret_cast<uint8_t*>(malloc(length))); in readFromParcel()
113 if (exportData.get()) { in readFromParcel()
114 memcpy(exportData.get(), buf, length); in readFromParcel()
128 if (exportData && dataLength) { in writeToParcel()
131 memcpy(buf, exportData.get(), dataLength); in writeToParcel()
Dkeystore_client_impl.cpp257 *export_data = ByteArrayAsString(export_result.exportData.get(), export_result.dataLength); in exportKey()
Dkey_store_service.cpp415 *pubkey = result.exportData.release(); in get_pubkey()
809 result->exportData.reset(const_cast<uint8_t*>(output.data)); in exportKey()
/system/security/keystore/include/keystore/
DIKeystoreService.h79 std::unique_ptr<uint8_t[], MallocDeleter> exportData; member