Home | History | Annotate | Download | only in ipc

Lines Matching defs:Header

21 // - a message header that gives for example the message size or its type,
74 // incuding the header, the content and the possible padding.
76 size_t size() const { return cached_msg_.header.size; }
80 return minimum_msg_size() + cached_msg_.header.content_size;
84 size_t content_size() const { return cached_msg_.header.content_size; }
87 uint32 type() const { return cached_msg_.header.type; }
118 struct Header {
119 // Total size of the message (including both header & content).
128 // Message header.
129 Header header;
137 // a complete underlying serialized structure: only the message header is
143 // - for security purpose: cache the msg header to avoid browser security
146 Header* const cached_header_;