HomeSort by relevance Sort by last modified time
    Searched full:service (Results 101 - 125 of 3819) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/bluetooth/bluez/serial/
serial.conf 6 # UUID for DUN proxy service
  /external/bluetooth/bluez/test/
test-network 30 print "Usage: %s <address> [service]" % (sys.argv[0])
36 service = "panu" variable
38 service = args[1] variable
45 iface = network.Connect(service)
test-serial 29 print "Usage: %s <address> [service]" % (sys.argv[0])
35 service = "spp" variable
37 service = args[1] variable
44 node = serial.Connect(service)
simple-service 84 <text value="Serial Port Service"/> \
112 service = dbus.Interface(bus.get_object("org.bluez", path), variable
113 "org.bluez.Service")
115 handle = service.AddRecord(xml)
117 print "Service record with handle 0x%04x added" % (handle)
119 print "Press CTRL-C to remove service record"
127 service.RemoveRecord(dbus.UInt32(handle))
simple-agent 7 import dbus.service namespace
13 class Agent(dbus.service.Object):
19 @dbus.service.method("org.bluez.Agent",
26 @dbus.service.method("org.bluez.Agent",
35 @dbus.service.method("org.bluez.Agent",
41 @dbus.service.method("org.bluez.Agent",
48 @dbus.service.method("org.bluez.Agent",
53 @dbus.service.method("org.bluez.Agent",
62 @dbus.service.method("org.bluez.Agent",
67 @dbus.service.method("org.bluez.Agent"
    [all...]
  /external/iptables/extensions/
libipt_tos.man 1 This module matches the 8 bits of Type of Service field in the IP
  /external/webkit/LayoutTests/fast/dom/Geolocation/
permission-denied-expected.txt 1 Tests Geolocation when permission is denied, using the mock service.
success-expected.txt 1 Tests Geolocation success callback using the mock service.
  /hardware/msm7k/librpc/rpc/
svc.h 55 * "service dispatch" function, a transport handle, and a bool_t that
57 * local binder service; if true the program's number and version and the
61 * A service's dispatch function is called whenever an rpc request comes in
63 * those of the registered service. The dispatch function is passed two
74 * Service request
77 rpcprog_t rq_prog; /* service program number */
78 rpcvers_t rq_vers; /* service protocol version */
105 * Service registration (registers only with plugger module)
120 * Service registration (registers with plugger module and lower layers)
136 * Service un-registratio
    [all...]
  /packages/experimental/StrictModeTest/
AndroidManifest.xml 24 <service android:name=".RemoteService"
25 android:label="Remote Strict Service"
29 <service android:name=".LocalService"
30 android:label="Remote Strict Service"
  /bionic/libc/tools/
genserv.py 10 this program is used to generate the hard-coded internet service list for the
17 class Service:
42 result = [] # list of Service objects
55 service = Service( m.group(1), int(m.group(2)), m.group(3) )
62 service.add_alias(m.group(1))
65 result.append(service)
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 28 import android.app.Service;
65 * service, another with the instrumented activity and test cases. The motivation for
71 * Accessibility), the delegating service must be enabled (Settings -> Accessibility
72 * -> Delegating Accessibility Service), and then the CTS tests in this package can be
75 * breaks the binding between the delegating accessibility service and the system.
92 * The package of the accessibility service mock interface.
98 * The package of the delegating accessibility service interface.
104 * The package of the delegating accessibility service connection interface.
143 MockAccessibilityService service = MockAccessibilityService.getInstance(activity); local
144 service.expectEvent(selectedEvent)
172 MockAccessibilityService service = MockAccessibilityService.getInstance(activity); local
201 MockAccessibilityService service = MockAccessibilityService.getInstance(activity); local
232 MockAccessibilityService service = MockAccessibilityService.getInstance(activity); local
280 MockAccessibilityService service = MockAccessibilityService.getInstance(activity); local
311 MockAccessibilityService service = MockAccessibilityService.getInstance(activity); local
353 MockAccessibilityService service = MockAccessibilityService.getInstance(activity); local
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.app.Service.html 10 android.app.Service
74 Class android.app.<A HREF="../../../../reference/android/app/Service.html" target="_top"><font size="+2"><code>Service</code></font></A>
86 <A NAME="android.app.Service.onStartCommand_added(android.content.Intent, int, int)"></A>
87 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/Service.html#onStartCommand(android.content.Intent, int, int)" target="_top"><code>onStartCommand</code></A>(<code>Intent,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
93 <A NAME="android.app.Service.startForeground_added(int, android.app.Notification)"></A>
94 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Service.html#startForeground(int, android.app.Notification)" target="_top"><code>startForeground</code></A>(<code>int,</nobr> Notification<nobr><nobr></code>)</nobr>
100 <A NAME="android.app.Service.stopForeground_added(boolean)"></A>
101 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Service.html#stopForeground(boolean)" target="_top"><code>stopForeground</code></A>(<code>boolean</code>)</nobr>
115 <A NAME="android.app.Service.onStart_changed(android.content.Intent, int)"></A
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/delegate/
DelegatingAccessibilityService.java 23 import android.app.Service;
31 * This class is an accessibility service mock to which the system is bound and
35 * service, another with the instrumented activity and test cases. The
40 * Accessibility), the mock service must be enabled (Settings -> Accessibility
41 * -> Mock Accessibility Service), and then the CTS tests in this package
46 * the binding between the mock accessibility service and the system.
56 * Handle to the instance used by the accessibility service connection.
75 // the service is ready to be used only
118 * This is a service to which the end-to-end CTS test connects to pass a
122 public static class DelegatingConnectionService extends Service {
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalService.java 22 import android.app.Service;
34 * This is an example of implementing an application service that runs locally
37 * service.
40 * happen in the service. This is generally how background services should
44 //BEGIN_INCLUDE(service)
45 public class LocalService extends Service {
49 * Class for clients to access. Because we know this service always
70 // We want this service to continue running until it is explicitly
94 * Show a notification while this service is running.
117 //END_INCLUDE(service)
    [all...]
_package.html 31 <li>{@link com.android.samples.app.LocalServiceController Local Service
33 <li>{@link com.android.samples.app.LocalServiceBinding Local Service Binding}
34 <li>{@link com.android.samples.app.RemoteServiceController Remote Service
36 <li>{@link com.android.samples.app.RemoteServiceBinding Remote Service
44 <li>{@link com.android.samples.app.AlarmService Alarm Service}
  /external/guava/src/com/google/common/util/concurrent/
AbstractExecutionThreadService.java 19 import com.google.common.base.Service;
28 * service; consider {@link AbstractService} if you would like to manage any
34 public abstract class AbstractExecutionThreadService implements Service {
37 private final Service delegate = new AbstractService() {
72 * Start the service. This method is invoked on the execution thread.
77 * Run the service. This method is invoked on the execution thread.
93 * Stop the service. This method is invoked on the execution thread.
99 * Invoked to request the service to stop.
104 * Returns the {@link Executor} that will be used to run this service.
108 * execute()} method is called when this service is started, and should retur
    [all...]
  /external/qemu/android/
hw-qemud.h 32 * a single client in the emulated system for a given named service.
34 * this is only used to connect GPS and GSM service clients to the
56 /* A QemudService service is used to connect one or more clients to
71 * service through qemud.
75 /* Register a new client for a given service.
82 extern QemudClient* qemud_client_new( QemudService* service,
102 * system tries to connect to a given qemud service. This should typically
105 typedef QemudClient* (*QemudServiceConnect)( void* opaque, QemudService* service, int channel );
107 /* Register a new qemud service.
115 /* Sends a message to all clients of a given service
    [all...]
  /frameworks/base/core/java/android/os/
ServiceManagerNative.java 21 * Native implementation of the service manager. Most clients will only
28 * Cast a Binder object into a service manager interface, generating
57 IBinder service = getService(name); local
58 reply.writeStrongBinder(service);
65 IBinder service = checkService(name); local
66 reply.writeStrongBinder(service);
73 IBinder service = data.readStrongBinder(); local
74 addService(name, service);
139 public void addService(String name, IBinder service)
145 data.writeStrongBinder(service);
    [all...]
  /frameworks/base/core/java/com/android/internal/nfc/
LlcpServiceSocket.java 28 * LlcpServiceSocket represents a LLCP Service to be used in a
36 * The handle returned by the NFC service and used to identify the LLCP
37 * Service socket in every call of this class.
42 * The entry point for LLCP Service socket operations.
75 * @param service
76 * The entry point to the Nfc Service for LlcpServiceSocket
79 * The handle returned by the NFC service and used to identify
83 public LlcpServiceSocket(ILlcpServiceSocket service, ILlcpSocket socketService, int handle) {
84 this.mService = service;
125 * Close the created Llcp Service socke
    [all...]
  /frameworks/base/services/java/com/android/server/am/
IntentBindRecord.java 27 * A particular Intent that has been bound to a Service.
30 /** The running service. */
31 final ServiceRecord service; field in class:IntentBindRecord
37 /** Binder published from service. */
43 /** Set when we still need to tell the service all clients are unbound. */
45 /** Set when the service's onUnbind() has asked to be told about new clients. */
51 pw.print(prefix); pw.print("service="); pw.println(service);
77 service = _service;
89 sb.append(service.shortName)
    [all...]
  /system/core/init/
init.h 77 struct service { struct
100 /* keycodes for triggering this service via /dev/keychord */
115 struct service *service_find_by_name(const char *name);
116 struct service *service_find_by_pid(pid_t pid);
117 struct service *service_find_by_keychord(int keychord_id);
118 void service_for_each(void (*func)(struct service *svc));
120 void (*func)(struct service *svc));
122 void (*func)(struct service *svc));
123 void service_stop(struct service *svc);
124 void service_start(struct service *svc, const char *dynamic_args)
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
icusvtst.cpp 323 // create a service using locale keys,
324 TestIntegerService service; local
331 service.registerInstance(singleton0, "en_US", status);
334 Integer* result = (Integer*)service.get("en_US_FOO", status);
343 service.registerInstance(singleton1, "en_US_FOO", status);
346 Integer* result = (Integer*)service.get("en_US_FOO", status);
354 Integer* result = (Integer*)service.get("en_US_BAR", status);
361 confirmIdentical("4) factory size", service.countFactories(), 2);
366 service.registerInstance(singleton2, "en", status);
368 confirmIdentical("5) factory size", service.countFactories(), 3)
622 TestStringService service; local
890 TestStringService service; local
1034 TestStringLocaleService service; local
1278 TestStringService service; local
1335 TestStringService service; local
1355 TestStringSimpleKeyService service; local
    [all...]
  /external/icu4c/test/intltest/
icusvtst.cpp 323 // create a service using locale keys,
324 TestIntegerService service; local
331 service.registerInstance(singleton0, "en_US", status);
334 Integer* result = (Integer*)service.get("en_US_FOO", status);
343 service.registerInstance(singleton1, "en_US_FOO", status);
346 Integer* result = (Integer*)service.get("en_US_FOO", status);
354 Integer* result = (Integer*)service.get("en_US_BAR", status);
361 confirmIdentical("4) factory size", service.countFactories(), 2);
366 service.registerInstance(singleton2, "en", status);
368 confirmIdentical("5) factory size", service.countFactories(), 3)
622 TestStringService service; local
890 TestStringService service; local
1034 TestStringLocaleService service; local
1278 TestStringService service; local
1335 TestStringService service; local
1355 TestStringSimpleKeyService service; local
    [all...]
  /external/dnsmasq/contrib/Suse/
rc.dnsmasq-suse 11 # Description: Starts internet name service masq caching server (DNS)
28 echo -n "Starting name service masq caching server "
39 echo -n "Shutting name service masq caching server "
59 echo -n "Reloading name service masq caching server "
66 echo -n "Checking for name service masq caching server "

Completed in 4595 milliseconds

1 2 3 45 6 7 8 91011>>