Lines Matching refs:hostId
127 int hostId = debuggerAgent->webdevtoolsAgent()->hostId();
128 ASSERT(hostId);
129 s_attachedAgentsMap->set(hostId, debuggerAgent);
140 int hostId = debuggerAgent->webdevtoolsAgent()->hostId();
141 ASSERT(s_attachedAgentsMap->get(hostId) == debuggerAgent);
143 s_attachedAgentsMap->remove(hostId);
160 "\"arguments\":{\"groupId\":", String::number(hostId), "}}");
209 // scripts it must have hostId in the data field.
210 int hostId = WebCore::V8Proxy::contextDebugId(context);
211 if (hostId != -1) {
212 DebuggerAgentImpl* agent = debuggerAgentForHostId(hostId);
253 void DebuggerAgentManager::setHostId(WebFrameImpl* webframe, int hostId)
255 ASSERT(hostId > 0);
258 proxy->setContextDebugId(hostId);
303 DebuggerAgentImpl* DebuggerAgentManager::debuggerAgentForHostId(int hostId)
307 return s_attachedAgentsMap->get(hostId);