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

/external/bluetooth/bluez/src/
H A Dagent.h25 struct agent;
27 typedef void (*agent_cb) (struct agent *agent, DBusError *err,
30 typedef void (*agent_pincode_cb) (struct agent *agent, DBusError *err,
33 typedef void (*agent_passkey_cb) (struct agent *agent, DBusError *err,
36 typedef void (*agent_remove_cb) (struct agent *agent, void *user_data);
38 struct agent *agent_creat
[all...]
H A Dagent.c49 #include "agent.h"
62 struct agent { struct
76 struct agent *agent; member in struct:agent_request
89 static void agent_release(struct agent *agent) argument
93 debug("Releasing agent %s, %s", agent->name, agent->path);
95 if (agent
139 struct agent *agent = user_data; local
146 agent_free(struct agent *agent) argument
192 struct agent *agent; local
210 agent_destroy(struct agent *agent, gboolean exited) argument
220 agent_request_new(struct agent *agent, agent_request_type_t type, void *cb, void *user_data, GDestroyNotify destroy) argument
239 agent_cancel(struct agent *agent) argument
259 struct agent *agent = req->agent; local
313 struct agent *agent = req->agent; local
337 agent_authorize(struct agent *agent, const char *path, const char *uuid, agent_cb cb, void *user_data, GDestroyNotify destroy) argument
369 struct agent *agent = req->agent; local
439 struct agent *agent = req->agent; local
461 agent_request_pincode(struct agent *agent, struct btd_device *device, agent_pincode_cb cb, void *user_data, GDestroyNotify destroy) argument
491 struct agent *agent = req->agent; local
514 agent_confirm_mode_change(struct agent *agent, const char *new_mode, agent_cb cb, void *user_data, GDestroyNotify destroy) argument
546 struct agent *agent = req->agent; local
596 struct agent *agent = req->agent; local
618 agent_request_passkey(struct agent *agent, struct btd_device *device, agent_passkey_cb cb, void *user_data, GDestroyNotify destroy) argument
652 struct agent *agent = req->agent; local
677 agent_request_confirmation(struct agent *agent, struct btd_device *device, uint32_t passkey, agent_cb cb, void *user_data, GDestroyNotify destroy) argument
710 struct agent *agent = req->agent; local
734 agent_request_pairing_consent(struct agent *agent, struct btd_device *device, agent_cb cb, void *user_data, GDestroyNotify destroy) argument
800 agent_display_passkey(struct agent *agent, struct btd_device *device, uint32_t passkey) argument
827 agent_get_io_capability(struct agent *agent) argument
832 agent_matches(struct agent *agent, const char *name, const char *path) argument
840 agent_is_busy(struct agent *agent, void *user_data) argument
[all...]
H A Ddevice.c57 #include "agent.h"
91 struct agent *agent; member in struct:authentication_req
118 struct agent *agent; member in struct:btd_device
222 struct agent *agent = adapter_get_agent(adapter); local
224 if (device->agent)
225 agent_destroy(device->agent, FALSE);
227 if (agent
1586 device_set_agent(struct btd_device *device, struct agent *agent) argument
1749 device_agent_removed(struct agent *agent, void *user_data) argument
1767 struct agent *agent; local
2112 pincode_cb(struct agent *agent, DBusError *err, const char *pincode, void *data) argument
2127 confirm_cb(struct agent *agent, DBusError *err, void *data) argument
2141 passkey_cb(struct agent *agent, DBusError *err, uint32_t passkey, void *data) argument
2156 pairing_consent_cb(struct agent *agent, DBusError *err, void *data) argument
2174 struct agent *agent; local
2235 struct agent *agent = auth->agent; local
[all...]
H A Ddbus-hci.c58 #include "agent.h"
159 static void pincode_cb(struct agent *agent, DBusError *err, const char *pincode, argument
217 static void confirm_cb(struct agent *agent, DBusError *err, void *user_data) argument
244 static void passkey_cb(struct agent *agent, DBusError *err, uint32_t passkey, argument
276 static void pairing_consent_cb(struct agent *agent, DBusError *err, argument
380 struct agent *agen local
900 struct agent *agent = NULL; local
[all...]
H A Dadapter.c61 #include "agent.h"
115 struct agent *agent; /* For the new API */ member in struct:btd_adapter
735 static void confirm_mode_cb(struct agent *agent, DBusError *derr, void *data) argument
1012 struct agent *agent; local
1024 agent = device_get_agent(device);
1025 if (!agent)
1026 agent
1597 agent_removed(struct agent *agent, struct btd_adapter *adapter) argument
1606 struct agent *agent; local
2981 agent_auth_cb(struct agent *agent, DBusError *derr, void *user_data) argument
2998 struct agent *agent; local
3088 struct agent *agent; local
[all...]
H A Ddevice.h53 struct agent *device_get_agent(struct btd_device *device);
54 void device_set_agent(struct btd_device *device, struct agent *agent);
H A DAndroid.mk11 agent.c \
H A Dadapter.h130 struct agent *adapter_get_agent(struct btd_adapter *adapter);
/external/webkit/WebCore/page/
H A DNavigatorBase.cpp81 // Version is everything in the user agent string past the "Mozilla/" prefix.
82 const String& agent = userAgent(); local
83 return agent.substring(agent.find('/') + 1);
/external/webkit/WebKit/chromium/src/
H A DDebuggerAgentManager.cpp88 DebuggerAgentImpl* agent = it->second; local
89 s_pageDeferrers.set(agent->webView(), new WebCore::PageGroupLoadDeferrer(agent->page(), true));
90 views.append(agent->webView());
91 agent->webView()->setIgnoreInputEvents(true);
152 // Remove all breakpoints set by the agent.
215 DebuggerAgentImpl* agent = debuggerAgentForHostId(hostId); local
216 if (agent) {
217 if (agent->autoContinueOnException()
223 agent
[all...]
H A DWebDevToolsAgentImpl.cpp117 static const char kApuAgentFeatureName[] = "apu-agent";
396 // user could turn off resource tracking while apu agent is on.
418 WebDevToolsAgentImpl* agent = static_cast<WebDevToolsAgentImpl*>(v8::External::Cast(*args.Data())->Value());
419 agent->m_toolsAgentDelegateStub->dispatchOnClient(message);
430 WebDevToolsAgentImpl* agent = static_cast<WebDevToolsAgentImpl*>(
432 agent->m_apuAgentDelegateStub->dispatchToApu(message);
446 WebDevToolsAgentImpl* agent = static_cast<WebDevToolsAgentImpl*>(v8::External::Cast(*args.Data())->Value()); local
447 v8::Context::Scope(agent->m_utilityContext);
448 V8Proxy* proxy = V8Proxy::retrieve(agent->m_webViewImpl->page()->mainFrame());
461 WebDevToolsAgentImpl* agent
[all...]
/external/v8/src/
H A Ddebug-agent.h42 // Debugger agent which starts a socket listener on the debugger port and
71 int port_; // Port to use for the agent.
88 // Debugger agent session. The session receives requests from the remote
92 DebuggerAgentSession(DebuggerAgent* agent, Socket* client) argument
93 : agent_(agent), client_(client) {}
/external/bluetooth/bluez/test/
H A DAndroid.mk107 # agent
116 agent.c
128 LOCAL_MODULE:=agent
H A Dsimple-agent95 path = "/test/agent"
96 agent = Agent(bus, path)
105 agent.set_exit_on_release(False)
/external/webkit/WebKit/chromium/src/js/
H A DDevTools.js47 var agent = window[remoteName];
48 if (!agent) {
49 debugPrint("No remote agent '" + remoteName + "' found.");
52 var method = agent[methodName];
72 * Resets tools agent to its initial state.
93 * @return {devtools.DebuggerAgent} Debugger agent instance.
102 * @return {devtools.ProfilerAgent} Profiler agent instance.
183 * Global instance of the tools agent.
471 // which should be executed when all the messages between agent and frontend
/external/v8/
H A DAndroid.v8common.mk22 src/debug-agent.cc \
47 src/oprofile-agent.cc \
/external/webkit/LayoutTests/http/conf/
H A Dapache2-debian-httpd.conf401 LogFormat "%{User-agent}i" agent
414 # If you prefer a single logfile with access, agent, and referer information
H A Dapache2-httpd.conf426 LogFormat "%{User-agent}i" agent
439 # If you prefer a single logfile with access, agent, and referer information
H A Dcygwin-httpd.conf460 LogFormat "%{User-agent}i" agent
473 # If you prefer a single logfile with access, agent, and referer information
H A Dfedora-httpd.conf465 LogFormat "%{User-agent}i" agent
481 # If you would like to have separate agent and referer logfiles, uncomment
485 #CustomLog logs/agent_log agent
488 # For a single logfile with access, agent, and referer information
H A Dhttpd.conf463 LogFormat "%{User-agent}i" agent
476 # If you prefer a single logfile with access, agent, and referer information
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultRequestDirector.java684 String agent = HttpProtocolParams.getUserAgent(params);
685 if (agent != null) {
686 connect.addHeader(HTTP.USER_AGENT, agent);
/external/icu4c/test/intltest/
H A Dnumfmtst.cpp186 UnicodeString agent("agent");
189 if (stub.format(num, agent, pos) != UnicodeString("agent3")){
/external/iproute2/doc/
H A Dip-cref.tex2266 agent.

Completed in 458 milliseconds