/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
D | Attachment.cpp | 34 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()
|
D | Attachment.h | 34 class Attachment { 36 Attachment(); 49 Attachment(mach_port_name_t port, mach_msg_type_name_t disposition); 50 …Attachment(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&);
|
D | ArgumentEncoder.h | 70 void addAttachment(const Attachment&); 71 Vector<Attachment> releaseAttachments(); 87 Vector<Attachment> m_attachments;
|
D | ArgumentDecoder.cpp | 39 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()
|
D | ArgumentDecoder.h | 42 ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>&); 100 bool removeAttachment(Attachment&); 121 Deque<Attachment> m_attachments;
|
D | ArgumentEncoder.cpp | 147 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/ |
D | ConnectionMac.cpp | 139 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 …]
|
D | MachPort.h | 51 encoder->encode(Attachment(m_port, m_disposition)); in encode() 56 Attachment attachment; in decode()
|
/external/webkit/Source/WebKit2/Platform/CoreIPC/unix/ |
D | AttachmentUnix.cpp | 35 Attachment::Attachment(int fileDescriptor, size_t size) in Attachment() function in CoreIPC::Attachment 44 void Attachment::dispose() in dispose()
|
D | ConnectionUnix.cpp | 163 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/ |
D | releasepatch.py | 33 from model.attachment import Attachment 50 attachment = Attachment(attachment_id)
|
D | submittoews.py | 33 from model.attachment import Attachment 63 attachment = Attachment(attachment_id)
|
D | statusbubble.py | 34 from model.attachment import Attachment 54 attachment = Attachment(int(attachment_id))
|
D | dashboard.py | 34 from model.attachment import Attachment 62 "rows": [self._build_row(attachment) for attachment in Attachment.recent(limit=25)],
|
D | updatestatus.py | 34 from model.attachment import Attachment 65 Attachment.dirty(queue_status.active_patch_id)
|
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
D | postdiffforrevert.py | 29 from webkitpy.common.net.bugzilla import Attachment 46 "%s%s" % (Attachment.rollout_preamble, state["revision"]),
|
/external/webkit/Source/WebKit2/Shared/mac/ |
D | UpdateChunk.cpp | 72 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/ |
D | SharedMemoryUnix.cpp | 81 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/ |
D | bug.py | 31 from .attachment import Attachment 88 return [Attachment(attachment, self) for attachment in attachments]
|
D | __init__.py | 8 from .attachment import Attachment
|
D | attachment.py | 34 class Attachment(object): class
|
/external/webkit/Source/WebKit2/Platform/ |
D | SharedMemory.h | 64 CoreIPC::Attachment releaseToAttachment() const;
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
D | queues_unittest.py | 33 from webkitpy.common.net.bugzilla import Attachment 201 return Attachment(attachment_dictionary, None)
|
D | queuestest.py | 31 from webkitpy.common.net.bugzilla import Attachment
|
/external/webkit/Tools/QueueStatusServer/model/ |
D | attachment.py | 38 class Attachment(object): class
|