Home
last modified time | relevance | path

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

/external/adhd/cros_alsa/src/
Dlib.rs47 pub mod control_tlv; module
53 pub use self::control_tlv::{ControlTLV, TLV};
57 pub use self::control_tlv::Error as ControlTLVError;
Dcard.rs13 use crate::control_tlv::{self, ControlTLV};
26 ControlTLV(control_tlv::Error),
37 impl From<control_tlv::Error> for Error {
38 fn from(err: control_tlv::Error) -> Error { in from()