Home
last modified time | relevance | path

Searched refs:Agent (Results 1 - 25 of 83) sorted by relevance

1234

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp41 : Agent(0), in OProfileWrapper()
186 Agent = OpenAgentFunc(); in op_open_agent()
187 return Agent != 0; in op_open_agent()
198 if (Agent && CloseAgentFunc) { in op_close_agent()
199 ret = CloseAgentFunc(Agent); in op_close_agent()
201 Agent = 0; in op_close_agent()
208 return Agent != 0; in isAgentAvailable()
218 if (Agent && WriteNativeCodeFunc) in op_write_native_code()
219 return WriteNativeCodeFunc(Agent, Name, Addr, Code, Size); in op_write_native_code()
231 if (Agent in op_write_debug_line_info()
[all...]
/third_party/node/src/tracing/
H A Dagent.cc12 class Agent::ScopedSuspendTracing {
14 ScopedSuspendTracing(TracingController* controller, Agent* agent, in ScopedSuspendTracing()
33 Agent* agent_;
52 Agent::Agent() : tracing_controller_(new TracingController()) { in Agent() function in node::tracing::Agent
59 Agent* agent = ContainerOf(&Agent::initialize_writer_async_, async); in Agent()
65 void Agent::InitializeWritersOnThread() { in InitializeWritersOnThread()
75 Agent::~Agent() { in ~Agent()
[all...]
H A Dagent.h25 class Agent;
68 inline Agent* agent() { return agent_; } in agent()
76 inline AgentWriterHandle(Agent* agent, int id) : agent_(agent), id_(id) {} in AgentWriterHandle()
78 Agent* agent_ = nullptr;
81 friend class Agent;
84 class Agent { class
86 Agent();
87 ~Agent();
185 return agent_ != nullptr && id_ == Agent::kDefaultHandleId; in IsDefaultHandle()
H A Dtrace_event.cc7 Agent* g_agent = nullptr;
10 void TraceEventHelper::SetAgent(Agent* agent) { in SetAgent()
20 Agent* TraceEventHelper::GetAgent() { in GetAgent()
H A Dnode_trace_buffer.h22 InternalTraceBuffer(size_t max_chunks, uint32_t id, Agent* agent);
44 Agent* agent_;
53 NodeTraceBuffer(size_t max_chunks, Agent* agent, uv_loop_t* tracing_loop);
/third_party/node/src/
H A Dinspector_agent.cc62 // Protects the Agent* stored in start_io_thread_async.data.
73 static_cast<Agent*>(handle->data)->StartIoThread(); in StartIoThreadAsyncCallback()
88 Agent* agent = static_cast<Agent*>(start_io_thread_async.data); in StartIoThreadMain()
148 Agent* agent = static_cast<Agent*>(start_io_thread_async.data); in StartIoThreadProc()
682 Agent::Agent(Environment* env) in Agent() function in node::inspector::Agent
687 Agent::~Agent() {} in ~Agent()
[all...]
H A Dinspector_js_api.cc42 Agent* inspector, std::unique_ptr<InspectorSessionDelegate> delegate) { in Connect()
53 Agent* inspector, std::unique_ptr<InspectorSessionDelegate> delegate) { in Connect()
95 Agent* inspector = env->inspector_agent(); in JSBindingsConnection()
169 Agent* agent = env->inspector_agent(); in InspectorEnabled()
238 template <void (Agent::*asyncTaskFn)(void*)>
282 Agent* agent = env->inspector_agent(); in Open()
302 Agent* agent = env->inspector_agent(); in WaitForDebugger()
347 InvokeAsyncTaskFnWithId<&Agent::AsyncTaskCanceled>); in Initialize()
351 InvokeAsyncTaskFnWithId<&Agent::AsyncTaskStarted>); in Initialize()
355 InvokeAsyncTaskFnWithId<&Agent in Initialize()
[all...]
H A Djs_native_api_v8_inspector.cc107 explicit MainThreadInterface(Agent* agent);
114 Agent* inspector_agent() { in inspector_agent()
131 Agent* const agent_;
262 Agent* agent = thread_->inspector_agent(); in Connect()
317 MainThreadInterface::MainThreadInterface(Agent* agent) : agent_(agent) {} in MainThreadInterface()
1288 Agent::Agent(Environment* env) in Agent() function in v8impl::Agent
1291 Agent::~Agent() = default;
1293 bool Agent
[all...]
H A Dinspector_agent.h43 class Agent { class
45 explicit Agent(node::Environment* env);
46 ~Agent();
H A Djs_native_api_v8_inspector.h67 class Agent { class
69 explicit Agent(Environment* env);
70 ~Agent();
H A Dnode_v8_platform-inl.h91 tracing_agent_ = std::make_unique<tracing::Agent>(); in Initialize()
150 tracing::Agent::kUseDefaultCategories); in StartTracingAgent()
163 std::unique_ptr<tracing::Agent> tracing_agent_;
/third_party/node/lib/
H A Dhttps.js45 const { Agent: HttpAgent } = require('_http_agent');
191 function Agent(options) { class
192 if (!(this instanceof Agent))
193 return new Agent(options);
207 ObjectSetPrototypeOf(Agent.prototype, HttpAgent.prototype);
208 ObjectSetPrototypeOf(Agent, HttpAgent);
209 Agent.prototype.createConnection = createConnection;
221 Agent.prototype.getName = function getName(options = kEmptyObject) {
307 Agent.prototype._getSession = function _getSession(key) {
311 Agent
[all...]
H A D_http_agent.js64 // New Agent code.
67 // an Agent instance holds connections for a variable number of host:ports.
73 // ClientRequest.onSocket(). The Agent is now *strictly*
90 function Agent(options) { class
91 if (!(this instanceof Agent))
92 return new Agent(options);
111 this.maxSockets = this.options.maxSockets || Agent.defaultMaxSockets;
193 ObjectSetPrototypeOf(Agent.prototype, EventEmitter.prototype);
194 ObjectSetPrototypeOf(Agent, EventEmitter);
212 Agent
[all...]
H A Dhttp.js68 * @property {httpAgent.Agent | boolean} [agent] Controls Agent behavior.
120 Agent: httpAgent.Agent,
/third_party/node/deps/npm/node_modules/@npmcli/agent/lib/
H A Dindex.js7 const Agent = require('./agents.js')
34 const newAgent = new Agent(normalizedOptions)
42 Agent,
44 HttpAgent: Agent,
45 HttpsAgent: Agent,
/third_party/node/test/parallel/
H A Dtest-http-agent-maxtotalsockets.js8 assert.throws(() => new http.Agent({
18 assert.throws(() => new http.Agent({
26 assert.ok(new http.Agent({
33 const agent = new http.Agent({
H A Dtest-http-agent-scheduling.js52 const agent = new http.Agent({
79 const agent = new http.Agent({
107 const agent = new http.Agent({
131 new http.Agent({
H A Dtest-https-strict.js62 const agent0 = new https.Agent();
63 const agent1 = new https.Agent({ ca: [ca1] });
64 const agent2 = new https.Agent({ ca: [ca2] });
65 const agent3 = new https.Agent({ ca: [ca1, ca2] });
H A Dtest-https-agent-abort-controller.js9 const Agent = https.Agent;
13 const agent = new Agent();
H A Dtest-https-client-reject.js64 options.agent = new https.Agent(options);
77 options.agent = new https.Agent(options);
H A Dtest-http-agent-keepalive.js26 const Agent = require('_http_agent').Agent;
30 const agent = new Agent({
/third_party/node/deps/undici/src/lib/
H A Dglobal.js7 const Agent = require('./agent')
10 setGlobalDispatcher(new Agent())
15 throw new InvalidArgumentError('Argument agent must implement Agent')
H A Dproxy-agent.js5 const Agent = require('./agent')
45 this[kAgent] = new Agent(opts)
85 this[kAgent] = new Agent({
/third_party/node/src/inspector/
H A Dmain_thread_interface.h75 explicit MainThreadInterface(Agent* agent);
82 Agent* inspector_agent() { in inspector_agent()
99 Agent* const agent_;
/third_party/node/test/fuzzers/
H A Dfuzz_env.cc23 using TracingAgentUniquePtr = std::unique_ptr<node::tracing::Agent>;
38 tracing_agent = std::make_unique<node::tracing::Agent>(); in LLVMFuzzerInitialize()

Completed in 10 milliseconds

1234