Home | History | Annotate | Download | only in proxy

Lines Matching defs:Header

33   // Header contains the fields that we send in IPC messages, apart from the
35 struct Header {
36 Header() : type(INVALID), size(0), open_flags(0) {}
37 Header(Type type_arg,
122 Header header() const {
123 return Header(type_, size_, open_flags_, file_io_);
129 // Write/Read a Header, which contains all the data except the handle. This
132 static bool WriteHeader(const Header& hdr, Pickle* pickle);
133 static bool ReadHeader(PickleIterator* iter, Header* hdr);