Searched defs:data_num_bytes (Results 1 - 6 of 6) sorted by relevance

/external/libmojo/mojo/public/cpp/bindings/lib/
H A Dvalidation_context.cc13 size_t data_num_bytes,
22 data_end_(data_begin_ + data_num_bytes),
12 ValidationContext(const void* data, size_t data_num_bytes, size_t num_handles, size_t num_associated_endpoint_handles, Message* message, const base::StringPiece& description, int stack_depth) argument
/external/libmojo/mojo/edk/system/
H A Dchannel.h130 static MessagePtr Deserialize(const void* data, size_t data_num_bytes);
133 size_t data_num_bytes() const { return size_; } function in struct:mojo::edk::Channel::Message
H A Dchannel_win.cc38 DCHECK_GT(message_->data_num_bytes(), offset_);
55 size_t data_num_bytes() const { return message_->data_num_bytes() - offset_; } function in class:mojo::edk::__anon11795::MessageView
59 DCHECK_GE(message_->data_num_bytes(), offset_ + num_bytes);
265 if (message_view.data_num_bytes() == 0) {
306 static_cast<DWORD>(message_view.data_num_bytes()),
H A Dchannel.cc144 size_t data_num_bytes) {
145 if (data_num_bytes < sizeof(LegacyHeader))
150 if (legacy_header->num_bytes != data_num_bytes) {
152 << " != " << data_num_bytes;
164 payload_size = data_num_bytes - sizeof(LegacyHeader);
174 payload_size = data_num_bytes - header->num_header_bytes;
206 DCHECK_EQ(message->data_num_bytes(), data_num_bytes);
143 Deserialize(const void* data, size_t data_num_bytes) argument
H A Dchannel_posix.cc45 DCHECK_GT(message_->data_num_bytes(), offset_);
63 size_t data_num_bytes() const { return message_->data_num_bytes() - offset_; } function in class:mojo::edk::__anon11794::MessageView
67 DCHECK_GT(message_->data_num_bytes(), offset_ + num_bytes);
366 message_view.data_num_bytes()
402 message_view.data_num_bytes());
433 } while (bytes_written < message_view.data_num_bytes());
/external/libmojo/mojo/public/cpp/bindings/
H A Dmessage.h64 uint32_t data_num_bytes() const { function in class:mojo::Message

Completed in 6603 milliseconds