Home
last modified time | relevance | path

Searched refs:num_ports_bytes_ (Results 1 – 4 of 4) sorted by relevance

/external/libmojo/mojo/edk/system/ports/
Dmessage.h43 return start_ + num_header_bytes_ + num_ports_bytes_; in mutable_payload_bytes()
56 size_t num_ports_bytes() const { return num_ports_bytes_; } in num_ports_bytes()
57 size_t num_ports() const { return num_ports_bytes_ / sizeof(PortName); } in num_ports()
83 size_t num_ports_bytes_ = 0; variable
Dmessage.cc86 num_ports_bytes_(num_ports_bytes), in Message()
Dports_unittest.cc56 start_ = new char[num_header_bytes_ + num_ports_bytes_ + num_payload_bytes]; in TestMessage()
/external/libmojo/mojo/edk/system/
Dports_message.cc28 size_t size = num_header_bytes_ + num_ports_bytes_ + num_payload_bytes; in PortsMessage()