Lines Matching refs:device_

177     device_ = GetParam()->CreateDevice();  in Keymaster2Test()
183 device_->common.close(reinterpret_cast<hw_device_t*>(device_)); in ~Keymaster2Test()
187 return device_; in device()
687 memset(&device_, 0, sizeof(device_)); in Sha256OnlyWrapper()
688 device_.common.module = &new_module; in Sha256OnlyWrapper()
690 device_.common.close = close_device; in Sha256OnlyWrapper()
691 device_.get_supported_algorithms = get_supported_algorithms; in Sha256OnlyWrapper()
692 device_.get_supported_block_modes = get_supported_block_modes; in Sha256OnlyWrapper()
693 device_.get_supported_padding_modes = get_supported_padding_modes; in Sha256OnlyWrapper()
694 device_.get_supported_digests = get_supported_digests; in Sha256OnlyWrapper()
695 device_.get_supported_import_formats = get_supported_import_formats; in Sha256OnlyWrapper()
696 device_.get_supported_export_formats = get_supported_export_formats; in Sha256OnlyWrapper()
697 device_.add_rng_entropy = add_rng_entropy; in Sha256OnlyWrapper()
698 device_.generate_key = generate_key; in Sha256OnlyWrapper()
699 device_.get_key_characteristics = get_key_characteristics; in Sha256OnlyWrapper()
700 device_.import_key = import_key; in Sha256OnlyWrapper()
701 device_.export_key = export_key; in Sha256OnlyWrapper()
702 device_.begin = begin; in Sha256OnlyWrapper()
703 device_.update = update; in Sha256OnlyWrapper()
704 device_.finish = finish; in Sha256OnlyWrapper()
705 device_.abort = abort; in Sha256OnlyWrapper()
708 keymaster1_device_t* keymaster_device() { return &device_; } in keymaster_device()
891 keymaster1_device_t device_; member in keymaster::test::Sha256OnlyWrapper