Lines Matching refs:id
91 pub fn from_ref(id: AttributeId, buffer: &'attrref [u8]) -> Self { in from_ref()
96 id as u32, in from_ref()
138 pub fn from_value(id: AttributeId, a: u32, b: u32) -> Self { in from_value()
141 raw::TEE_InitValueAttribute(&mut res.raw, id as u32, a, b); in from_value()
242 fn ref_attribute(&self, id: AttributeId, buffer: &mut [u8]) -> Result<usize> { in ref_attribute()
247 id as u32, in ref_attribute()
257 fn value_attribute(&self, id: u32) -> Result<(u32, u32)> { in value_attribute()
263 id, in value_attribute()
688 pub fn ref_attribute(&self, id: AttributeId, buffer: &mut [u8]) -> Result<usize> { in ref_attribute()
689 self.0.ref_attribute(id, buffer) in ref_attribute()
725 pub fn value_attribute(&self, id: u32) -> Result<(u32, u32)> { in value_attribute()
726 self.0.value_attribute(id) in value_attribute()
1141 pub fn ref_attribute(&self, id: AttributeId, buffer: &mut [u8]) -> Result<usize> { in ref_attribute()
1142 self.0.ref_attribute(id, buffer) in ref_attribute()
1153 pub fn value_attribute(&self, id: u32) -> Result<(u32, u32)> { in value_attribute()
1154 self.0.value_attribute(id) in value_attribute()