HomeSort by relevance Sort by last modified time
    Searched refs:MachPort (Results 1 - 13 of 13) sorted by null

  /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/Shared/Plugins/
PluginProcessCreationParameters.h 34 #include "MachPort.h"
54 CoreIPC::MachPort acceleratedCompositingPort;
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessProxy.h 45 class MachPort;
95 void didCreateWebProcessConnection(const CoreIPC::MachPort&);
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));
  /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/Platform/mac/
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/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/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/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"

Completed in 836 milliseconds