Home | History | Annotate | Download | only in dom

Lines Matching defs:port

158         MessagePort* port = ports[i];
159 // The port may be destroyed, and another one created at the same address, but this is safe, as the worst that can happen
161 if (m_messagePorts.contains(port) && port->started())
162 port->dispatchMessages();
166 void ScriptExecutionContext::createdMessagePort(MessagePort* port)
168 ASSERT(port);
174 m_messagePorts.add(port);
177 void ScriptExecutionContext::destroyedMessagePort(MessagePort* port)
179 ASSERT(port);
185 m_messagePorts.remove(port);