Home
last modified time | relevance | path

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

/system/vold/
DKeymaster.h78 KeymasterOperation() : mDevice{nullptr}, mOpHandle{0}, mError{km::ErrorCode::UNKNOWN_ERROR} {} in KeymasterOperation()
84 mOpHandle = rhs.mOpHandle;
85 rhs.mOpHandle = 0;
95 : mDevice{d}, mOpHandle{h}, mError{km::ErrorCode::OK} {} in KeymasterOperation()
96 KeymasterOperation(km::ErrorCode error) : mDevice{nullptr}, mOpHandle{0}, mError{error} {} in KeymasterOperation()
102 uint64_t mOpHandle; variable
DKeymaster.cpp31 if (mDevice) mDevice->abort(mOpHandle); in ~KeymasterOperation()
52 auto error = mDevice->update(mOpHandle, hidl_vec<km::KeyParameter>(), inputBlob, in updateCompletely()
81 auto error = mDevice->finish(mOpHandle, hidl_vec<km::KeyParameter>(), hidl_vec<uint8_t>(), in finish()
204 uint64_t mOpHandle; in begin() local
212 mOpHandle = operationHandle; in begin()
224 return KeymasterOperation(mDevice.get(), mOpHandle); in begin()