Home
last modified time | relevance | path

Searched refs:Attachment (Results 1 – 25 of 39) sorted by relevance

12

/external/webkit/Source/WebKit2/Platform/CoreIPC/
DAttachment.cpp34 Attachment::Attachment() in Attachment() function in CoreIPC::Attachment
40 Attachment::Attachment(mach_port_name_t port, mach_msg_type_name_t disposition) in Attachment() function in CoreIPC::Attachment
47 Attachment::Attachment(void* address, mach_msg_size_t size, mach_msg_copy_options_t copyOptions, bo… in Attachment() function in CoreIPC::Attachment
56 void Attachment::release() in release()
62 void Attachment::encode(ArgumentEncoder* encoder) const in encode()
67 bool Attachment::decode(ArgumentDecoder* decoder, Attachment& attachment) in decode()
DAttachment.h34 class Attachment {
36 Attachment();
49 Attachment(mach_port_name_t port, mach_msg_type_name_t disposition);
50Attachment(void* address, mach_msg_size_t size, mach_msg_copy_options_t copyOptions, bool dealloca…
52 Attachment(int fileDescriptor, size_t);
79 static bool decode(ArgumentDecoder*, Attachment&);
DArgumentEncoder.h70 void addAttachment(const Attachment&);
71 Vector<Attachment> releaseAttachments();
87 Vector<Attachment> m_attachments;
DArgumentDecoder.cpp39 ArgumentDecoder::ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>& attac… in ArgumentDecoder()
53 Deque<Attachment>::iterator end = m_attachments.end(); in ~ArgumentDecoder()
54 for (Deque<Attachment>::iterator it = m_attachments.begin(); it != end; ++it) in ~ArgumentDecoder()
216 bool ArgumentDecoder::removeAttachment(Attachment& attachment) in removeAttachment()
DArgumentDecoder.h42 ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>&);
100 bool removeAttachment(Attachment&);
121 Deque<Attachment> m_attachments;
DArgumentEncoder.cpp147 void ArgumentEncoder::addAttachment(const Attachment& attachment) in addAttachment()
152 Vector<Attachment> ArgumentEncoder::releaseAttachments() in releaseAttachments()
154 Vector<Attachment> newList; in releaseAttachments()
/external/webkit/Source/WebKit2/Platform/CoreIPC/mac/
DConnectionMac.cpp139 Vector<Attachment> attachments = arguments->releaseAttachments(); in sendOutgoingMessage()
144 Attachment::Type type = attachments[i].type(); in sendOutgoingMessage()
145 if (type == Attachment::MachPortType) in sendOutgoingMessage()
147 else if (type == Attachment::MachOOLMemoryType) in sendOutgoingMessage()
158 …attachments.append(Attachment(arguments->buffer(), arguments->bufferSize(), MACH_MSG_VIRTUAL_COPY,… in sendOutgoingMessage()
182 Attachment attachment = attachments[i]; in sendOutgoingMessage()
186 case Attachment::MachPortType: in sendOutgoingMessage()
193 case Attachment::MachOOLMemoryType: in sendOutgoingMessage()
248 Deque<Attachment> attachments; in createArgumentDecoder()
261 attachments.append(Attachment(descriptor->port.name, descriptor->port.disposition)); in createArgumentDecoder()
[all …]
DMachPort.h51 encoder->encode(Attachment(m_port, m_disposition)); in encode()
56 Attachment attachment; in decode()
/external/webkit/Source/WebKit2/Platform/CoreIPC/unix/
DAttachmentUnix.cpp35 Attachment::Attachment(int fileDescriptor, size_t size) in Attachment() function in CoreIPC::Attachment
44 void Attachment::dispose() in dispose()
DConnectionUnix.cpp163 Deque<Attachment> attachments; in readyReadHandler()
167 …AttachmentResourceGuard<Deque<Attachment>, Deque<Attachment>::iterator> attachementDisposer(attach… in readyReadHandler()
229 attachments.append(Attachment(fileDescriptors[i], attachmentSizes[i])); in readyReadHandler()
315 Vector<Attachment> attachments = arguments->releaseAttachments(); in sendOutgoingMessage()
316 …AttachmentResourceGuard<Vector<Attachment>, Vector<Attachment>::iterator> attachementDisposer(atta… in sendOutgoingMessage()
/external/webkit/Tools/QueueStatusServer/handlers/
Dreleasepatch.py33 from model.attachment import Attachment
50 attachment = Attachment(attachment_id)
Dsubmittoews.py33 from model.attachment import Attachment
63 attachment = Attachment(attachment_id)
Dstatusbubble.py34 from model.attachment import Attachment
54 attachment = Attachment(int(attachment_id))
Ddashboard.py34 from model.attachment import Attachment
62 "rows": [self._build_row(attachment) for attachment in Attachment.recent(limit=25)],
Dupdatestatus.py34 from model.attachment import Attachment
65 Attachment.dirty(queue_status.active_patch_id)
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
Dpostdiffforrevert.py29 from webkitpy.common.net.bugzilla import Attachment
46 "%s%s" % (Attachment.rollout_preamble, state["revision"]),
/external/webkit/Source/WebKit2/Shared/mac/
DUpdateChunk.cpp72 encoder->encode(CoreIPC::Attachment(m_data, size(), MACH_MSG_VIRTUAL_COPY, true)); in encode()
84 CoreIPC::Attachment attachment; in decode()
/external/webkit/Source/WebKit2/Platform/unix/
DSharedMemoryUnix.cpp81 CoreIPC::Attachment attachment; in decode()
89 CoreIPC::Attachment SharedMemory::Handle::releaseToAttachment() const in releaseToAttachment()
95 return CoreIPC::Attachment(temp, m_size); in releaseToAttachment()
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
Dbug.py31 from .attachment import Attachment
88 return [Attachment(attachment, self) for attachment in attachments]
D__init__.py8 from .attachment import Attachment
Dattachment.py34 class Attachment(object): class
/external/webkit/Source/WebKit2/Platform/
DSharedMemory.h64 CoreIPC::Attachment releaseToAttachment() const;
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
Dqueues_unittest.py33 from webkitpy.common.net.bugzilla import Attachment
201 return Attachment(attachment_dictionary, None)
Dqueuestest.py31 from webkitpy.common.net.bugzilla import Attachment
/external/webkit/Tools/QueueStatusServer/model/
Dattachment.py38 class Attachment(object): class

12