Home
last modified time | relevance | path

Searched defs:AsBytes (Results 1 – 16 of 16) sorted by relevance

/external/cronet/base/
Dtoken.h50 span<const uint8_t, 16> AsBytes() const { in AsBytes() function
Dunguessable_token.h96 span<const uint8_t, 16> AsBytes() const { return token_.AsBytes(); } in AsBytes() function
/external/rust/crates/nom/src/
Dtraits.rs90 pub trait AsBytes { interface
95 impl<'a> AsBytes for &'a str { impl
109 impl<'a> AsBytes for &'a [u8] { impl
116 impl AsBytes for [u8] { impl
126 impl<'a> AsBytes for &'a [u8; $N] { impl
133 impl AsBytes for [u8; $N] { impl
/external/perfetto/include/perfetto/trace_processor/
Dbasic_types.h210 const void* AsBytes() const { in AsBytes() function
/external/rust/crates/zerocopy/src/
Dbyteorder.rs166 unsafe impl<O: ByteOrder> AsBytes for $name<O> { impl
Dlib.rs386 pub unsafe trait AsBytes { interface
/external/rust/crates/nom/src/number/
Dcomplete.rs1461 T: AsBytes, in recognize_float_parts()
1567 T: AsBytes, in float()
1620 T: AsBytes, in double()
Dstreaming.rs1430 T: AsBytes, in recognize_float_parts()
1539 T: AsBytes, in float()
1593 T: AsBytes, in double()
/external/pigweed/pw_protobuf/public/pw_protobuf/
Dmessage.h334 Bytes AsBytes(uint32_t field_number) { return As<Bytes>(field_number); } in AsBytes() function
/external/crosvm/common/data_model/src/
Dvolatile_memory.rs302 T: FromBytes + AsBytes, in copy_from()
/external/crosvm/devices/src/virtio/
Ddescriptor_utils.rs577 pub fn write_iter<T: AsBytes, I: Iterator<Item = T>>(&mut self, mut iter: I) -> io::Result<()> { in write_iter()
582 pub fn consume<T: AsBytes, C: IntoIterator<Item = T>>(&mut self, vals: C) -> io::Result<()> { in consume()
/external/crosvm/rutabaga_gfx/src/cross_domain/
Dcross_domain.rs195 fn write_to_ring<T>(&self, mut ring_write: RingWrite<T>) -> RutabagaResult<usize> in write_to_ring()
/external/rust/crates/virtio-drivers/src/device/
Dgpu.rs177 fn request<Req: AsBytes, Rsp: FromBytes>(&mut self, req: Req) -> Result<Rsp> { in request()
/external/libchrome/base/containers/
Dspan_unittest.cc1023 TEST(SpanTest, AsBytes) { in TEST() argument
/external/cronet/base/containers/
Dspan_unittest.cc1078 TEST(SpanTest, AsBytes) { in TEST() argument
/external/crosvm/fuse/src/
Dserver.rs1707 fn reply_ok<T: AsBytes, W: Writer>( in reply_ok()