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

12 3 4 5 6 7 8 91011>>

  /frameworks/base/docs/html/training/id-auth/
index.jd 17 <li>Experience with <a href="{@docRoot}guide/components/services.html">Services</a></li>
34 devices know who your user is, what services they have access to, and where they
44 <li>Gain permission to access the user's online data via services like
47 back-end services
57 <dt><b><a href="authenticate.html">Authenticating to OAuth2 Services</a></b></dt>
58 <dd> Use OAuth2 to help users get permission to access web services without needing to type in a
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
Services.java 40 public class Services {
46 private static final Map<String, Provider.Service> services field in class:Services
49 // Avoids similar provider/services iteration in SecureRandom constructor
69 // Load statically registered providers and init Services Info
155 * Adds information about provider services into HashMap.
166 if (!services.containsKey(key)) {
167 services.put(key, serv);
171 if (!services.containsKey(key)) {
172 services.put(key, serv);
180 * Updates services hashtable for all registered provider
    [all...]
  /frameworks/base/docs/html/training/connect-devices-wirelessly/
index.jd 33 seek out a nearby device running services with which it can communicate.
40 describes the NSD API for discovering available services and the Wi-Fi
43 combination to detect the services offered by a device and connect to the
50 <dd>Learn how to broadcast services offered by your own application, discover
51 services offered on the local network, and use NSD to determine the connection
59 <dd>Learn how to discover services published by nearby devices without being
  /external/chromium/chrome/browser/profiles/
profile_keyed_service.h 11 // Many services that hang off Profile have a two-pass shutdown. Many
13 // all services will need this, so there's a default implementation. Only once
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
ILearning_MulticlassPA.aidl 17 package android.bordeaux.services;
24 import android.bordeaux.services.IntFloat;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
LocalServices.java 35 List<String> services = new ArrayList<String>(); local
36 services.add("urn:schemas-upnp-org:service:AVTransport:1");
37 services.add("urn:schemas-upnp-org:service:ConnectionManager:1");
41 services);
  /frameworks/base/core/java/android/content/pm/
package.html 5 permissions, services, signatures, and providers.</p>
  /frameworks/base/packages/SystemUI/
Android.mk 9 LOCAL_JAVA_LIBRARIES := services
  /frameworks/base/services/tests/servicestests/
Android.mk 14 LOCAL_JAVA_LIBRARIES := android.test.runner services
  /frameworks/ml/bordeaux/service/
AndroidManifest.xml 11 <service android:name=".services.BordeauxService"
15 <action android:name="android.bordeaux.services.IBordeauxService" />
18 <action android:name="android.bordeaux.services.BORDEAUX_SERVICE" />
  /system/core/adb/
OVERVIEW.TXT 28 services and devices.
36 few services for clients that run on the host.
59 4. Services
61 There are essentially two kinds of services that a client can talk to.
63 Host Services:
64 these services run within the ADB Server and thus do not need to
67 state. They are a few couple other services though.
69 Local Services:
70 these services either run within the adbd daemon, or are started by
119 The file SERVICES.TXT lists all services currently implemented by ADB
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
AccessibilityTestRunner.java 36 * installing a package with some accessibility services, enabling
37 * these services, running the tests, disabling the services, and removing
38 * the accessibility services package.
43 "android.view.accessibility.services";
46 "android.view.accessibility.services.SpeakingAccessibilityService";
49 "android.view.accessibility.services.VibratingAccessibilityService";
  /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/apache-harmony/support/src/test/resources/tests/resources/ServiceLoader/
hyts_services.jar 
hyts_services2.jar 
  /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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
bugTools.jar 
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityManager.java 240 * Requests feedback interruption from all accessibility services.
249 Log.i(LOG_TAG, "Requested interrupt from all services");
252 Log.e(LOG_TAG, "Error while requesting interrupt from all services. ", re);
257 * Returns the {@link ServiceInfo}s of the installed accessibility services.
266 List<ServiceInfo> services = new ArrayList<ServiceInfo>(); local
270 services.add(info.getResolveInfo().serviceInfo);
272 return Collections.unmodifiableList(services);
276 * Returns the {@link AccessibilityServiceInfo}s of the installed accessibility services.
281 List<AccessibilityServiceInfo> services = null; local
283 services = mService.getInstalledAccessibilityServiceList()
308 List<AccessibilityServiceInfo> services = null; local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/fortress/
EngineTest.java 29 import org.apache.harmony.security.fortress.Services;
41 Services.updateServiceInfo();
49 Services.initServiceInfo(p);
68 Services.initServiceInfo(p);
81 Services.initServiceInfo(p);
99 Services.initServiceInfo(p);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
AccessibilityManager.java 95 * Requests interruption of the accessibility feedback from all accessibility services.
101 * Returns the {@link ServiceInfo}s of the installed accessibility services.
108 List<ServiceInfo> services = null; local
109 return Collections.unmodifiableList(services);
115 List<AccessibilityServiceInfo> services = null; local
116 return Collections.unmodifiableList(services);
  /bionic/libc/tools/
genserv.py 8 usage: genserv < /etc/services > netbsd/net/services.h
69 services = parse(sys.stdin) variable
71 for s in services:
  /development/samples/Support4Demos/src/com/example/android/supportv4/accessibility/
_index.html 11 about enabled accessibility services.</dd>
  /external/apache-harmony/support/src/test/resources/tests/resources/manifest/
hyts_MANIFEST.MF 5 Import-Package: com.ibm.ive.eccomm.client.services.log,
6 com.ibm.ive.eccomm.client.services.registry,
19 Export-Package: com.ibm.ive.eccomm.client.services.authentication; specification-version=1.0.0,
22 com.ibm.ive.eccomm.client.services.registry.store; specification-version=1.0.0
  /external/chromium/chrome/browser/sync/protocol/
service_constants.h 12 // corresponding services. It might be interesting to make these updateable
  /external/chromium/chrome/common/net/gaia/
gaia_constants.h 16 // Gaia services for requesting

Completed in 4663 milliseconds

12 3 4 5 6 7 8 91011>>