Home
last modified time | relevance | path

Searched refs:mOpHandle (Results 1 – 2 of 2) sorted by relevance

/system/vold/
DKeymaster.cpp115 if (mDevice) mDevice->abort(mOpHandle); in ~KeymasterOperation()
127 mDevice->update(mOpHandle, nullptr, &inputBlob, &inputConsumed, nullptr, &outputBlob); in updateCompletely()
146 auto error = mDevice->finish(mOpHandle, nullptr, nullptr, nullptr, nullptr); in finish()
157 auto error = mDevice->finish(mOpHandle, nullptr, nullptr, nullptr, &outputBlob); in finishWithOutput()
224 keymaster_operation_handle_t mOpHandle; in begin() local
226 auto error = mDevice->begin(purpose, &keyBlob, &inParams, &outParams_set, &mOpHandle); in begin()
229 return KeymasterOperation(nullptr, mOpHandle); in begin()
234 return KeymasterOperation(mDevice, mOpHandle); in begin()
240 keymaster_operation_handle_t mOpHandle; in begin() local
241 auto error = mDevice->begin(purpose, &keyBlob, &inParams, nullptr, &mOpHandle); in begin()
[all …]
DKeymaster.h58 mOpHandle = std::move(rhs.mOpHandle); in KeymasterOperation()
64 : mDevice{d}, mOpHandle{h} {} in KeymasterOperation()
66 keymaster_operation_handle_t mOpHandle; variable