HomeSort by relevance Sort by last modified time
    Searched refs:services (Results 51 - 75 of 358) sorted by null

1 23 4 5 6 7 8 91011>>

  /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/
PrintSettingsUtils.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 45 // mAidServices maps AIDs to services that have registered them.
52 // more handling services. It differs from mAidServices in the sense that it
54 // is authoritative for the current set of services and defaults.
96 // Represents a list of services, an optional default and a category that
99 List<ApduServiceInfo> services = new ArrayList<ApduServiceInfo>(); field in class:RegisteredAidCache.AidResolveInfo
107 "services=" + services +
176 for (ApduServiceInfo serviceInfo : entryResolveInfo.services) {
177 if (!resolveInfo.services.contains(serviceInfo)) {
178 resolveInfo.services.add(serviceInfo)
396 final ArrayList<ServiceAidInfo> services = new ArrayList<ServiceAidInfo>(); field in class:RegisteredAidCache.PrefixConflicts
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
ServicePermissionsTest.java 33 * Verifies that permissions are enforced on various system services.
58 * registered system services checks if caller holds
63 String[] services = null; local
65 services = (String[]) Class.forName("android.os.ServiceManager")
74 if ((services == null) || (services.length == 0)) {
75 Log.w(TAG, "No registered services, that's odd");
79 for (String service : services) {
134 + "may be leaking sensitive data. At most, services should emit a "
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
Services.java 31 public class Services {
39 private static final HashMap<String, ArrayList<Provider.Service>> services field in class:Services
44 * Avoids similar provider/services iteration in SecureRandom constructor.
131 * Adds information about provider services into HashMap.
152 ArrayList<Provider.Service> serviceList = services.get(key);
155 services.put(key, serviceList);
161 * Returns true if services does not contain any provider information.
164 return services.isEmpty();
178 return services.get(key);
192 * implementation to indicate that a provides list of services ha
    [all...]
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_rfc.c 284 void bta_ag_start_servers(tBTA_AG_SCB *p_scb, tBTA_SERVICE_MASK services)
289 services >>= BTA_HSP_SERVICE_ID;
290 for (i = 0; i < BTA_AG_NUM_IDX && services != 0; i++, services >>= 1)
293 if (services & 1)
325 void bta_ag_close_servers(tBTA_AG_SCB *p_scb, tBTA_SERVICE_MASK services)
329 services >>= BTA_HSP_SERVICE_ID;
330 for (i = 0; i < BTA_AG_NUM_IDX && services != 0; i++, services >>= 1)
333 if (services & 1
    [all...]
bta_ag_api.c 119 void BTA_AgRegister(tBTA_SERVICE_MASK services, tBTA_SEC sec_mask,tBTA_AG_FEAT features,
130 p_buf->services = services;
183 void BTA_AgOpen(UINT16 handle, BD_ADDR bd_addr, tBTA_SEC sec_mask, tBTA_SERVICE_MASK services)
192 p_buf->services = services;
bta_ag_sdp.c 210 ** Description Create SDP records for registered services.
219 tBTA_SERVICE_MASK services; local
221 services = p_scb->reg_services >> BTA_HSP_SERVICE_ID;
222 for (i = 0; i < BTA_AG_NUM_IDX && services != 0; i++, services >>= 1)
225 if (services & 1)
248 ** Description Delete SDP records for any registered services.
257 tBTA_SERVICE_MASK services; local
262 /* get services of all other registered servers */
277 services = p_scb->reg_services >> BTA_HSP_SERVICE_ID
    [all...]
  /frameworks/base/services/core/jni/
Android.mk 1 # This file is included by the top level services directory to collect source
34 frameworks/base/services \
37 frameworks/native/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;
  /cts/tests/tests/print/src/android/print/cts/services/
StubbablePrintService.java 17 package android.print.cts.services;
  /external/chromium_org/mojo/services/native_viewport/
native_viewport.h 25 namespace services { namespace in namespace:mojo
59 } // namespace services
native_viewport_stub.cc 5 #include "mojo/services/native_viewport/native_viewport.h"
10 namespace services { namespace in namespace:mojo
49 } // namespace services
  /external/chromium_org/mojo/shell/android/
library_loader.cc 10 #include "mojo/services/native_viewport/native_viewport_android.h"
18 { "NativeViewportAndroid", mojo::services::NativeViewportAndroid::Register },
  /frameworks/av/services/audioflinger/tests/
Android.mk 27 frameworks/av/services/audioflinger
52 frameworks/av/services/audioflinger
  /packages/apps/Camera2/src/com/android/camera/processing/
ProcessingTask.java 63 * @param services the available {@code CameraServices}
67 public ProcessingResult process(Context context, CameraServices services,
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyGlobals.java 17 package com.android.services.telephony;
25 * Singleton entry point for the telephony-services app. Initializes ongoing systems relating to
  /frameworks/base/policy/src/com/android/internal/policy/impl/
EnableAccessibilityController.java 137 List<AccessibilityServiceInfo> services = new ArrayList<AccessibilityServiceInfo>(); local
138 services.addAll(AccessibilityManager.getInstance(context)
140 Iterator<AccessibilityServiceInfo> iterator = services.iterator();
147 return services;
216 List<AccessibilityServiceInfo> services = getInstalledSpeakingAccessibilityServices( local
218 if (services.isEmpty()) {
230 AccessibilityServiceInfo service = services.get(0);
235 final int serviceCount = services.size();
237 AccessibilityServiceInfo candidate = services.get(i);
257 // 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/internal/
ftserv.h 5 /* The FreeType services (specification only). */
20 /* Each module can export one or more `services'. Each service is */
    [all...]
  /external/pdfium/core/include/thirdparties/freetype/freetype/internal/
ftserv.h 5 /* The FreeType services (specification only). */
20 /* Each module can export one or more `services'. Each service is */
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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 20 services.c \
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 59 * Cache of registered services. This cache is lazily built by interrogating
65 * The services are referred to by type V and are made available via the
91 public Map<V, ServiceInfo<V>> services = null; field in class:RegisteredServicesCache.UserServices
95 UserServices<V> services = mUserServices.get(userId); local
96 if (services == null) {
97 services = new UserServices<V>();
98 mUserServices.put(userId, services);
100 return services;
104 * This file contains the list of known services. We would like to maintain this forever
126 // Load persisted services from dis
    [all...]

Completed in 1477 milliseconds

1 23 4 5 6 7 8 91011>>