/external/webkit/Source/WebKit2/Platform/CoreIPC/mac/ |
MachPort.h | 35 class MachPort { 37 MachPort() 43 MachPort(mach_port_name_t port, mach_msg_type_name_t disposition) 54 static bool decode(ArgumentDecoder* decoder, MachPort& p)
|
ConnectionMac.cpp | 30 #include "MachPort.h" 97 deprecatedSend(CoreIPCMessage::InitializeConnection, 0, MachPort(m_receivePort, MACH_MSG_TYPE_MAKE_SEND)); 113 deprecatedSend(CoreIPCMessage::SetExceptionPort, 0, MachPort(m_exceptionPort, MACH_MSG_TYPE_MAKE_SEND)); 305 static mach_msg_header_t* readFromMachPort(mach_port_t machPort, ReceiveBuffer& buffer) 310 kern_return_t kr = mach_msg(header, MACH_RCV_MSG | MACH_RCV_LARGE | MACH_RCV_TIMEOUT, 0, buffer.size(), machPort, 0, MACH_PORT_NULL); 319 kr = mach_msg(header, MACH_RCV_MSG | MACH_RCV_LARGE | MACH_RCV_TIMEOUT, 0, buffer.size(), machPort, 0, MACH_PORT_NULL); 348 MachPort port; 369 MachPort exceptionPort;
|
/external/webkit/Source/WebKit2/Platform/mac/ |
WorkQueueMac.cpp | 82 mach_port_t machPort = dispatch_source_get_handle(eventSource->m_dispatchSource); 87 mach_port_mod_refs(mach_task_self(), machPort, MACH_PORT_RIGHT_RECEIVE, -1); 91 mach_port_deallocate(mach_task_self(), machPort); 112 void WorkQueue::registerMachPortEventHandler(mach_port_t machPort, MachPortEventType eventType, PassOwnPtr<WorkItem> workItem) 124 dispatch_source_t dispatchSource = dispatch_source_create(sourceType, machPort, 0, m_dispatchQueue); 137 ASSERT(!m_eventSources.contains(machPort)); 139 m_eventSources.set(machPort, eventSource); 146 void WorkQueue::unregisterMachPortEventHandler(mach_port_t machPort) 148 ASSERT(machPort); 152 HashMap<mach_port_t, EventSource*>::iterator it = m_eventSources.find(machPort); [all...] |
SharedMemoryMac.cpp | 32 #include "MachPort.h" 60 encoder->encode(CoreIPC::MachPort(m_port, MACH_MSG_TYPE_MOVE_SEND)); 73 CoreIPC::MachPort machPort; 74 if (!decoder->decode(CoreIPC::Out(machPort))) 78 handle.m_port = machPort.port();
|
/external/webkit/Source/WebKit2/Shared/Plugins/ |
PluginProcessCreationParameters.h | 34 #include "MachPort.h" 54 CoreIPC::MachPort acceleratedCompositingPort;
|
/external/webkit/Source/WebKit2/Shared/mac/ |
ShareableSurface.cpp | 31 #include "MachPort.h" 63 encoder->encode(CoreIPC::MachPort(m_port, MACH_MSG_TYPE_MOVE_SEND)); 71 CoreIPC::MachPort machPort; 72 if (!decoder->decode(machPort)) 75 handle.m_port = machPort.port();
|
/external/webkit/Source/WebKit2/UIProcess/Plugins/ |
PluginProcessProxy.cpp | 40 #include "MachPort.h" 135 reply->send(CoreIPC::MachPort(0, MACH_MSG_TYPE_MOVE_SEND)); 218 void PluginProcessProxy::didCreateWebProcessConnection(const CoreIPC::MachPort& machPort) 225 reply->send(CoreIPC::MachPort(machPort.port(), MACH_MSG_TYPE_MOVE_SEND));
|
PluginProcessProxy.messages.in | 27 DidCreateWebProcessConnection(CoreIPC::MachPort connectionIdentifier)
|
PluginProcessProxy.h | 45 class MachPort; 95 void didCreateWebProcessConnection(const CoreIPC::MachPort&);
|
/external/webkit/Source/WebKit2/Shared/ |
WebProcessCreationParameters.h | 36 #include "MachPort.h" 92 CoreIPC::MachPort acceleratedCompositingPort;
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/ |
PluginProcessConnectionManager.cpp | 40 #include "MachPort.h" 68 CoreIPC::MachPort connectionMachPort;
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebProcessProxy.messages.in | 31 GetPluginProcessConnection(WTF::String pluginPath) -> (CoreIPC::MachPort connectionHandle) Delayed
|
/external/webkit/Source/WebKit2/PluginProcess/ |
PluginProcess.cpp | 38 #include "MachPort.h" 153 CoreIPC::MachPort clientPort(listeningPort, MACH_MSG_TYPE_MAKE_SEND);
|
/external/webkit/Source/WebKit2/Scripts/webkit2/ |
messages_unittest.py | 74 DidCreateWebProcessConnection(CoreIPC::MachPort connectionIdentifier) 192 ('CoreIPC::MachPort', 'connectionIdentifier'), 279 class MachPort; 448 struct DidCreateWebProcessConnection : CoreIPC::Arguments1<const CoreIPC::MachPort&> { 450 typedef CoreIPC::Arguments1<const CoreIPC::MachPort&> DecodeType; 451 explicit DidCreateWebProcessConnection(const CoreIPC::MachPort& connectionIdentifier) 452 : CoreIPC::Arguments1<const CoreIPC::MachPort&>(connectionIdentifier) 524 #include "MachPort.h"
|
/external/webkit/Source/WebKit2/UIProcess/Plugins/mac/ |
PluginProcessProxyMac.mm | 68 parameters.acceleratedCompositingPort = CoreIPC::MachPort(renderServerPort, MACH_MSG_TYPE_COPY_SEND);
|
/external/webkit/Source/WebKit2/UIProcess/mac/ |
WebContextMac.mm | 96 parameters.acceleratedCompositingPort = CoreIPC::MachPort(renderServerPort, MACH_MSG_TYPE_COPY_SEND);
|
/external/webkit/Source/WebKit2/WebProcess/ |
WebProcess.h | 46 #include "MachPort.h"
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
WebPage.cpp | 120 #include "MachPort.h" [all...] |
/external/webkit/Source/WebKit2/WebKit2.xcodeproj/ |
project.pbxproj | [all...] |
/external/webkit/Source/WebKit2/ |
ChangeLog | [all...] |