Home
last modified time | relevance | path

Searched refs:sessionId (Results 1 - 25 of 36) sorted by relevance

12

/third_party/node/deps/v8/src/inspector/
H A Dv8-console.h30 int sessionId);
148 void keysCallback(const v8::FunctionCallbackInfo<v8::Value>&, int sessionId);
150 int sessionId);
152 int sessionId);
154 int sessionId);
156 int sessionId);
158 int sessionId);
160 int sessionId);
162 int sessionId);
163 void copyCallback(const v8::FunctionCallbackInfo<v8::Value>&, int sessionId);
166 inspectedObject0(const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) inspectedObject0() argument
170 inspectedObject1(const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) inspectedObject1() argument
174 inspectedObject2(const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) inspectedObject2() argument
178 inspectedObject3(const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) inspectedObject3() argument
182 inspectedObject4(const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) inspectedObject4() argument
[all...]
H A Dinspected-context.cc109 bool InspectedContext::isReported(int sessionId) const { in isReported()
110 return m_reportedSessionIds.find(sessionId) != m_reportedSessionIds.cend(); in isReported()
113 void InspectedContext::setReported(int sessionId, bool reported) { in setReported() argument
115 m_reportedSessionIds.insert(sessionId); in setReported()
117 m_reportedSessionIds.erase(sessionId); in setReported()
120 InjectedScript* InspectedContext::getInjectedScript(int sessionId) { in getInjectedScript() argument
121 auto it = m_injectedScripts.find(sessionId); in getInjectedScript()
125 InjectedScript* InspectedContext::createInjectedScript(int sessionId) { in createInjectedScript() argument
127 std::make_unique<InjectedScript>(this, sessionId); in createInjectedScript()
128 CHECK(m_injectedScripts.find(sessionId) in createInjectedScript()
133 discardInjectedScript(int sessionId) discardInjectedScript() argument
[all...]
H A Dinspected-context.h49 bool isReported(int sessionId) const;
50 void setReported(int sessionId, bool reported);
55 InjectedScript* getInjectedScript(int sessionId);
56 InjectedScript* createInjectedScript(int sessionId);
57 void discardInjectedScript(int sessionId);
H A Dv8-inspector-session-impl.cc89 V8InspectorImpl* inspector, int contextGroupId, int sessionId, in create()
92 inspector, contextGroupId, sessionId, channel, state)); in create()
97 int sessionId, in V8InspectorSessionImpl()
101 m_sessionId(sessionId), in V8InspectorSessionImpl()
234 int sessionId = m_sessionId; in discardInjectedScripts() local
236 [&sessionId](InspectedContext* context) { in discardInjectedScripts()
237 context->discardInjectedScript(sessionId); in discardInjectedScripts()
269 int sessionId = m_sessionId; in releaseObjectGroup() local
271 m_contextGroupId, [&objectGroup, &sessionId](InspectedContext* context) { in releaseObjectGroup()
272 InjectedScript* injectedScript = context->getInjectedScript(sessionId); in releaseObjectGroup()
88 create( V8InspectorImpl* inspector, int contextGroupId, int sessionId, V8Inspector::Channel* channel, StringView state) create() argument
95 V8InspectorSessionImpl(V8InspectorImpl* inspector, int contextGroupId, int sessionId, V8Inspector::Channel* channel, StringView savedState) V8InspectorSessionImpl() argument
347 int sessionId = m_sessionId; setCustomObjectFormatterEnabled() local
[all...]
H A Dv8-console.cc56 InjectedScript* injectedScript(int sessionId) { in injectedScript() argument
59 return context->getInjectedScript(sessionId); in injectedScript()
62 V8InspectorSessionImpl* session(int sessionId) { in session() argument
63 return m_inspector->sessionById(m_groupId, sessionId); in session()
590 int sessionId) { in keysCallback()
605 int sessionId) { in valuesCallback()
627 static void setFunctionBreakpoint(ConsoleHelper& helper, int sessionId, in setFunctionBreakpoint() argument
632 V8InspectorSessionImpl* session = helper.session(sessionId); in setFunctionBreakpoint()
643 const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) { in debugFunctionCallback()
652 setFunctionBreakpoint(helper, sessionId, functio in debugFunctionCallback()
589 keysCallback(const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) keysCallback() argument
604 valuesCallback(const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) valuesCallback() argument
642 debugFunctionCallback( const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) debugFunctionCallback() argument
657 undebugFunctionCallback( const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) undebugFunctionCallback() argument
668 monitorFunctionCallback( const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) monitorFunctionCallback() argument
695 unmonitorFunctionCallback( const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) unmonitorFunctionCallback() argument
706 lastEvaluationResultCallback( const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) lastEvaluationResultCallback() argument
715 inspectImpl(const v8::FunctionCallbackInfo<v8::Value>& info, v8::Local<v8::Value> value, int sessionId, InspectRequest request, V8InspectorImpl* inspector) inspectImpl() argument
742 inspectCallback(const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) inspectCallback() argument
748 copyCallback(const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) copyCallback() argument
754 queryObjectsCallback( const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId) queryObjectsCallback() argument
777 inspectedObject(const v8::FunctionCallbackInfo<v8::Value>& info, int sessionId, unsigned num) inspectedObject() argument
851 createCommandLineAPI( v8::Local<v8::Context> context, int sessionId) createCommandLineAPI() argument
[all...]
H A Dcustom-preview.cc56 int sessionId) { in getInjectedScript()
63 return inspectedContext->getInjectedScript(sessionId); in getInjectedScript()
66 bool substituteObjectTags(int sessionId, const String16& groupName, in substituteObjectTags() argument
115 InjectedScript* injectedScript = getInjectedScript(context, sessionId); in substituteObjectTags()
150 !substituteObjectTags(sessionId, groupName, context, in substituteObjectTags()
209 if (!bodyConfig->Get(context, toV8String(isolate, "sessionId")) in bodyCallback()
215 reportError(context, tryCatch, "sessionId should be an Int32"); in bodyCallback()
253 void generateCustomPreview(int sessionId, const String16& groupName, in generateCustomPreview() argument
331 if (jsonML->Length() && !substituteObjectTags(sessionId, groupName, context, in generateCustomPreview()
346 ->CreateDataProperty(context, toV8String(isolate, "sessionId"), in generateCustomPreview()
55 getInjectedScript(v8::Local<v8::Context> context, int sessionId) getInjectedScript() argument
[all...]
H A Dv8-inspector-impl.cc150 int sessionId = ++m_lastSessionId; in connect() local
152 V8InspectorSessionImpl::create(this, contextGroupId, sessionId, channel, in connect()
154 m_sessions[contextGroupId][sessionId] = session.get(); in connect()
160 map.erase(session->sessionId()); in disconnect()
367 int sessionId) { in sessionById()
370 auto it2 = it->second.find(sessionId); in sessionById()
407 for (auto& sessionId : ids) { in forEachSession()
410 auto sessionIt = it->second.find(sessionId); in forEachSession()
366 sessionById(int contextGroupId, int sessionId) sessionById() argument
H A Dinjected-script.cc149 m_sessionId(session->sessionId()), in ProtocolPromiseHandler()
341 InjectedScript::InjectedScript(InspectedContext* context, int sessionId) in InjectedScript() argument
342 : m_context(context), m_sessionId(sessionId) {} in InjectedScript()
369 int sessionId = m_sessionId; in getProperties() local
402 bindRemoteObjectIfNeeded(sessionId, context, mirror.getter->v8Value(), in getProperties()
412 bindRemoteObjectIfNeeded(sessionId, context, mirror.setter->v8Value(), in getProperties()
422 bindRemoteObjectIfNeeded(sessionId, context, mirror.symbol->v8Value(), in getProperties()
431 response = bindRemoteObjectIfNeeded(sessionId, context, in getProperties()
458 int sessionId = m_sessionId; in getInternalAndPrivateProperties() local
469 response = bindRemoteObjectIfNeeded(sessionId, contex in getInternalAndPrivateProperties()
561 int sessionId = m_sessionId; wrapObjectMirror() local
1035 bindRemoteObjectIfNeeded( int sessionId, v8::Local<v8::Context> context, v8::Local<v8::Value> value, const String16& groupName, protocol::Runtime::RemoteObject* remoteObject) bindRemoteObjectIfNeeded() argument
[all...]
H A Dv8-inspector-session-impl.h37 int sessionId,
51 int sessionId() const { return m_sessionId; } in sessionId() function in v8_inspector::V8InspectorSessionImpl
104 V8InspectorSessionImpl(V8InspectorImpl*, int contextGroupId, int sessionId,
H A Dcustom-preview.h18 int sessionId, const String16& groupName, v8::Local<v8::Object> object,
H A Dv8-runtime-agent-impl.cc941 int sessionId = m_session->sessionId(); in reset() local
943 [&sessionId](InspectedContext* context) { in reset()
944 context->setReported(sessionId, false); in reset()
953 context->setReported(m_session->sessionId(), true); in reportExecutionContextCreated()
974 if (m_enabled && context->isReported(m_session->sessionId())) { in reportExecutionContextDestroyed()
975 context->setReported(m_session->sessionId(), false); in reportExecutionContextDestroyed()
H A Dinjected-script.h71 InjectedScript(InspectedContext*, int sessionId);
228 int sessionId, v8::Local<v8::Context> context, v8::Local<v8::Value>,
/third_party/node/test/parallel/
H A Dtest-worker-debug.js55 let sessionId;
59 sessionId = params.sessionId;
60 } while (sessionId !== id);
81 if (params.sessionId === this._id)
122 sessionId: this._id, message: JSON.stringify(msg)
139 const { sessionId, waitingForDebugger } = await attached;
141 const detached = waitForWorkerDetach(session, sessionId);
142 const workerSession = new WorkerSession(session, sessionId);
200 const workerSession = new WorkerSession(session, worker2AttachInfo.sessionId);
[all...]
H A Dtest-inspector-async-hook-after-done.js16 function onAttachToWorker({ params: { sessionId } }) {
20 sessionId,
36 session.post('NodeWorker.detach', { sessionId }, () => {
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
H A DTestOutputActivityBase.java66 public void setupEqualizer(int sessionId) { in setupEqualizer() argument
67 Equalizer equalizer = new Equalizer(0, sessionId); in setupEqualizer()
81 public void setupReverb(int sessionId) { in setupReverb() argument
82 PresetReverb effect = new PresetReverb(0, sessionId); in setupReverb()
86 public void setupEffects(int sessionId) { in setupEffects() argument
87 // setupEqualizer(sessionId); in setupEffects()
88 // setupReverb(sessionId); in setupEffects()
H A DTestInputActivity.java189 public void setupAGC(int sessionId) { in setupAGC() argument
190 AutomaticGainControl effect = AutomaticGainControl.create(sessionId); in setupAGC()
193 public void setupAEC(int sessionId) { in setupAEC() argument
194 AcousticEchoCanceler effect = AcousticEchoCanceler.create(sessionId); in setupAEC()
198 public void setupEffects(int sessionId) { in setupEffects() argument
199 setupAEC(sessionId); in setupEffects()
H A DTestAudioActivity.java322 abstract public void setupEffects(int sessionId); in setupEffects() argument
439 int sessionId = actualConfig.getSessionId(); in openStreamContext()
440 if (sessionId > 0) { in openStreamContext()
441 setupEffects(sessionId); in openStreamContext()
H A DStreamConfiguration.java316 public void setSessionId(int sessionId) { in setSessionId() argument
317 mSessionId = sessionId; in setSessionId()
H A DEchoActivity.java138 public void setupEffects(int sessionId) { in setupEffects() argument
/third_party/node/src/inspector/
H A Dworker_agent.cc94 const String& sessionId) { in sendMessageToWorker()
95 workers_->Receive(sessionId, message); in sendMessageToWorker()
118 DispatchResponse WorkerAgent::detach(const String& sessionId) { in detach() argument
119 workers_->Detached(sessionId); in detach()
93 sendMessageToWorker(const String& message, const String& sessionId) sendMessageToWorker() argument
H A Dworker_agent.h24 const String& sessionId) override;
28 DispatchResponse detach(const String& sessionId) override;
/third_party/skia/third_party/externals/oboe/include/oboe/
H A DAudioStreamBuilder.h278 * @param sessionId an allocated sessionID or SessionId::Allocate
280 AudioStreamBuilder *setSessionId(SessionId sessionId) { in setSessionId() argument
281 mSessionId = sessionId; in setSessionId()
/third_party/skia/third_party/externals/oboe/src/common/
H A DUtilities.cpp249 const char *convertToText<SessionId>(SessionId sessionId) { in convertToText() argument
251 switch (sessionId) { in convertToText()
/third_party/node/lib/
H A D_tls_wrap.js176 'sessionid.len', hello.sessionId.length,
199 if (hello.sessionId.length <= 0 ||
202 !owner.server.emit('resumeSession', hello.sessionId, onSession))) {
338 function onnewsessionclient(sessionId, session) {
348 function onnewsession(sessionId, session) {
377 if (!owner.server.emit('newSession', sessionId, session, done))
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/
H A Djni-bridge.cpp47 jint sessionId,
123 jint sessionId, in Java_com_google_sample_oboe_manualtest_OboeAudioStream_openNative()
140 sessionId, in Java_com_google_sample_oboe_manualtest_OboeAudioStream_openNative()
113 Java_com_google_sample_oboe_manualtest_OboeAudioStream_openNative( JNIEnv *env, jobject synth, jint nativeApi, jint sampleRate, jint channelCount, jint format, jint sharingMode, jint performanceMode, jint inputPreset, jint deviceId, jint sessionId, jint framesPerBurst, jboolean channelConversionAllowed, jboolean formatConversionAllowed, jint rateConversionQuality, jboolean isMMap, jboolean isInput) Java_com_google_sample_oboe_manualtest_OboeAudioStream_openNative() argument

Completed in 17 milliseconds

12