Home
last modified time | relevance | path

Searched refs:agent (Results 76 - 100 of 123) sorted by relevance

12345

/third_party/node/test/parallel/
H A Dtest-http-client-readable.js61 agent: new FakeAgent()
H A Dtest-http-request-agent.js9 // This test ensures that a http request callback is called when the agent
28 agent: false,
H A Dtest-http-url.parse-https.request.js57 // Since there is a little magic with the agent
59 assert.ok(clientRequest.agent instanceof https.Agent);
H A Dtest-http-url.parse-basic.js54 // Since there is a little magic with the agent
56 assert.ok(clientRequest.agent instanceof http.Agent);
H A Dtest-https-client-checkServerIdentity.js65 options.agent = new https.Agent(options);
H A Dtest-async-hooks-http-parser-destroy.js64 agent: keepAliveAgent
H A Dtest-async-wrap-tlssocket-asyncreset.js30 agent: new https.Agent({
H A Dtest-tls-set-secure-context.js81 agent: new https.Agent()
/third_party/node/test/internet/
H A Dtest-inspector-help-page.js17 https.get(url, { agent: new https.Agent() }, common.mustCall((res) => {
/third_party/node/src/
H A Dinspector_io.h27 // Start the inspector agent thread, waiting for it to initialize
48 // Wrapper for agent->ThreadMain()
49 static void ThreadMain(void* agent);
H A Djs_native_api_v8_inspector.cc107 explicit MainThreadInterface(Agent* agent);
262 Agent* agent = thread_->inspector_agent(); in Connect() local
263 if (agent != nullptr) in Connect()
264 session_ = agent->Connect(std::move(delegate), prevent_shutdown_); in Connect()
317 MainThreadInterface::MainThreadInterface(Agent* agent) : agent_(agent) {} in MainThreadInterface() argument
712 // Start the inspector agent thread, waiting for it to initialize
733 // Wrapper for agent->ThreadMain()
734 static void ThreadMain(void* agent);
/third_party/node/benchmark/http/
H A Dclient-request-body.js33 agent: new http.Agent({ maxSockets: 1 }),
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/htmldiff/
H A Dhtmldiff.pl503 $ua->agent("MACS, Inc. HTMLdiff/0.9 " . $ua->agent);
/third_party/toybox/toys/pending/
H A Dwget.c279 char agent[] = "toybox wget/" TOYBOX_VERSION; in wget_main() local
290 path, host, agent); in wget_main()
/foundation/CastEngine/castengine_wifi_display/services/impl/wfd/wfd_source/
H A Dwfd_source_session.cpp496 std::shared_ptr<WfdSourceNetworkSession> agent = std::static_pointer_cast<WfdSourceNetworkSession>(sa); in HandlePlayRequest() local
497 if (agent != nullptr) { in HandlePlayRequest()
498 agent->SetKeepAliveTimer(); in HandlePlayRequest()
531 std::shared_ptr<WfdSourceNetworkSession> agent = std::static_pointer_cast<WfdSourceNetworkSession>(sa); in HandleTeardownRequest() local
532 if (agent != nullptr) { in HandleTeardownRequest()
533 agent->UnsetKeepAliveTimer(); in HandleTeardownRequest()
/foundation/window/window_manager/window_scene/screen_session_manager/src/zidl/
H A Dscreen_session_manager_stub.cpp49 auto agent = iface_cast<IDisplayManagerAgent>(data.ReadRemoteObject()); in OnRemoteRequest() local
50 if (agent == nullptr) { in OnRemoteRequest()
54 DMError ret = RegisterDisplayManagerAgent(agent, type); in OnRemoteRequest()
59 auto agent = iface_cast<IDisplayManagerAgent>(data.ReadRemoteObject()); in OnRemoteRequest() local
60 if (agent == nullptr) { in OnRemoteRequest()
64 DMError ret = UnregisterDisplayManagerAgent(agent, type); in OnRemoteRequest()
/third_party/node/src/inspector/
H A Dmain_thread_interface.h75 explicit MainThreadInterface(Agent* agent);
/third_party/node/deps/v8/src/inspector/
H A Dv8-debugger-script.h56 bool isLiveEdit, V8DebuggerAgentImpl* agent, V8InspectorClient* client);
H A Dv8-inspector-session-impl.cc18 #include "src/inspector/v8-console-agent-impl.h"
19 #include "src/inspector/v8-debugger-agent-impl.h"
21 #include "src/inspector/v8-heap-profiler-agent-impl.h"
23 #include "src/inspector/v8-profiler-agent-impl.h"
24 #include "src/inspector/v8-runtime-agent-impl.h"
25 #include "src/inspector/v8-schema-agent-impl.h"
356 void V8InspectorSessionImpl::reportAllContexts(V8RuntimeAgentImpl* agent) { in reportAllContexts() argument
358 [&agent](InspectedContext* context) { in reportAllContexts()
359 agent->reportExecutionContextCreated(context); in reportAllContexts()
/third_party/python/Tools/buildbot/
H A DremotePythonInfo.bat32 echo The test worker should have the SSH agent running.
H A Dtest.bat48 echo The test worker should have the SSH agent running.
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/device/
H A Ddevice_manager_agent.cpp103 shared_ptr<SoftbusAgent> agent = nullptr; in JoinGroup() local
106 agent = make_shared<SoftbusAgent>(mp); in JoinGroup()
107 auto [ignored, inserted] = mpToNetworks_.insert({ smp->GetID(), agent }); in JoinGroup()
114 agent->StartActor(); in JoinGroup()
216 // based on dev's trust info, choose corresponding network agent to obtain socket in OnDeviceReady()
/third_party/node/src/tracing/
H A Dtrace_event.h9 #include "tracing/agent.h"
319 static void SetAgent(Agent* agent);
517 node::tracing::Agent* agent = in AddMetadataEventImpl() local
519 if (agent == nullptr) return; in AddMetadataEventImpl()
520 return agent->GetTracingController()->AddMetadataEvent( in AddMetadataEventImpl()
/foundation/window/window_manager/dmserver/src/
H A Dabstract_screen_controller.cpp635 new AgentDeathRecipient([this](const sptr<IRemoteObject>& agent) { OnRemoteDied(agent); }); in CreateVirtualScreen()
1269 bool AbstractScreenController::OnRemoteDied(const sptr<IRemoteObject>& agent) in OnRemoteDied() argument
1271 if (agent == nullptr) { in OnRemoteDied()
1275 auto agentIter = screenAgentMap_.find(agent); in OnRemoteDied()
1277 while (screenAgentMap_[agent].size() > 0) { in OnRemoteDied()
1278 auto diedId = screenAgentMap_[agent][0]; in OnRemoteDied()
1285 screenAgentMap_.erase(agent); in OnRemoteDied()
/foundation/window/window_manager/wm/src/
H A Dwindow_adapter.cpp150 auto agent = std::find(agentSet.begin(), agentSet.end(), windowManagerAgent); in UnregisterWindowManagerAgent() local
151 if (agent == agentSet.end()) { in UnregisterWindowManagerAgent()
152 WLOGFW("Cannot find agent, type = %{public}d", type); in UnregisterWindowManagerAgent()
155 agentSet.erase(agent); in UnregisterWindowManagerAgent()
383 TLOGI(WmsLogTag::WMS_RECOVER, "Window manager agent type = %{public}" PRIu32 ", size = %{public}" PRIu64, in ReregisterWindowManagerAgent()
385 for (auto& agent : it.second) { in ReregisterWindowManagerAgent()
386 if (windowManagerServiceProxy_->RegisterWindowManagerAgent(it.first, agent) != WMError::WM_OK) { in ReregisterWindowManagerAgent()

Completed in 23 milliseconds

12345