OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:machPort
(Results
1 - 5
of
5
) 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
...]
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/
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/Platform/CoreIPC/mac/
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;
Completed in 8533 milliseconds