Home | History | Annotate | Download | only in ipc

Lines Matching refs:BrokerableAttachment

14 // BrokerableAttachment::AttachmentId ------------------------------------------
17 BrokerableAttachment::AttachmentId
18 BrokerableAttachment::AttachmentId::CreateIdWithRandomNonce() {
25 BrokerableAttachment::AttachmentId::AttachmentId() {
26 for (size_t i = 0; i < BrokerableAttachment::kNonceSize; ++i)
30 BrokerableAttachment::AttachmentId::AttachmentId(const char* start_address,
32 DCHECK(size == BrokerableAttachment::kNonceSize);
33 for (size_t i = 0; i < BrokerableAttachment::kNonceSize; ++i)
37 void BrokerableAttachment::AttachmentId::SerializeToBuffer(char* start_address,
39 DCHECK(size == BrokerableAttachment::kNonceSize);
40 for (size_t i = 0; i < BrokerableAttachment::kNonceSize; ++i)
44 // BrokerableAttachment::BrokerableAttachment ----------------------------------
46 BrokerableAttachment::BrokerableAttachment()
49 BrokerableAttachment::BrokerableAttachment(const AttachmentId& id) : id_(id) {}
51 BrokerableAttachment::~BrokerableAttachment() {}
53 BrokerableAttachment::AttachmentId BrokerableAttachment::GetIdentifier() const {
57 bool BrokerableAttachment::NeedsBrokering() const {
61 BrokerableAttachment::Type BrokerableAttachment::GetType() const {
66 base::PlatformFile BrokerableAttachment::TakePlatformFile() {