Home
last modified time | relevance | path

Searched refs:buf_ptr (Results 1 – 3 of 3) sorted by relevance

/trusty/user/app/keymaster/
Dtrusty_keymaster_messages.h25 const uint8_t** buf_ptr, in copy_keymaster_algorithm_from_buf() argument
29 if (copy_uint32_from_buf(buf_ptr, end, &val)) { in copy_keymaster_algorithm_from_buf()
47 const uint8_t** buf_ptr, in copy_keymaster_verified_boot_from_buf() argument
51 if (copy_uint32_from_buf(buf_ptr, end, &val)) { in copy_keymaster_verified_boot_from_buf()
77 bool Deserialize(const uint8_t** buf_ptr, const uint8_t* end) override { in Deserialize()
78 return data.Deserialize(buf_ptr, end); in Deserialize()
97 bool NonErrorDeserialize(const uint8_t** buf_ptr, in NonErrorDeserialize()
99 return data.Deserialize(buf_ptr, end); in NonErrorDeserialize()
122 bool Deserialize(const uint8_t** buf_ptr, const uint8_t* end) override { in Deserialize()
123 return copy_uint32_from_buf(buf_ptr, end, &os_version) && in Deserialize()
[all …]
/trusty/kernel/lib/arm_trng/
Darm_trng.c75 static void arm_trng_copy_register(uint8_t** buf_ptr, in arm_trng_copy_register() argument
83 memcpy(*buf_ptr, reg, count); in arm_trng_copy_register()
84 *buf_ptr += count; in arm_trng_copy_register()
/trusty/user/base/lib/tipc/rust/src/
Dhandle.rs355 let buf_ptr = in mmap() localVariable
358 if buf_ptr == libc::MAP_FAILED { in mmap()
361 Ok(UnsafeSharedBuf { buf: buf_ptr as *mut u8, len: size }) in mmap()