Home
last modified time | relevance | path

Searched refs:Uuid (Results 1 – 25 of 40) sorted by relevance

12

/optee_rust/optee-utee/src/
A Duuid.rs26 pub struct Uuid { struct
30 impl Uuid { implementation
38 pub fn parse_str(input: &str) -> Result<Uuid, uuid_crate::Error> { in parse_str() argument
39 let uuid = uuid_crate::Uuid::parse_str(input)?; in parse_str()
57 pub fn from_bytes(bytes: [u8; 16]) -> Uuid { in from_bytes() argument
58 let uuid = uuid_crate::Uuid::from_bytes(bytes);
71 pub fn from_slice(b: &[u8]) -> Result<Uuid, uuid_crate::Error> { in from_slice() argument
72 let uuid = uuid_crate::Uuid::from_slice(b)?; in from_slice()
88 ) -> Uuid { argument
104 impl fmt::Display for Uuid { implementation
A Dextension.rs18 use crate::{Error, Result, Uuid};
22 uuid: Uuid
26 pub fn new(uuid: &Uuid) -> Self { in new()
30 let raw_uuid: Uuid = self.uuid; in invoke()
/optee_rust/optee-teec/src/
A Duuid.rs27 pub struct Uuid { struct
31 impl Uuid { argument
39 pub fn parse_str(input: &str) -> Result<Uuid, ParseError> { in parse_str() argument
40 let uuid = uuid_crate::Uuid::parse_str(input)?; in parse_str()
58 pub fn from_bytes(bytes: [u8; 16]) -> Uuid { in from_bytes() argument
59 let uuid = uuid_crate::Uuid::from_bytes(bytes);
72 pub fn from_slice(b: &[u8]) -> Result<Uuid, BytesError> { in from_slice() argument
73 let uuid = uuid_crate::Uuid::from_slice(b)?; in from_slice()
89 ) -> Uuid { argument
105 impl fmt::Display for Uuid { implementation
A Dcontext.rs18 use crate::{Error, Operation, Result, Session, Uuid};
82 pub fn open_session(&mut self, uuid: Uuid) -> Result<Session> { in open_session()
106 uuid: Uuid, in open_session_with_operation() argument
/optee_rust/examples/random-rs/host/src/
A Dmain.rs18 use optee_teec::{Context, Operation, ParamNone, ParamTmpRef, Session, Uuid};
31 let generate_uuid = Uuid::from_slice(&random_uuid).unwrap(); in random()
40 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/tcp_client-rs/host/src/
A Dmain.rs18 use optee_teec::{Context, Operation, Session, Uuid};
30 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/time-rs/host/src/
A Dmain.rs19 use optee_teec::{Context, Operation, Session, Uuid};
32 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/supp_plugin-rs/plugin/
A Dbuild.rs23 use uuid::Uuid;
30 let plugin_uuid = Uuid::parse_str(proto::PLUGIN_UUID).unwrap(); in main()
/optee_rust/examples/supp_plugin-rs/host/src/
A Dmain.rs18 use optee_teec::{Context, Operation, ParamTmpRef, Session, Uuid};
37 let uuid = Uuid::parse_str(TA_UUID).unwrap(); in main()
/optee_rust/examples/hello_world-rs/host/src/
A Dmain.rs18 use optee_teec::{Context, Operation, ParamType, Session, Uuid};
38 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/serde-rs/host/src/
A Dmain.rs18 use optee_teec::{Context, Operation, ParamNone, ParamTmpRef, Session, Uuid};
45 Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/udp_socket-rs/host/src/
A Dmain.rs18 use optee_teec::{Context, Operation, Session, Uuid};
35 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/time-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/hello_world-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/secure_storage-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/random-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/hotp-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/aes-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/authentication-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/big_int-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/acipher-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/udp_socket-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/diffie_hellman-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()
/optee_rust/examples/supp_plugin-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::TA_UUID).unwrap(); in main()
/optee_rust/examples/tcp_client-rs/ta/
A Dbuild.rs23 use uuid::Uuid;
31 let tee_uuid = Uuid::parse_str(proto::UUID).unwrap(); in main()

Completed in 15 milliseconds

12