HomeSort by relevance Sort by last modified time
    Searched refs:Agent (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/
RT.java 12 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
29 * if no Agent has been started yet
32 return Agent.getInstance();
  /art/runtime/ti/
agent.h 33 // agent is being attached during runtime startup or later.
35 // The agent's Agent_OnUnload function will be called during runtime shutdown.
37 // TODO: consider splitting ti::Agent into command line, agent and shared library handler classes
39 class Agent {
43 kAlreadyStarted, // The agent has already been loaded.
67 VLOG(agents) << "Loading agent: " << name_ << " " << args_;
74 // Tries to attach the agent using its OnAttach method. Returns true on success.
76 VLOG(agents) << "Attaching agent: " << name_ << " " << args_;
80 explicit Agent(std::string arg)
    [all...]
agent.cc 17 #include "agent.h"
35 Agent::LoadError Agent::DoLoadHelper(bool attaching,
42 *error_msg = StringPrintf("the agent at %s has already been started!", name_.c_str());
53 *error_msg = StringPrintf("Unable to start agent %s: No %s callback found",
76 void* Agent::FindSymbol(const std::string& name) const {
77 CHECK(IsStarted()) << "Cannot find symbols in an unloaded agent library " << this;
81 Agent::LoadError Agent::DoDlOpen(/*out*/std::string* error_msg) {
111 void Agent::Unload()
    [all...]
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 34 // Global mutex to ensure a single thread initializes oprofile agent.
42 : Agent(0),
186 Agent = OpenAgentFunc();
187 return Agent != 0;
198 if (Agent && CloseAgentFunc) {
199 ret = CloseAgentFunc(Agent);
201 Agent = 0;
208 return Agent != 0;
218 if (Agent && WriteNativeCodeFunc)
219 return WriteNativeCodeFunc(Agent, Name, Addr, Code, Size)
    [all...]
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
AgentTest.java 12 package org.jacoco.agent.rt.internal;
30 import org.jacoco.agent.rt.internal.output.IAgentOutput;
31 import org.jacoco.agent.rt.internal.output.FileOutput;
32 import org.jacoco.agent.rt.internal.output.NoneOutput;
33 import org.jacoco.agent.rt.internal.output.TcpClientOutput;
34 import org.jacoco.agent.rt.internal.output.TcpServerOutput;
48 * Unit tests for {@link Agent}.
70 Agent agent = new Agent(options, this) local
92 Agent agent = new Agent(options, this); local
107 Agent agent = new Agent(options, this) { local
132 Agent agent = new Agent(options, this); local
145 Agent agent = new Agent(options, this); local
157 Agent agent = new Agent(options, this); local
166 Agent agent = new Agent(options, this); local
172 Agent agent = new Agent(options, this); local
187 Agent agent = new Agent(options, this); local
202 Agent agent = new Agent(options, this); local
232 Agent agent = new Agent(options, this) { local
259 Agent agent = new Agent(options, this); local
278 Agent agent = new Agent(options, this); local
    [all...]
  /external/curl/docs/cmdline-opts/
user-agent.d 2 Long: user-agent
4 Help: Send User-Agent <name> to server
8 Specify the User-Agent string to send to the HTTP server. To encode blanks in
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
PreMain.java 12 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); local
48 runtime.startup(agent.getData());
Agent.java 12 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.
35 public class Agent implements IAgent {
37 private static Agent singleton
49 final Agent agent = new Agent(options, IExceptionLogger.SYSTEM_ERR); local
    [all...]
Offline.java 12 package org.jacoco.agent.rt.internal;
20 * The API for classes instrumented in "offline" mode. The agent configuration
26 private static final String CONFIG_RESOURCE = "/jacoco-agent.properties";
31 DATA = Agent.getInstance(new AgentOptions(config)).getData();
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
OProfileJITEventListener.cpp 41 op_agent_t Agent;
53 : Agent(op_open_agent()) {
54 if (Agent == NULL) {
56 DEBUG(dbgs() << "Failed to connect to OProfile agent: " << err_str << "\n");
58 DEBUG(dbgs() << "Connected to OProfile agent.\n");
63 if (Agent != NULL) {
64 if (op_close_agent(Agent) == -1) {
66 DEBUG(dbgs() << "Failed to disconnect from OProfile agent: "
69 DEBUG(dbgs() << "Disconnected from OProfile agent.\n");
108 if (op_write_native_code(Agent, F.getName().data()
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
requestwrite_test.go 52 "User-Agent": {"Fake"},
62 "User-Agent: Fake\r\n" +
72 "User-Agent: Fake\r\n" +
99 "User-Agent: Go-http-client/1.1\r\n" +
105 "User-Agent: Go-http-client/1.1\r\n" +
129 "User-Agent: Go-http-client/1.1\r\n" +
136 "User-Agent: Go-http-client/1.1\r\n" +
162 "User-Agent: Go-http-client/1.1\r\n" +
170 "User-Agent: Go-http-client/1.1\r\n" +
193 "User-Agent: Go-http-client/1.1\r\n"
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
requestwrite_test.go 52 "User-Agent": {"Fake"},
62 "User-Agent: Fake\r\n" +
72 "User-Agent: Fake\r\n" +
99 "User-Agent: Go-http-client/1.1\r\n" +
105 "User-Agent: Go-http-client/1.1\r\n" +
129 "User-Agent: Go-http-client/1.1\r\n" +
136 "User-Agent: Go-http-client/1.1\r\n" +
162 "User-Agent: Go-http-client/1.1\r\n" +
170 "User-Agent: Go-http-client/1.1\r\n" +
193 "User-Agent: Go-http-client/1.1\r\n"
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
OProfileWrapper.h 50 op_agent_t Agent;
106 // loaded and a connection to the agent has been established, and false
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ExecutionEngine/
OProfileWrapper.h 50 op_agent_t Agent;
106 // loaded and a connection to the agent has been established, and false
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ExecutionEngine/
OProfileWrapper.h 50 op_agent_t Agent;
106 // loaded and a connection to the agent has been established, and false
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ExecutionEngine/
OProfileWrapper.h 50 op_agent_t Agent;
106 // loaded and a connection to the agent has been established, and false
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/
OProfileWrapper.h 50 op_agent_t Agent;
106 // loaded and a connection to the agent has been established, and false
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ExecutionEngine/
OProfileWrapper.h 50 op_agent_t Agent;
106 // loaded and a connection to the agent has been established, and false
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ExecutionEngine/
OProfileWrapper.h 50 op_agent_t Agent;
106 // loaded and a connection to the agent has been established, and false
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ExecutionEngine/
OProfileWrapper.h 50 op_agent_t Agent;
106 // loaded and a connection to the agent has been established, and false
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/
OProfileWrapper.h 50 op_agent_t Agent;
106 // loaded and a connection to the agent has been established, and false
  /prebuilts/go/darwin-x86/src/net/http/httputil/
dump_test.go 54 // and doesn't add a User-Agent.
75 "User-Agent: Go-http-client/1.1\r\n" +
87 "User-Agent: Go-http-client/1.1\r\n" +
109 "User-Agent: Go-http-client/1.1\r\n" +
138 "User-Agent: Go-http-client/1.1\r\n" +
150 "User-Agent: blah\r\n\r\n"),
153 "User-Agent: blah\r\n\r\n",
195 "User-Agent: Go-http-client/1.1\r\n" +
  /prebuilts/go/linux-x86/src/net/http/httputil/
dump_test.go 54 // and doesn't add a User-Agent.
75 "User-Agent: Go-http-client/1.1\r\n" +
87 "User-Agent: Go-http-client/1.1\r\n" +
109 "User-Agent: Go-http-client/1.1\r\n" +
138 "User-Agent: Go-http-client/1.1\r\n" +
150 "User-Agent: blah\r\n\r\n"),
153 "User-Agent: blah\r\n\r\n",
195 "User-Agent: Go-http-client/1.1\r\n" +
  /prebuilts/go/darwin-x86/src/net/url/
example_test.go 73 "User-Agent": {"godoc-example/0.1"},
84 // User-Agent: godoc-example/0.1
  /prebuilts/go/linux-x86/src/net/url/
example_test.go 73 "User-Agent": {"godoc-example/0.1"},
84 // User-Agent: godoc-example/0.1

Completed in 470 milliseconds

1 2 3