Home
last modified time | relevance | path

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

/system/security/keystore/
Dkeystore_client_impl.cpp284 active_operations_[*handle] = result.token; in beginOperation()
299 if (active_operations_.count(handle) == 0) { in updateOperation()
305 keystore_->update(active_operations_[handle], input_arguments, StringAsByteArray(input_data), in updateOperation()
324 if (active_operations_.count(handle) == 0) { in finishOperation()
330 keystore_->finish(active_operations_[handle], input_arguments, in finishOperation()
340 active_operations_.erase(handle); in finishOperation()
346 if (active_operations_.count(handle) == 0) { in abortOperation()
349 int32_t error_code = mapKeystoreError(keystore_->abort(active_operations_[handle])); in abortOperation()
351 active_operations_.erase(handle); in abortOperation()
/system/security/keystore/include/keystore/
Dkeystore_client_impl.h112 std::map<keymaster_operation_handle_t, android::sp<android::IBinder>> active_operations_; variable