Lines Matching refs:V8InspectorSessionImpl
45 std::unique_ptr<V8InspectorSessionImpl> V8InspectorSessionImpl::create( in create()
48 return std::unique_ptr<V8InspectorSessionImpl>(new V8InspectorSessionImpl( in create()
52 V8InspectorSessionImpl::V8InspectorSessionImpl(V8InspectorImpl* inspector, in V8InspectorSessionImpl() function in v8_inspector::V8InspectorSessionImpl
113 V8InspectorSessionImpl::~V8InspectorSessionImpl() { in ~V8InspectorSessionImpl()
123 protocol::DictionaryValue* V8InspectorSessionImpl::agentState( in agentState()
163 void V8InspectorSessionImpl::sendProtocolResponse( in sendProtocolResponse()
168 void V8InspectorSessionImpl::sendProtocolNotification( in sendProtocolNotification()
173 void V8InspectorSessionImpl::fallThrough(int callId, const String16& method, in fallThrough()
179 void V8InspectorSessionImpl::flushProtocolNotifications() { in flushProtocolNotifications()
183 void V8InspectorSessionImpl::reset() { in reset()
189 void V8InspectorSessionImpl::discardInjectedScripts() { in discardInjectedScripts()
198 Response V8InspectorSessionImpl::findInjectedScript( in findInjectedScript()
218 Response V8InspectorSessionImpl::findInjectedScript( in findInjectedScript()
223 void V8InspectorSessionImpl::releaseObjectGroup(const StringView& objectGroup) { in releaseObjectGroup()
227 void V8InspectorSessionImpl::releaseObjectGroup(const String16& objectGroup) { in releaseObjectGroup()
236 bool V8InspectorSessionImpl::unwrapObject( in unwrapObject()
254 Response V8InspectorSessionImpl::unwrapObject(const String16& objectId, in unwrapObject()
272 V8InspectorSessionImpl::wrapObject(v8::Local<v8::Context> context, in wrapObject()
280 V8InspectorSessionImpl::wrapObject(v8::Local<v8::Context> context, in wrapObject()
293 V8InspectorSessionImpl::wrapTable(v8::Local<v8::Context> context, in wrapTable()
302 void V8InspectorSessionImpl::setCustomObjectFormatterEnabled(bool enabled) { in setCustomObjectFormatterEnabled()
313 void V8InspectorSessionImpl::reportAllContexts(V8RuntimeAgentImpl* agent) { in reportAllContexts()
320 void V8InspectorSessionImpl::dispatchProtocolMessage( in dispatchProtocolMessage()
333 std::unique_ptr<StringBuffer> V8InspectorSessionImpl::stateJSON() { in stateJSON()
339 V8InspectorSessionImpl::supportedDomains() { in supportedDomains()
349 V8InspectorSessionImpl::supportedDomainsImpl() { in supportedDomainsImpl()
374 void V8InspectorSessionImpl::addInspectedObject( in addInspectedObject()
381 V8InspectorSession::Inspectable* V8InspectorSessionImpl::inspectedObject( in inspectedObject()
387 void V8InspectorSessionImpl::schedulePauseOnNextStatement( in schedulePauseOnNextStatement()
395 void V8InspectorSessionImpl::cancelPauseOnNextStatement() { in cancelPauseOnNextStatement()
399 void V8InspectorSessionImpl::breakProgram(const StringView& breakReason, in breakProgram()
407 void V8InspectorSessionImpl::setSkipAllPauses(bool skip) { in setSkipAllPauses()
411 void V8InspectorSessionImpl::resume() { m_debuggerAgent->resume(); } in resume()
413 void V8InspectorSessionImpl::stepOver() { m_debuggerAgent->stepOver(); } in stepOver()
416 V8InspectorSessionImpl::searchInTextByLines(const StringView& text, in searchInTextByLines()