Searched refs:exportData (Results 1 – 4 of 4) sorted by relevance
99 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()
257 *export_data = ByteArrayAsString(export_result.exportData.get(), export_result.dataLength); in exportKey()
415 *pubkey = result.exportData.release(); in get_pubkey()809 result->exportData.reset(const_cast<uint8_t*>(output.data)); in exportKey()
79 std::unique_ptr<uint8_t[], MallocDeleter> exportData; member