/libcore/luni/src/main/java/java/util/spi/ |
LocaleServiceProvider.java | 23 * The base class for all the locale related service provider interfaces (SPIs).
24 * <p>Note that Android does not support user-supplied locale service providers.
37 * Returns all locales for which this locale service provider has localized objects or names.
|
/libcore/luni/src/main/java/org/apache/harmony/security/fortress/ |
SecurityAccess.java | 41 * Access to Service.getAliases() 45 public List<String> getAliases(Provider.Service s); 53 public Provider.Service getService(Provider p, String type);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
EmptyService.java | 19 import android.app.Service; 24 * Background {@link Service} that is used to keep our process alive long enough 28 public class EmptyService extends Service {
|
/packages/apps/Music/src/com/android/music/ |
MediaAppWidgetProvider.java | 64 * and hide actions if service not running. 100 void notifyChange(MediaPlaybackService service, String what) { 101 if (hasInstances(service)) { 104 performUpdate(service, null); 112 void performUpdate(MediaPlaybackService service, int[] appWidgetIds) { 113 final Resources res = service.getResources(); 114 final RemoteViews views = new RemoteViews(service.getPackageName(), R.layout.album_appwidget); 116 CharSequence titleName = service.getTrackName(); 117 CharSequence artistName = service.getArtistName(); 152 final boolean playing = service.isPlaying() [all...] |
/packages/apps/Phone/src/com/android/phone/ |
INetworkQueryService.aidl | 22 * Service interface to handle queries for available networks. The 23 * Phone application lets this service interface handle carrier 39 * Tells the service that the requested query is to be ignored.
|
TelephonyDebugService.java | 20 import android.app.Service; 29 * A debug service for telephony. 31 public class TelephonyDebugService extends Service {
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
EmptyService.java | 18 import android.app.Service; 23 * Background {@link Service} that is used to keep our process alive long enough 27 public class EmptyService extends Service {
|
/packages/screensavers/WebView/ |
AndroidManifest.xml | 8 <service 13 <action android:name="android.service.dreams.DreamService" /> 16 </service>
|
/system/security/keystore/ |
keystore_get.cpp | 27 sp<IKeystoreService> service = interface_cast<IKeystoreService>(binder); local 29 if (service == NULL) { 34 int32_t ret = service->get(String16(key, keyLength), value, &valueLength);
|
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/ |
WifiP2pServiceResponse.java | 31 * The class for a response of service discovery. 40 * Service type. It's defined in table63 in Wi-Fi Direct specification. 45 * Status code of service discovery response. 52 * Service transaction ID. 53 * This is a nonzero value used to match the service request/response TLVs. 63 * Service discovery response data based on the requested on 64 * the service protocol type. The protocol format depends on the service type. 70 * The status code of service discovery response. 80 /** the service protocol type is not available * [all...] |
/external/bluetooth/bluedroid/stack/include/ |
gatt_api.h | 322 /* Transports for the primary service */ 367 typedef UINT8 tGATT_SERV_IF; /* GATT Service Interface */ 387 GATT_DISC_SRVC_BY_UUID, /* discover service of a special type */ 388 GATT_DISC_INC_SRVC, /* discover the included service within a service */ 389 GATT_DISC_CHAR, /* discover characteristics of a service with/without type requirement */ 399 tBT_UUID service; member in struct:__anon3335 456 tGATT_READ_BY_TYPE service; member in union:__anon3341 502 /* primary service group data 511 /* included service attribute valu [all...] |
/frameworks/base/core/java/android/accessibilityservice/ |
AccessibilityService.java | 19 import android.app.Service; 35 * An accessibility service runs in the background and receives callbacks by the system 38 * etc. Such a service can optionally request the capability for querying the content 39 * of the active window. Development of an accessibility service requires extending this 51 * The lifecycle of an accessibility service is managed exclusively by the system and 52 * follows the established service life cycle. Additionally, starting or stopping an 53 * accessibility service is triggered exclusively by an explicit user action through 54 * enabling or disabling it in the device settings. After the system binds to a service it 60 * An accessibility is declared as any other service in an AndroidManifest.xml but it 63 * ignore the accessibility service. Additionally an accessibility service must request th [all...] |
/device/asus/flo/ |
init.flo.rc | 286 service irsc_util /system/bin/logwrapper /system/bin/irsc_util "/etc/sec_config" 291 service rmt_storage /system/bin/rmt_storage 295 service hciattach /system/bin/sh /system/etc/init.flo.bt.sh 308 service bridgemgrd /system/bin/bridgemgrd 313 service qcom-c_main-sh /system/bin/sh /init.qcom.class_main.sh 319 service qmuxd /system/bin/qmuxd 325 service ks_checker /system/bin/sh /system/etc/kickstart_checker.sh 329 service kickstart /system/bin/qcks -i /firmware/image/ -r /data/tombstones/mdm/ 336 service asus-dbug-d /data/data/com.asus.debugger/files/asus-debugger-d 349 service netmgrd /system/bin/netmgr [all...] |
/frameworks/base/docs/html/guide/components/ |
aidl.jd | 31 the client and service agree upon in order to communicate with each other using 38 different applications to access your service for IPC and want to handle multithreading in your 39 service. If you do not need to perform concurrent IPC across 57 another thread, that is the one that executes your code in the service. Thus, if only local 58 threads are accessing the service, you can completely control which threads are executing in it (but 80 the application hosting the service and any other application that binds to the service.</p> 84 the project's {@code gen/} directory. The service must implement the {@link android.os.IBinder} 85 interface as appropriate. The client applications can then bind to the service and call methods from 88 <p>To create a bounded service using AIDL, follow these steps:</p [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
BinderTest.java | 150 public void onServiceConnected(ComponentName name, IBinder service) { 157 service.transact(LocalService.SET_REPORTER_CODE, data, null, 0); 213 waitForResultOrThrow(DELAY_MSEC, "existing connection to receive service"); 217 waitForResultOrThrow(DELAY_MSEC, "new connection to receive service"); 236 waitForResultOrThrow(DELAY_MSEC, "the existing connection to lose service"); 249 waitForResultOrThrow(DELAY_MSEC, "the existing connection to receive service"); 263 // Expect to see the service unbind and then destroyed. 267 waitForResultOrThrow(DELAY_MSEC, "the existing connection to lose service"); 280 waitForResultOrThrow(DELAY_MSEC, "existing connection to receive service"); 294 // Expect to see the service unbind but not destroyed [all...] |
/external/chromium/net/proxy/ |
proxy_service_unittest.cc | 119 scoped_refptr<ProxyService> service( 128 int rv = service->ResolveProxy(url, &info, &callback, NULL, log.bound()); 154 scoped_refptr<ProxyService> service( 163 int rv = service->ResolveProxy(url, &info, &callback, NULL, log.bound()); 204 scoped_refptr<ProxyService> service( 211 int rv = service->ResolveProxy(url, &info, &callback, NULL, BoundNetLog()); 232 scoped_refptr<ProxyService> service( 239 int rv = service->ResolveProxy(url, &info, &callback1, NULL, BoundNetLog()); 261 rv = service->ReconsiderProxyAfterError(url, &info, &callback2, NULL, 290 scoped_refptr<ProxyService> service( [all...] |
/device/asus/deb/ |
init.deb.rc | 284 service irsc_util /system/bin/logwrapper /system/bin/irsc_util "/etc/sec_config" 289 service rmt_storage /system/bin/rmt_storage 293 service hciattach /system/bin/sh /system/etc/init.flo.bt.sh 306 service bridgemgrd /system/bin/bridgemgrd 312 service qmuxd /system/bin/qmuxd 317 service ks_checker /system/bin/sh /system/etc/kickstart_checker.sh 321 service kickstart /system/bin/qcks -i /firmware/image/ -r /data/tombstones/mdm/ 328 service asus-dbug-d /data/data/com.asus.debugger/files/asus-debugger-d 342 service netmgrd /system/bin/netmgrd 345 service sensors /system/bin/sensors.qco [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_browsertest.cc | 64 ExtensionService* service = browser()->profile()->GetExtensionService(); local 69 service->LoadExtension(path); 78 service->extensions()->rbegin(); 79 iter != service->extensions()->rend(); ++iter) { 90 service->extension_prefs()->OnExtensionInstalled( 92 service->SetIsIncognitoEnabled(extension->id(), incognito_enabled); 93 service->SetAllowFileAccess(extension, fileaccess_enabled); 121 ExtensionService* service = browser()->profile()->GetExtensionService(); local 128 service->LoadComponentExtension( 208 ExtensionService* service = profile->GetExtensionService() local 269 ExtensionService* service = browser()->profile()->GetExtensionService(); local 277 ExtensionService* service = browser()->profile()->GetExtensionService(); local 282 ExtensionService* service = browser()->profile()->GetExtensionService(); local 287 ExtensionService* service = browser()->profile()->GetExtensionService(); local 292 ExtensionService* service = browser()->profile()->GetExtensionService(); local 367 ExtensionService* service = browser()->profile()->GetExtensionService(); local [all...] |
/external/chromium/chrome/browser/sync/ |
sync_setup_flow.cc | 35 void DisablePasswordSync(ProfileSyncService* service) { 37 service->GetPreferredDataTypes(&types); 39 service->OnUserChoseDatatypes(false, types); 56 SyncSetupFlow* SyncSetupFlow::Run(ProfileSyncService* service, 62 SyncSetupFlow::GetArgsForGaiaLogin(service, &args); 64 SyncSetupFlow::GetArgsForConfigure(service, &args); 74 container, service); 82 void SyncSetupFlow::GetArgsForGaiaLogin(const ProfileSyncService* service, 85 const GoogleServiceAuthError& error = service->GetAuthError(); 86 if (!service->last_attempted_user_email().empty()) [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
ServRespTestCase.java | 26 * The service response test case. 51 * Add renderer service 61 * Add IPP service 71 * Add AFP service 124 return "Service discovery responder test";
|
/cts/tests/tests/app/src/android/app/cts/ |
IntentServiceTest.java | 85 // start service 95 // bind service 105 // unbind service 107 // stop service 114 public void onServiceConnected(ComponentName name, IBinder service) {
|
/development/samples/ApiDemos/tests/src/com/example/android/apis/app/ |
LocalServiceTest.java | 31 * This is a simple framework for a test of a Service. See {@link android.test.ServiceTestCase 32 * ServiceTestCase} for more information on how to write and extend service tests. 61 * Test basic startup/shutdown of Service 71 * Test binding to service 77 IBinder service = bindService(startIntent); local
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
WiFiDirectServicesList.java | 72 WiFiP2pService service = items.get(position); local 73 if (service != null) { 78 nameText.setText(service.device.deviceName + " - " + service.instanceName); 82 statusText.setText(getDeviceStatus(service.device.status));
|
/device/generic/goldfish/ |
init.goldfish.rc | 51 # Login Service will insert these accounts into the database when 62 service goldfish-setup /system/etc/init.goldfish.sh 73 service qemu-props /system/bin/qemu-props 79 service qemud /system/bin/qemud 89 service goldfish-logcat /system/bin/logcat -Q
|
/external/chromium/chrome/browser/net/ |
resolve_proxy_msg_helper.h | 19 // request on the IO thread using the specified proxy service. Completion is 24 // outstanding proxy resolve requests with the proxy service. It also deletes 30 // If |proxy_service| is NULL, then the main profile's proxy service will 51 // Get the proxy service instance to use. On success returns true and 80 // Specified by unit-tests, to use this proxy service in place of the
|