Searched refs:agent (Results 1 - 25 of 123) sorted by relevance

12345

/external/jacoco/org.jacoco.agent/src/org/jacoco/agent/
H A Dpackage-info.java14 * Provides the runtime Java agent (JAR file) as a resource.
16 package org.jacoco.agent
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/
H A Dpackage-info.java14 * API to access the JaCoCo agent from within the JVM under test.
16 package org.jacoco.agent.rt
H A DRT.java12 package org.jacoco.agent.rt;
14 import org.jacoco.agent.rt.internal.Agent;
17 * Entry point to access the JaCoCo agent runtime.
25 * Returns the agent instance of the JaCoCo runtime in this JVM.
27 * @return agent instance
H A DIAgent.java12 package org.jacoco.agent.rt;
17 * Runtime API and MBean agent interface.
/external/okhttp/android/main/java/com/squareup/okhttp/internal/
H A DVersion.java20 String agent = System.getProperty("http.agent");
21 return agent != null ? agent : ("Java" + System.getProperty("java.version"));
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
H A DAgentTest.java12 package org.jacoco.agent.rt.internal;
29 import org.jacoco.agent.rt.internal.output.FileOutput;
30 import org.jacoco.agent.rt.internal.output.IAgentOutput;
31 import org.jacoco.agent.rt.internal.output.NoneOutput;
32 import org.jacoco.agent.rt.internal.output.TcpClientOutput;
33 import org.jacoco.agent.rt.internal.output.TcpServerOutput;
65 Agent agent = new Agent(options, this);
68 assertEquals(FileOutput.class, agent.createAgentOutput().getClass());
72 agent.createAgentOutput().getClass());
76 agent
[all...]
/external/chromium-trace/catapult/systrace/profile_chrome/
H A Dchrome_startup_tracing_agent_unittest.py16 # if there is a way to run this agent on Android KTU84P.
19 agent = chrome_startup_tracing_agent.ChromeStartupTracingAgent(
27 agent.StartAgentTracing(None)
29 agent.StopAgentTracing()
31 result = agent.GetResults()
H A Dddms_tracing_agent_unittest.py16 agent = ddms_tracing_agent.DdmsAgent(self.device, self.package_info)
19 agent.StartAgentTracing(None)
21 agent.StopAgentTracing()
23 result = agent.GetResults()
H A Dchrome_tracing_agent_unittest.py16 # if there is a way to run this agent on Android KTU84P.
34 # if there is a way to run this agent on Android KTU84P.
43 agent = chrome_tracing_agent.ChromeTracingAgent(self.device,
46 agent.StartAgentTracing(chrome_tracing_agent.ChromeConfig(categories, None,
49 agent.StopAgentTracing()
50 result = agent.GetResults()
H A Dperf_tracing_agent_unittest.py30 agent = perf_tracing_agent.PerfProfilerAgent(self.device)
33 agent.StartAgentTracing(perf_tracing_agent.PerfConfig(categories,
36 agent.StopAgentTracing()
38 result = agent.GetResults()
/external/mockito/lib/
H A Dbyte-buddy-agent-1.7.9.jar ... -INF/maven/net.bytebuddy/byte-buddy-agent/ net/bytebuddy/agent/ByteBuddyAgent$AttachmentTypeEvaluator$ForJava9CapableVm.class ...
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/agent/
H A DAgentOptions.java25 package org.slf4j.agent;
29 * All recognized options in the string passed to the java agent. For
42 * before the agent cannot be instrumented.
47 * added by the agent. Default is "info".
51 * Indicate that the agent should print out "new java.util.Date()" at the time
57 * Indicate that the agent should log actions to System.err, like adding
/external/webrtc/webrtc/base/
H A Dproxydetect.h25 bool GetProxySettingsForUrl(const char* agent, const char* url,
/external/chromium-trace/catapult/systrace/systrace/tracing_agents/
H A Dftrace_agent_unittest.py54 agent = ftrace_agent.FtraceAgent(io_interface)
55 self.assertEqual(['sched'], agent._avail_categories())
60 agent = ftrace_agent.FtraceAgent(io_interface)
61 self.assertEqual([], agent._avail_categories())
69 agent = ftrace_agent.FtraceAgent(io_interface)
70 self.assertEqual(['disk'], agent._avail_categories())
82 agent = ftrace_agent.FtraceAgent(io_interface)
83 self.assertEqual(['workq'], agent._avail_categories())
86 agent.StartAgentTracing(options, categories)
95 agent
[all...]
H A Dwalt_agent_unittest.py17 The WALT agent pulls the trace log from the Android phone, and does not
18 communicate with the WALT device directly. This makes the agent more similar
42 agent = walt_agent.WaltAgent()
43 agent._trace_contents = '<trace contents here>\n'
44 agent._clock_sync_marker = '<clock sync marker here>\n'
45 result = agent._get_trace_result()
H A Dbattor_trace_agent_unittest.py111 agent = battor_trace_agent.BattOrTraceAgent()
112 agent.StartAgentTracing(OPTIONS, CATEGORIES)
114 lambda: agent.StartAgentTracing(OPTIONS, CATEGORIES))
120 agent = battor_trace_agent.BattOrTraceAgent()
122 lambda: agent.StartAgentTracing(OPTIONS, CATEGORIES))
128 agent = battor_trace_agent.BattOrTraceAgent()
130 lambda: agent.StartAgentTracing(OPTIONS, CATEGORIES))
136 agent = battor_trace_agent.BattOrTraceAgent()
137 agent.StartAgentTracing(OPTIONS, CATEGORIES)
138 self.assertRaises(RuntimeError, agent
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DWarning.java59 protected String agent; field in class:Warning
79 + agent
84 : Integer.toString(code) + SP + agent;
96 * Gets agent host of WarningHeader
97 * @return agent host of WarningHeader
100 return agent;
134 this.agent = host;
/external/python/cpython2/Lib/test/
H A Dtest_robotparser.py12 def __init__(self, index, parser, url, good, agent):
21 self.agent = agent
25 agent, url = self.url
28 agent = self.agent
30 self.assertTrue(self.parser.can_fetch(agent, url))
32 self.assertFalse(self.parser.can_fetch(agent, url))
40 agent="test_robotparser"):
46 tests.addTest(RobotTestCase(index, parser, url, 1, agent))
[all...]
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
H A DIExceptionLogger.java12 package org.jacoco.agent.rt.internal;
H A DJmxRegistration.java12 package org.jacoco.agent.rt.internal;
21 import org.jacoco.agent.rt.IAgent;
34 JmxRegistration(final IAgent agent) throws Exception { argument
37 server.registerMBean(new StandardMBean(agent, IAgent.class), name);
41 * De-register the agent again.
H A DPreMain.java12 package org.jacoco.agent.rt.internal;
21 * The agent which is referred as the <code>Premain-Class</code>. The agent
22 * configuration is provided with the agent parameters in the command line.
34 * agent options
45 final Agent agent = Agent.getInstance(agentOptions);
48 runtime.startup(agent.getData());
H A DAgent.java12 package org.jacoco.agent.rt.internal;
19 import org.jacoco.agent.rt.IAgent;
20 import org.jacoco.agent.rt.internal.output.FileOutput;
21 import org.jacoco.agent.rt.internal.output.IAgentOutput;
22 import org.jacoco.agent.rt.internal.output.NoneOutput;
23 import org.jacoco.agent.rt.internal.output.TcpClientOutput;
24 import org.jacoco.agent.rt.internal.output.TcpServerOutput;
33 * The agent manages the life cycle of JaCoCo runtime.
67 final Agent agent = new Agent(options, IExceptionLogger.SYSTEM_ERR, data);
68 agent
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_robotparser.py16 agent = 'test_robotparser' variable in class:BaseRobotTest
27 agent, url = url
28 return agent, url
29 return self.agent, url
33 agent, url = self.get_agent_and_url(url)
34 with self.subTest(url=url, agent=agent):
35 self.assertTrue(self.parser.can_fetch(agent, url))
39 agent, url = self.get_agent_and_url(url)
40 with self.subTest(url=url, agent
113 agent = 'figtree' variable in class:CrawlDelayAndRequestRateTest
122 agent = 'FigTree Robot libwww-perl/5.04' variable in class:DifferentAgentTest
165 agent = 'Googlebot' variable in class:AnotherInvalidRequestRateTest
181 agent = 'Googlebot' variable in class:UserAgentOrderingTest
186 agent = 'Googlebot-Mobile' variable in class:UserAgentGoogleMobileTest
197 agent = 'googlebot' variable in class:GoogleURLOrderingTest
[all...]
/external/chromium-trace/catapult/systrace/systrace/
H A Dtracing_controller.py28 """Record the clock sync marker for controller tracing agent.
44 """Start tracing for the controller tracing agent.
46 Start tracing for the controller tracing agent. Note that
63 """Stops tracing for the controller tracing agent.
73 """Gets the log output from the controller tracing agent.
93 sync, it is not an agent controlled by other controllers so it does not
109 controller is also a tracing agent.
130 This function starts tracing for both the controller tracing agent
136 controller tracing agent was started.
141 # Start the controller tracing agents. Controller tracing agent
[all...]
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/output/
H A DIAgentOutput.java12 package org.jacoco.agent.rt.internal.output;
26 * Configure the agent controller with the supplied options and connect it
30 * Options used to configure the agent controller
32 * Execution data for this agent
40 * Shutdown the agent controller and clean up any resources it has created.
49 * agent controller. This method should only be called by the Agent

Completed in 427 milliseconds

12345