Home
last modified time | relevance | path

Searched defs:Device (Results 1 – 24 of 24) sorted by relevance

/system/keymint/
DREADME.md57 ### Rust Toolchain and Heap Allocator
72 ### HAL Service
109 ### TA Driver
136 ### Bootloader
147 ### Authenticators
161 ### Cryptographic Abstractions
183 ### Device Abstractions
/system/keymint/hal/src/
Dsecureclock.rs26 pub struct Device<T: SerializedChannel + 'static> { struct
30 impl<T: SerializedChannel + Send> binder::Interface for Device<T> {} argument
32 impl<T: SerializedChannel + 'static> Device<T> { impl
46 impl<T: SerializedChannel> ChannelHalService<T> for Device<T> { implementation
52 impl<T: SerializedChannel> ISecureClock::ISecureClock for Device<T> { implementation
Dsharedsecret.rs28 pub struct Device<T: SerializedChannel + 'static> { struct
32 impl<T: SerializedChannel + Send> binder::Interface for Device<T> {} argument
34 impl<T: SerializedChannel + 'static> Device<T> { impl
50 impl<T: SerializedChannel> ChannelHalService<T> for Device<T> { implementation
56 impl<T: SerializedChannel> ISharedSecret::ISharedSecret for Device<T> { implementation
Drpc.rs25 pub struct Device<T: SerializedChannel + 'static> { struct
29 impl<T: SerializedChannel + 'static> Device<T> { implementation
46 impl<T: SerializedChannel> ChannelHalService<T> for Device<T> { implementation
52 impl<T: SerializedChannel> binder::Interface for Device<T> {} implementation
54 impl<T: SerializedChannel> rkp::IRemotelyProvisionedComponent::IRemotelyProvisionedComponent
Dkeymint.rs68 pub struct Device<T: SerializedChannel + 'static> { struct
72 impl<T: SerializedChannel + 'static> Device<T> { argument
89 impl<T: SerializedChannel> ChannelHalService<T> for Device<T> { implementation
95 impl<T: SerializedChannel> binder::Interface for Device<T> {} implementation
97 impl<T: SerializedChannel> keymint::IKeyMintDevice::IKeyMintDevice for Device<T> { implementation
/system/secretkeeper/
DREADME.md97 #### Rust Toolchain and Heap Allocator
112 #### HAL Service
150 #### TA Driver
178 #### Bootloader
194 #### Cryptographic Abstractions
215 #### Device-Specific Abstractions
/system/core/fastboot/fuzzy_fastboot/
DREADME.md292 ### Step 1: Pass the generic Conformance tests
336 ### Step 2: Pass all the other generic tests
347 ### Step 3: Create a device XML configuration
366 ### Step 4: Figure out what Fuzzy Fastboot can't/isn't testing
372 ### Step 5: Celebrate
/system/teeui/tools/framebufferizer/src/com/android/framebufferizer/utils/
DDeviceInfoDB.java21 public static enum Device { BLUELINE, BONITO, CROSSHATCH, CORAL, SARGO}; enum in DeviceInfoDB
/system/cros-codecs/src/encoder/stateful/h265/
Dv4l2.rs64 fn apply_tunings(device: &Device, tunings: &Tunings) -> Result<(), ControlError> { in apply_tunings()
81 device: Arc<Device>, in new()
131 device: Arc<Device>, in new()
/system/cros-codecs/src/encoder/stateful/h264/
Dv4l2.rs84 fn apply_tunings(device: &Device, tunings: &Tunings) -> Result<(), ControlError> { in apply_tunings()
101 device: Arc<Device>, in new()
139 device: Arc<Device>, in new()
/system/cros-codecs/src/encoder/stateful/vp8/
Dv4l2.rs39 fn apply_tunings(device: &Device, tunings: &Tunings) -> Result<(), ControlError> { in apply_tunings()
56 device: Arc<Device>, in new()
92 device: Arc<Device>, in new()
/system/cros-codecs/src/encoder/stateful/vp9/
Dv4l2.rs52 fn apply_tunings(device: &Device, tunings: &Tunings) -> Result<(), ControlError> { in apply_tunings()
69 device: Arc<Device>, in new()
109 device: Arc<Device>, in new()
/system/extras/simpleperf/scripts/test/
Ddo_test.py205 class Device: class
232 device: Optional[Device],
352 self, devices: List[Device],
/system/see/authmgr/authmgr-be/src/
Dtraits.rs37 pub trait Device: Send { interface
Dauthorization.rs86 device: Box<dyn Device>, in new()
/system/cros-codecs/src/backend/v4l2/
Dencoder.rs311 fn apply_tunings(device: &Device, tunings: &Tunings) -> Result<(), ControlError>; in apply_tunings()
409 device: &Device, in apply_ctrl()
472 pub(crate) fn apply_parm(device: &Device, queue_type: QueueType, framerate: u32) { in apply_parm()
514 device: &Device, in apply_rate_control()
543 device: &Device, in apply_selection()
586 device: Arc<Device>, in create()
/system/cros-codecs/src/video_frame/
Dframe_pool.rs72 fn process_dqbuf(&mut self, device: Arc<Device>, format: &Format, buf: &V4l2Buffer) { in process_dqbuf()
Dv4l2_mmap_video_frame.rs153 fn process_dqbuf(&mut self, device: Arc<Device>, format: &Format, buf: &V4l2Buffer) { in process_dqbuf()
Dgeneric_dma_video_frame.rs526 fn process_dqbuf(&mut self, _device: Arc<Device>, _format: &Format, _buf: &V4l2Buffer) {} in process_dqbuf()
Dgbm_video_frame.rs395 fn process_dqbuf(&mut self, _device: Arc<Device>, _format: &Format, _buf: &V4l2Buffer) {} in process_dqbuf()
/system/authgraph/core/src/
Dtraits.rs154 pub trait Device { interface
Dkeyexchange.rs115 device: Rc<RefCell<dyn Device>>, in new()
/system/cros-codecs/src/
Dvideo_frame.rs274 fn process_dqbuf(&mut self, device: Arc<Device>, format: &Format, buf: &V4l2Buffer); in process_dqbuf()
/system/authgraph/tests/src/
Dlib.rs1244 pub fn test_get_identity<D: Device, E: EcDsa>(ag_device: &D, ecdsa: &E) { in test_get_identity()