Home
last modified time | relevance | path

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

/system/keymaster/android_keymaster/
Dandroid_keymaster.cpp64 : context_(context), operation_table_(new(std::nothrow) OperationTable(operation_table_size)) {} in AndroidKeymaster()
69 : context_(move(other.context_)), operation_table_(move(other.operation_table_)) {} in AndroidKeymaster()
303 response->error = operation_table_->Add(move(operation)); in BeginOperation()
312 Operation* operation = operation_table_->Find(request.op_handle); in UpdateOperation()
321 operation_table_->Delete(request.op_handle); in UpdateOperation()
331 operation_table_->Delete(request.op_handle); in UpdateOperation()
341 Operation* operation = operation_table_->Find(request.op_handle); in FinishOperation()
350 operation_table_->Delete(request.op_handle); in FinishOperation()
357 operation_table_->Delete(request.op_handle); in FinishOperation()
365 Operation* operation = operation_table_->Find(request.op_handle); in AbortOperation()
[all …]
/system/keymaster/include/keymaster/
Dandroid_keymaster.h101 UniquePtr<OperationTable> operation_table_; variable