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

<<21222324252627282930>>

  /external/qemu/android/camera/
camera-service.h 21 * Contains public camera service API.
24 /* Initializes camera emulation service over qemu pipe. */
  /frameworks/base/core/java/android/bluetooth/
BluetoothAdvScanData.java 48 * Bluetooth Gatt Service.
86 * Set service data. Note the service data can only be set when the data type is {@code AD};
96 Log.e(TAG, "Unable to set service data.", e);
102 * Returns an immutable list of service uuids that will be advertised.
108 Log.e(TAG, "Unable to get service uuids.", e);
127 * Returns service data.
134 Log.e(TAG, "Unable to get service data.", e);
  /frameworks/base/core/java/android/net/nsd/
NsdServiceInfo.java 25 * A class representing service information for network service discovery
50 /** Get the service name */
55 /** Set the service name */
60 /** Get the service type */
65 /** Set the service type */
80 /** Get the host address. The host address is valid for a resolved service. */
90 /** Get port number. The port number is valid for a resolved service. */
  /frameworks/base/core/java/android/os/
CommonClock.java 37 * Used for accessing the android common time service's common clock and receiving notifications
44 * common time service is not able to determine the current common time due to a lack of
50 * Sentinel value returned by {@link #getTimelineId()} when the common time service is not
56 * Sentinel value returned by {@link #getEstimatedError()} when the common time service is not
63 * attempting to determine the state of the common time service.
68 * Value used by {@link #getState()} to indicate that the common time service is in its initial
69 * state and attempting to find the current timeline master, if any. The service will
77 * Value used by {@link #getState()} to indicate that the common time service is in its client
83 * Value used by {@link #getState()} to indicate that the common time service is in its master
84 * state and is serving as the timeline master for other common time service clients on th
    [all...]
  /frameworks/base/core/java/android/service/notification/
INotificationListener.aidl 17 package android.service.notification;
19 import android.service.notification.StatusBarNotification;
  /frameworks/base/core/java/android/service/wallpaper/
IWallpaperConnection.aidl 17 package android.service.wallpaper;
20 import android.service.wallpaper.IWallpaperEngine;
IWallpaperService.aidl 17 package android.service.wallpaper;
19 import android.service.wallpaper.IWallpaperConnection;
  /frameworks/base/core/java/com/android/internal/backup/
LocalTransportService.java 19 import android.app.Service;
23 public class LocalTransportService extends Service {
  /frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
TestService.java 20 import android.app.Service;
24 public class TestService extends Service {
  /frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
FakeCoreService.java 19 import android.app.Service;
24 public class FakeCoreService extends Service {
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BordeauxManagerService.java 37 * service.
38 * TODO: Eventally the remote service will be running in the system server, and
39 * this will need to be served as a stub for the remote running service. And
135 * Class for interacting with the main interface of the service.
139 IBinder service) {
140 // This is called when the connection with the service has been
142 mService = IBordeauxService.Stub.asInterface(service);
146 // This is called when the connection with the service has been
ILearning_MulticlassPA.aidl 20 * Example of a secondary interface associated with a service. (Note that
22 * retrieve it from the service.)
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
ServiceUnavailableException.java 17 package com.android.emailcommon.service;
20 * An Exception thrown when a service proxy requires a result and there's a remote exception; this
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
SyncAdapterTestCase.java 86 EasSyncService service = new EasSyncService(); local
87 service.mContext = mContext;
88 service.mMailbox = mailbox;
89 service.mAccount = account;
90 service.mContentResolver = mContext.getContentResolver();
91 return service;
95 EasSyncService service = getTestService(); local
99 return c.newInstance(service);
  /packages/apps/InCallUI/src/com/android/incalluibind/
ServiceFactory.java 21 import com.android.incallui.service.PhoneNumberService;
29 // no phone number service.
  /packages/experimental/PrintService2/
AndroidManifest.xml 14 <service
24 </service>
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
MockSyncAdapter.java 19 import android.app.Service;
26 public class MockSyncAdapter extends Service {
  /system/core/init/
keychords.h 20 struct service;
22 void add_service_keycodes(struct service *svc);
  /external/chromium_org/sandbox/win/src/
interception.h 224 // the given service to intercept (INTERCEPTION_SERVICE_CALL), and assumes that
225 // the interceptor is called "TargetXXX", where XXX is the name of the service.
227 // the exported interceptor, following the calling convention of a service call
231 #define MAKE_SERVICE_NAME(service, params) "Target" # service "64"
233 #define MAKE_SERVICE_NAME(service, params) "_Target" # service "@" # params
236 #define ADD_NT_INTERCEPTION(service, id, num_params) \
237 AddToPatchedFunctions(kNtdllName, #service, \
239 MAKE_SERVICE_NAME(service, num_params), id
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_group_unittest.cc 86 AppCacheService* service)
87 : AppCacheHost(host_id, frontend, service),
104 MockAppCacheService service; local
106 new AppCacheGroup(service.storage(), GURL("http://foo.com"), 111));
110 scoped_refptr<AppCache> cache1(new AppCache(service.storage(), 111));
117 scoped_refptr<AppCache> cache2(new AppCache(service.storage(), 222));
124 scoped_refptr<AppCache> cache3(new AppCache(service.storage(), 333));
131 scoped_refptr<AppCache> cache4(new AppCache(service.storage(), 444));
138 scoped_refptr<AppCache> cache5(new AppCache(service.storage(), 55));
174 MockAppCacheService service; local
215 MockAppCacheService service; local
236 MockAppCacheService service; local
255 MockAppCacheService service; local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ApplicationTest.java 118 TestService service = new TestService(); local
119 assertTrue(Robolectric.application.bindService(new Intent(""), service, Context.BIND_AUTO_CREATE));
121 assertNull(service.name);
122 assertNull(service.service);
126 assertEquals(expectedComponentName, service.name);
127 assertEquals(expectedBinder, service.service);
132 TestService service = new TestService(); local
136 Robolectric.application.bindService(new Intent(""), service, Context.BIND_AUTO_CREATE)
147 TestService service = new TestService(); local
161 TestService service = new TestService(); local
    [all...]
  /cts/tests/accessibility/
AndroidManifest.xml 26 <service android:name=".SpeakingAccessibilityService"
34 </service>
36 <service android:name=".VibratingAccessibilityService"
44 </service>
  /development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/service/
MessagingService.java 17 package com.example.android.smssample.service;
25 * This service is triggered internally only and is used to process incoming SMS and MMS messages
27 * preferable to handle these in a service in case there is significant work to do which may exceed
33 // These actions are for this app only and are used by MessagingReceiver to start this service
  /device/samsung/manta/
init.manta.rc 124 service sdcard /system/bin/sdcard -u 1023 -g 1023 -l /data/media /mnt/shell/emulated
127 service p2p_supplicant /system/bin/wpa_supplicant \
145 service wpa_supplicant /system/bin/wpa_supplicant \
159 service dhcpcd_wlan0 /system/bin/dhcpcd -aABDKL
164 service dhcpcd_p2p /system/bin/dhcpcd -aABKL
169 service dhcpcd_eth0 /system/bin/dhcpcd -ABDKL
174 service dhcpcd_bt-pan /system/bin/dhcpcd -ABKL
179 service iprenew_wlan0 /system/bin/dhcpcd -n
184 service iprenew_p2p /system/bin/dhcpcd -n
189 service iprenew_eth0 /system/bin/dhcpcd -
    [all...]
  /external/chromium/chrome/browser/resources/webstore_app/
manifest.json 15 "*://clients2.google.com/service/update2",

Completed in 1124 milliseconds

<<21222324252627282930>>