HomeSort by relevance Sort by last modified time
    Searched refs:services (Results 26 - 50 of 280) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/services/Telephony/common/src/com/android/services/telephony/common/
ICallCommandService.aidl 17 package com.android.services.telephony.common;
19 import com.android.services.telephony.common.Call;
MoreStrings.java 17 package com.android.services.telephony.common;
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
Services.java 33 public class Services {
41 private static final Map<String, Provider.Service> services field in class:Services
46 * Avoids similar provider/services iteration in SecureRandom constructor.
139 * Adds information about provider services into HashMap.
148 if (!services.containsKey(key)) {
149 services.put(key, service);
153 if (!services.containsKey(key)) {
154 services.put(key, service);
161 * Returns true if services contain any provider information.
164 return services.isEmpty()
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactsActivity.java 32 * A common superclass for Contacts activities that handles application-wide services.
43 InjectedServices services = ContactsApplication.getInjectedServices(); local
44 if (services != null) {
45 mContentResolver = services.getContentResolver();
56 InjectedServices services = ContactsApplication.getInjectedServices(); local
57 if (services != null) {
58 SharedPreferences prefs = services.getSharedPreferences();
  /external/chromium_org/mojo/services/native_viewport/
native_viewport_impl.h 12 #include "mojo/services/native_viewport/native_viewport.h"
20 namespace services { namespace in namespace:mojo
38 // Overridden from services::NativeViewportDelegate:
49 scoped_ptr<services::NativeViewport> native_viewport_;
59 } // namespace services
native_viewport.h 21 namespace services { namespace in namespace:mojo
51 } // namespace services
native_viewport_stub.cc 5 #include "mojo/services/native_viewport/native_viewport.h"
10 namespace services { namespace in namespace:mojo
43 } // namespace services
  /external/chromium_org/mojo/shell/
app_container.h 21 namespace services { namespace in namespace:mojo
55 scoped_ptr<services::NativeViewportImpl> native_viewport_;
  /frameworks/base/services/java/
Android.mk 12 LOCAL_MODULE:= services
  /libcore/luni/src/main/java/java/util/
ServiceLoader.java 30 * {@code META-INF/services/}. The file's name should match the class' binary name (such as
49 * And this configuration file (stored as {@code META-INF/services/a.b.c.MyService}):
75 private final Set<URL> services; field in class:ServiceLoader
85 this.services = new HashSet<URL>();
126 services.clear();
128 String name = "META-INF/services/" + service.getName();
129 services.addAll(Collections.list(classLoader.getResources(name)));
188 private final Set<URL> services; field in class:ServiceLoader.ServiceIterator
197 this.services = sl.services;
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pUpnpServiceInfo.java 64 * @param services a string representation of this service in the following format,
72 String device, List<String> services) {
83 if (services != null) {
84 for (String service:services) {
  /packages/apps/Settings/src/com/android/settings/print/
SettingsUtils.java 61 List<ComponentName> services) {
63 final int serviceCount = services.size();
65 ComponentName service = services.get(i);
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
RegisteredAidCache.java 36 // mAidServices is a tree that maps an AID to a list of handling services
42 // more services. It differs from mAidServices in the sense that it
44 // is authoritative for the current set of services and defaults.
53 List<ApduServiceInfo> services; field in class:RegisteredAidCache.AidResolveInfo
164 if (resolveInfo == null || resolveInfo.services == null ||
165 resolveInfo.services.size() == 0) {
171 } else if (resolveInfo.services.size() == 1) {
172 return service.equals(resolveInfo.services.get(0).getComponent());
263 * Resolves an AID to a set of services that can handle it.
272 resolveInfo.services = new ArrayList<ApduServiceInfo>()
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
ServicePermissionsTest.java 32 * Verifies that permissions are enforced on various system services.
57 * registered system services checks if caller holds
62 String[] services = null; local
64 services = (String[]) Class.forName("android.os.ServiceManager")
73 if ((services == null) || (services.length == 0)) {
74 Log.w(TAG, "No registered services, that's odd");
78 for (String service : services) {
129 + "may be leaking sensitive data. At most, services should emit a "
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityManager.java 282 * Requests feedback interruption from all accessibility services.
291 Log.i(LOG_TAG, "Requested interrupt from all services");
294 Log.e(LOG_TAG, "Error while requesting interrupt from all services. ", re);
299 * Returns the {@link ServiceInfo}s of the installed accessibility services.
308 List<ServiceInfo> services = new ArrayList<ServiceInfo>(); local
312 services.add(info.getResolveInfo().serviceInfo);
314 return Collections.unmodifiableList(services);
318 * Returns the {@link AccessibilityServiceInfo}s of the installed accessibility services.
323 List<AccessibilityServiceInfo> services = null; local
325 services = mService.getInstalledAccessibilityServiceList(mUserId)
350 List<AccessibilityServiceInfo> services = null; local
    [all...]
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_rfc.c 280 void bta_ag_start_servers(tBTA_AG_SCB *p_scb, tBTA_SERVICE_MASK services)
285 services >>= BTA_HSP_SERVICE_ID;
286 for (i = 0; i < BTA_AG_NUM_IDX && services != 0; i++, services >>= 1)
289 if (services & 1)
321 void bta_ag_close_servers(tBTA_AG_SCB *p_scb, tBTA_SERVICE_MASK services)
325 services >>= BTA_HSP_SERVICE_ID;
326 for (i = 0; i < BTA_AG_NUM_IDX && services != 0; i++, services >>= 1)
329 if (services & 1
    [all...]
bta_ag_api.c 121 void BTA_AgRegister(tBTA_SERVICE_MASK services, tBTA_SEC sec_mask,tBTA_AG_FEAT features,
132 p_buf->services = services;
185 void BTA_AgOpen(UINT16 handle, BD_ADDR bd_addr, tBTA_SEC sec_mask, tBTA_SERVICE_MASK services)
194 p_buf->services = services;
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BordeauxClassifier.java 17 package android.bordeaux.services;
19 import android.bordeaux.services.ILearning_MulticlassPA;
20 import android.bordeaux.services.IntFloat;
MotionStatsAggregator.java 17 package android.bordeaux.services;
  /external/chromium_org/mojo/shell/android/
library_loader.cc 9 #include "mojo/services/native_viewport/native_viewport_android.h"
17 { "NativeViewportAndroid", mojo::services::NativeViewportAndroid::Register },
  /frameworks/base/services/jni/
Android.mk 25 frameworks/base/services \
27 frameworks/native/services \
  /frameworks/base/policy/src/com/android/internal/policy/impl/
EnableAccessibilityController.java 135 List<AccessibilityServiceInfo> services = new ArrayList<AccessibilityServiceInfo>(); local
136 services.addAll(AccessibilityManager.getInstance(context)
138 Iterator<AccessibilityServiceInfo> iterator = services.iterator();
145 return services;
214 List<AccessibilityServiceInfo> services = getInstalledSpeakingAccessibilityServices( local
216 if (services.isEmpty()) {
228 AccessibilityServiceInfo service = services.get(0);
233 final int serviceCount = services.size();
235 AccessibilityServiceInfo candidate = services.get(i);
255 // Allow the services we just enabled to toggle touch exploration
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/internal/
ftserv.h 5 /* The FreeType services (specification only). */
20 /* Each module can export one or more `services'. Each service is */
    [all...]
  /external/freetype/include/freetype/internal/
ftserv.h 5 /* The FreeType services (specification only). */
20 /* Each module can export one or more `services'. Each service is */
    [all...]
  /bootable/recovery/minadbd/
Android.mk 19 services.c \

Completed in 553 milliseconds

12 3 4 5 6 7 8 91011>>