HomeSort by relevance Sort by last modified time
    Searched defs:machPort (Results 1 - 2 of 2) sorted by null

  /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...]
  /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();

Completed in 6957 milliseconds