HomeSort by relevance Sort by last modified time
    Searched full:op_handle (Results 1 - 6 of 6) sorted by null

  /system/keymaster/
google_keymaster_test.cpp 421 update_request.op_handle = begin_response.op_handle;
430 finish_request.op_handle = begin_response.op_handle;
472 update_request.op_handle = begin_response.op_handle;
481 finish_request.op_handle = begin_response.op_handle;
487 EXPECT_EQ(KM_ERROR_INVALID_OPERATION_HANDLE, device.AbortOperation(begin_response.op_handle));
504 update_request.op_handle = begin_response.op_handle
    [all...]
google_keymaster.cpp 194 response->op_handle = 0;
208 response->error = AddOperation(operation.release(), &response->op_handle);
213 OpTableEntry* entry = FindOperation(request.op_handle);
228 OpTableEntry* entry = FindOperation(request.op_handle);
238 keymaster_error_t GoogleKeymaster::AbortOperation(const keymaster_operation_handle_t op_handle) {
239 OpTableEntry* entry = FindOperation(op_handle);
438 keymaster_operation_handle_t* op_handle) {
440 if (RAND_bytes(reinterpret_cast<uint8_t*>(op_handle), sizeof(*op_handle)) == 0)
442 if (*op_handle == 0)
    [all...]
google_keymaster_messages.cpp 166 return sizeof(op_handle);
170 return append_uint64_to_buf(buf, end, op_handle);
174 return copy_uint64_from_buf(buf_ptr, end, &op_handle);
178 return sizeof(op_handle) + input.SerializedSize();
182 buf = append_uint64_to_buf(buf, end, op_handle);
187 return copy_uint64_from_buf(buf_ptr, end, &op_handle) && input.Deserialize(buf_ptr, end);
203 return sizeof(op_handle) + signature.SerializedSize();
207 buf = append_uint64_to_buf(buf, end, op_handle);
212 return copy_uint64_from_buf(buf_ptr, end, &op_handle) && signature.Deserialize(buf_ptr, end);
google_keymaster_messages_test.cpp 187 msg.op_handle = 0xDEADBEEF;
191 EXPECT_EQ(0xDEADBEEF, deserialized->op_handle);
197 msg.op_handle = 0xDEADBEEF;
205 msg.op_handle = 0xDEADBEEF;
226 msg.op_handle = 0xDEADBEEF;
230 EXPECT_EQ(0xDEADBEEF, deserialized->op_handle);
  /system/keymaster/include/keymaster/
google_keymaster.h 78 keymaster_error_t AbortOperation(const keymaster_operation_handle_t op_handle);
124 keymaster_error_t AddOperation(Operation* operation, keymaster_operation_handle_t* op_handle);
125 OpTableEntry* FindOperation(keymaster_operation_handle_t op_handle);
google_keymaster_messages.h 184 keymaster_operation_handle_t op_handle; member in struct:keymaster::BeginOperationResponse
192 keymaster_operation_handle_t op_handle; member in struct:keymaster::UpdateOperationRequest
209 keymaster_operation_handle_t op_handle; member in struct:keymaster::FinishOperationRequest

Completed in 1451 milliseconds