Home
last modified time | relevance | path

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

/system/vold/
DKeymaster.h43 class KeymasterOperation {
45 ~KeymasterOperation();
57 KeymasterOperation(KeymasterOperation&& rhs) { in KeymasterOperation() function
63 KeymasterOperation(std::shared_ptr<IKeymasterDevice> d, keymaster_operation_handle_t h) in KeymasterOperation() function
67 DISALLOW_COPY_AND_ASSIGN(KeymasterOperation);
83 KeymasterOperation begin(keymaster_purpose_t purpose, const std::string& key,
86 KeymasterOperation begin(keymaster_purpose_t purpose, const std::string& key,
DKeymaster.cpp114 KeymasterOperation::~KeymasterOperation() { in ~KeymasterOperation()
118 bool KeymasterOperation::updateCompletely(const std::string& input, std::string* output) { in updateCompletely()
145 bool KeymasterOperation::finish() { in finish()
155 bool KeymasterOperation::finishWithOutput(std::string* output) { in finishWithOutput()
220 KeymasterOperation Keymaster::begin(keymaster_purpose_t purpose, const std::string& key, in begin()
229 return KeymasterOperation(nullptr, mOpHandle); in begin()
234 return KeymasterOperation(mDevice, mOpHandle); in begin()
237 KeymasterOperation Keymaster::begin(keymaster_purpose_t purpose, const std::string& key, in begin()
244 return KeymasterOperation(nullptr, mOpHandle); in begin()
246 return KeymasterOperation(mDevice, mOpHandle); in begin()