Home
last modified time | relevance | path

Searched refs:machPort (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebKit2/Platform/mac/
DWorkQueueMac.cpp82 mach_port_t machPort = dispatch_source_get_handle(eventSource->m_dispatchSource); in cancelHandler() local
87 mach_port_mod_refs(mach_task_self(), machPort, MACH_PORT_RIGHT_RECEIVE, -1); in cancelHandler()
91 mach_port_deallocate(mach_task_self(), machPort); in cancelHandler()
112 void WorkQueue::registerMachPortEventHandler(mach_port_t machPort, MachPortEventType eventType, Pas… in registerMachPortEventHandler() argument
124 …dispatch_source_t dispatchSource = dispatch_source_create(sourceType, machPort, 0, m_dispatchQueue… in registerMachPortEventHandler()
137 ASSERT(!m_eventSources.contains(machPort)); in registerMachPortEventHandler()
139 m_eventSources.set(machPort, eventSource); in registerMachPortEventHandler()
146 void WorkQueue::unregisterMachPortEventHandler(mach_port_t machPort) in unregisterMachPortEventHandler() argument
148 ASSERT(machPort); in unregisterMachPortEventHandler()
152 HashMap<mach_port_t, EventSource*>::iterator it = m_eventSources.find(machPort); in unregisterMachPortEventHandler()
[all …]
DSharedMemoryMac.cpp73 CoreIPC::MachPort machPort; in decode() local
74 if (!decoder->decode(CoreIPC::Out(machPort))) in decode()
78 handle.m_port = machPort.port(); in decode()
/external/webkit/Source/WebKit2/Shared/mac/
DShareableSurface.cpp71 CoreIPC::MachPort machPort; in decode() local
72 if (!decoder->decode(machPort)) in decode()
75 handle.m_port = machPort.port(); in decode()
/external/webkit/Source/WebKit2/UIProcess/Plugins/
DPluginProcessProxy.cpp218 void PluginProcessProxy::didCreateWebProcessConnection(const CoreIPC::MachPort& machPort) in didCreateWebProcessConnection() argument
225 reply->send(CoreIPC::MachPort(machPort.port(), MACH_MSG_TYPE_MOVE_SEND)); in didCreateWebProcessConnection()
/external/webkit/Source/WebKit2/Platform/CoreIPC/mac/
DConnectionMac.cpp305 static mach_msg_header_t* readFromMachPort(mach_port_t machPort, ReceiveBuffer& buffer) in readFromMachPort() argument
310 …er, MACH_RCV_MSG | MACH_RCV_LARGE | MACH_RCV_TIMEOUT, 0, buffer.size(), machPort, 0, MACH_PORT_NUL… in readFromMachPort()
319 …er, MACH_RCV_MSG | MACH_RCV_LARGE | MACH_RCV_TIMEOUT, 0, buffer.size(), machPort, 0, MACH_PORT_NUL… in readFromMachPort()