HomeSort by relevance Sort by last modified time
    Searched full:service (Results 701 - 725 of 11175) sorted by null

<<21222324252627282930>>

  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmService.java 18 import android.app.Service;
31 * This service is in charge of starting/stoping the alarm. It will bring up and manage the
34 public class AlarmService extends Service {
41 // Private action used to start an alarm with this service.
44 // Private action used to stop an alarm with this service.
58 // Maintain a cpu wake lock until the service can get it
147 return Service.START_NOT_STICKY;
150 return Service.START_NOT_STICKY;
157 return Service.START_NOT_STICKY;
162 return Service.START_NOT_STICKY
    [all...]
  /packages/apps/Email/res/xml/
services.xml 24 accountType: the AccountManager type of accounts created using this service
25 serviceClass: a class implementing IEmailService (or null, if the service is remote)
27 port: the (default) port used when creating accounts using this service
34 offerTls: whether a TLS option (e.g. STARTTLS) is offered for this service
35 offerCerts: whether or not certificate authentication is an option for this service
36 usesSmtp: whether SMTP is used as the outgoing protocol for this service
46 syncCalendar: whether this service is capable of syncing a calendar (offering a checkbox)
47 syncContacts: whether this service is capable of syncing contacts (offering a checkbox)
55 email:serviceClass="com.android.email.service.Pop3Service"
73 email:serviceClass="com.android.email.service.ImapService
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DockEventReceiver.java 19 import android.app.Service;
95 * 4) the dock is still docked (check can only be done in the Service)
121 * Start the service to process the current event notifications, acquiring
122 * the wake lock before returning to ensure that the service will run.
141 * Called back by the service when it has finished processing notifications,
142 * releasing the wake lock if the service is now stopping.
144 public static void finishStartingService(Service service, int startId) {
148 if (service.stopSelfResult(startId)) {
149 Log.d(TAG, "finishStartingService: stopping service");
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
spelling_service_client.cc 34 // service.
37 // The location of error messages in JSON response from spelling service.
71 // Format the JSON request to be sent to the Spelling service.
111 // the spelling service should be unavailable.
123 // If we do not have the spelling service enabled, then we are only available
146 // When this JSON-RPC call finishes successfully, the Spelling service returns
149 // server, which is the JSON-API front-end for the Spelling service. This
153 // Spelling service. This object consists of the following variable:
163 // For example, the Spelling service returns the following JSON when we send a
177 // If the service is not available, the Spelling service returns JSON with a
    [all...]
  /frameworks/base/docs/html/guide/topics/processes/
process-lifecycle.jd 17 (in particular {@link android.app.Activity}, {@link android.app.Service},
32 is to start a {@link android.app.Service} from the BroadcastReceiver, so the
53 <li>It has a {@link android.app.Service} that is currently executing code
54 in one of its callbacks ({@link android.app.Service#onCreate Service.onCreate()},
55 {@link android.app.Service#onStart Service.onStart()}, or
56 {@link android.app.Service#onDestroy Service.onDestroy()}).</li>
75 <li>A <strong>service process</strong> is one holding a {@link android.app.Service
    [all...]
  /external/chromium_org/chrome/browser/extensions/updater/
extension_updater_unittest.cc 436 // in the actual extension service, but must record the last extension
550 ServiceForManifestTests service(prefs_.get());
555 service.pending_extension_manager();
560 service.CreateTestExtensions(1, 1, &extensions, &update_url,
562 service.set_extensions(extensions);
568 &service, service.extension_prefs(), service.pref_service(),
569 service.profile(), 60*60*24);
654 MockService service(prefs_.get())
    [all...]
  /device/lge/mako/
init.mako.rc 269 service rmt_storage /system/bin/rmt_storage
273 service hciattach /system/bin/sh /system/etc/init.mako.bt.sh
286 service bridgemgrd /system/bin/bridgemgrd
292 service qmuxd /system/bin/qmuxd
297 service kickstart /system/bin/qcks -i /firmware/image/ -r /data/tombstones/mdm/
303 service netmgrd /system/bin/netmgrd
307 service sensors /system/bin/sensors.qcom
312 service wpa_supplicant /system/bin/wpa_supplicant \
326 service p2p_supplicant /system/bin/wpa_supplicant \
342 service dhcpcd_wlan0 /system/bin/dhcpcd -aABDK
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothClass.java 28 * <p>Every Bluetooth class is composed of zero or more service classes, and
35 * service discovery is done through SDP requests, which are automatically
47 * constants and methods to determine which Service Class(es) and Device Class
102 * Defines all service class constants.
103 * <p>Each {@link BluetoothClass} encodes zero or more service classes.
105 public static final class Service {
120 * Return true if the specified service class is supported by this
122 * <p>Valid service classes are the public constants in
123 * {@link BluetoothClass.Service}. For example, {@link
124 * BluetoothClass.Service#AUDIO}
    [all...]
  /frameworks/support/v4/java/android/support/v4/accessibilityservice/
AccessibilityServiceInfoCompat.java 125 * Capability: This accessibility service can retrieve the active window content.
130 * Capability: This accessibility service can request touch exploration mode in which
136 * Capability: This accessibility service can request enhanced web accessibility
142 * Capability: This accessibility service can filter the key event stream.
169 * Default service is invoked only if no package specific one exists. In case of
170 * more than one package specific service only the earlier registered is notified.
183 * window content and also the accessibility service will receive accessibility events
210 * certain gestures performed on the touch screen and notify this service.
212 * accessibility service that has this flag set. Hence, clearing this
214 * mode since there may be another enabled service that requested it
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java 27 import android.app.Service;
159 if (DEBUG) Log.d(TAG, "Map Service startRfcommSocketListener");
169 if (DEBUG) Log.d(TAG, "Map Service initSocket");
245 if (DEBUG) Log.d(TAG, "MAP Service closeService in");
283 if (VERBOSE) Log.v(TAG, "MAP Service closeService out");
287 if (DEBUG) Log.d(TAG, "Map Service startObexServerSession");
323 if (DEBUG) Log.d(TAG, "MAP Service stopObexServerSession");
751 BluetoothMapBinder(BluetoothMapService service) {
753 mService = service;
763 BluetoothMapService service = getService() local
770 BluetoothMapService service = getService(); local
778 BluetoothMapService service = getService(); local
785 BluetoothMapService service = getService(); local
792 BluetoothMapService service = getService(); local
799 BluetoothMapService service = getService(); local
806 BluetoothMapService service = getService(); local
813 BluetoothMapService service = getService(); local
819 BluetoothMapService service = getService(); local
825 BluetoothMapService service = getService(); local
    [all...]
  /external/bluetooth/bluedroid/stack/gatt/
gatt_api.c 76 ** application UUID, service UUID and service instance
128 ** Description This function is called to reserve a block of handles for a service.
130 ** *** It should be called only once per service instance ***
133 ** p_svc_uuid : service UUID
134 ** svc_inst : instance of the service inside the application
135 ** num_handles : number of handles needed by the service.
136 ** is_pri : is a primary service or not.
138 ** Returns service handle if sucessful, otherwise 0.
167 GATT_TRACE_DEBUG0 ("Service already been created!!")
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/android/
promo_handler.cc 62 content::NotificationService* service = local
64 service->Notify(notification_type,
100 // Watch for sync service updates that could cause re-injections
169 ProfileSyncService* service = local
171 if (service && service->signin())
172 data_email = service->signin()->GetAuthenticatedUsername();
199 content::NotificationService* service = local
201 service->Notify(chrome::NOTIFICATION_PROMO_RESOURCE_STATE_CHANGED,
282 // The promo requires the sync; check that the sync service is active
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
service.py 31 """DEPRECATED: Declares the RPC service interfaces.
51 class Service(object):
57 interface can be used to call the methods of the service without knowing
62 """Retrieves this service's descriptor."""
67 """Calls a method of the service specified by method_descriptor.
76 * method_descriptor.service == GetDescriptor
81 used by this Service. For stubs, the "correct type" depends on the
101 method = service.GetDescriptor().FindMethodByName("Foo")
104 service.CallMethod(method, request, callback)
205 An RpcChannel represents a communication line to a service which can be use
    [all...]
  /external/mdnsresponder/mDNSPosix/
ProxyResponder.c 96 // Service Registration
99 // unique name for the service. For a device such as a printer, this may be appropriate.
101 // response may be to prompt the user and ask them to choose a new name for the service.
116 printf("Service %s now registered and active\n", buffer);
164 printf("Made Service Records for %s\n", buffer);
168 // Service non-existence assertion
169 // (claiming a service name without actually providing a service at that name, to prevent anyone else using that name)
171 // e.g. A printer that implements IPP printing service using the name "My Printer", but doesn't implement LPR service,
    [all...]
  /external/protobuf/python/google/protobuf/
service.py 31 """DEPRECATED: Declares the RPC service interfaces.
51 class Service(object):
57 interface can be used to call the methods of the service without knowing
62 """Retrieves this service's descriptor."""
67 """Calls a method of the service specified by method_descriptor.
76 * method_descriptor.service == GetDescriptor
81 used by this Service. For stubs, the "correct type" depends on the
101 method = service.GetDescriptor().FindMethodByName("Foo")
104 service.CallMethod(method, request, callback)
205 An RpcChannel represents a communication line to a service which can be use
    [all...]
  /frameworks/base/services/java/com/android/server/
CommonTimeManagementService.java 47 * <p>CommonTimeManagementService manages the configuration of the native Common Time service,
48 * reconfiguring the native service as appropriate in response to changes in network configuration.
155 Log.i(TAG, "No common time service detected on this platform. " +
177 // Connect to the common time config service and apply the initial configuration.
186 "Permission Denial: can't dump CommonTimeManagement service from from " +
192 pw.println("Native Common Time service was not detected at startup. " +
193 "Service is unavailable");
198 pw.println("Current Common Time Management Service Config:");
199 pw.println(String.format(" Native service : %s",
236 // Get access to the common time service configuration interface. If we catch a remot
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsDetail.java 211 final static Comparator<ProcStatsEntry.Service> sServiceCompare
212 = new Comparator<ProcStatsEntry.Service>() {
214 public int compare(ProcStatsEntry.Service lhs, ProcStatsEntry.Service rhs) {
224 final static Comparator<ArrayList<ProcStatsEntry.Service>> sServicePkgCompare
225 = new Comparator<ArrayList<ProcStatsEntry.Service>>() {
227 public int compare(ArrayList<ProcStatsEntry.Service> lhs,
228 ArrayList<ProcStatsEntry.Service> rhs) {
244 ArrayList<ArrayList<ProcStatsEntry.Service>> servicePkgs
245 = new ArrayList<ArrayList<ProcStatsEntry.Service>>();
264 ProcStatsEntry.Service service = services.get(is); local
    [all...]
  /build/target/board/vbox_x86/
init.vbox_x86.rc 47 # Login Service will insert these accounts into the database when
58 service goldfish-setup /system/etc/init.goldfish.sh
69 service qemu-props /system/bin/qemu-props
75 service qemud /system/bin/qemud
85 service goldfish-logcat /system/bin/logcat -Q
89 service netcfg /system/bin/netcfg eth0 dhcp
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ServReqTestCase.java 27 * The base class for service discovery requester test case.
39 * 1. Add the specified service requests to the framework.<br>
44 * @param reqList service discovery request list to send.
65 * Set service discovery request to the framework.
76 * set service response callback function to framework
82 * execute service find operation.
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityServiceInfoTest.java 33 // fully populate the service info to marshal
37 // marshal and unmarshal the service info
49 * Tests whether the service info describes its contents consistently.
54 assertSame("Accessibility service info always return 0 for this method.", 0,
57 assertSame("Accessibility service infos always return 0 for this method.", 0,
107 * @param sentInfo The service info to populate.
  /device/generic/goldfish/camera/
QemuClient.h 195 /* Encapsulates a connection to the 'camera' service in the emulator via qemu
211 /* Connects to the 'camera' service in the emulator via qemu pipe.
213 * param - Parameters to pass to the camera service. There are two types of
215 * 'camera factory' type of service that provides list of cameras
217 * service that provides interface to a camera connected to the host. At
220 * the 'factory' service, while connection with parameters means
221 * connection to an 'emulated camera' service, where camera is identified
224 * service, while not empty string passed here will establish connection
225 * with an 'emulated camera' service. Parameters defining the emulated
234 * from the factory service using 'list' query
    [all...]
  /device/generic/goldfish/
init.goldfish.rc 53 # Login Service will insert these accounts into the database when
67 service goldfish-setup /system/etc/init.goldfish.sh
78 service qemu-props /system/bin/qemu-props
84 service qemud /system/bin/qemud
94 service goldfish-logcat /system/bin/logcat -Q
98 service fuse_sdcard /system/bin/sdcard -u 1023 -g 1023 -d /mnt/media_rw/sdcard /storage/sdcard
  /device/generic/mini-emulator-armv7-a-neon/
init.mini-emulator.rc 62 # Login Service will insert these accounts into the database when
76 service goldfish-setup /system/etc/init.goldfish.sh
87 service qemu-props /system/bin/qemu-props
93 service qemud /system/bin/qemud
103 service goldfish-logcat /system/bin/logcat -Q
107 service sdcard /system/bin/sdcard -u 1023 -g 1023 -l /data/media /mnt/shell/emulated
  /external/bluetooth/bluedroid/btif/co/
bta_ag_co.c 85 ** Description This function is executed by AG when a service level connection
88 ** set up particular to the connected service.
94 void bta_ag_co_data_open(UINT16 handle, tBTA_SERVICE_ID service)
96 BTIF_TRACE_DEBUG2("bta_ag_co_data_open handle:%d service:%d", handle, service);
103 ** Description This function is called by AG when a service level
  /external/chromium/chrome/browser/extensions/
all_urls_apitest.cc 32 ExtensionService* service = browser()->profile()->GetExtensionService(); local
33 const size_t size_before = service->extensions()->size();
36 EXPECT_EQ(size_before + 2, service->extensions()->size());
93 ExtensionService* service = browser()->profile()->GetExtensionService(); local
94 const size_t size_before = service->extensions()->size();
97 EXPECT_EQ(size_before + 2, service->extensions()->size());

Completed in 749 milliseconds

<<21222324252627282930>>