/frameworks/ml/bordeaux/service/ |
D | Android.mk | 9 src/android/bordeaux/services/IBordeauxServiceCallback.aidl \ 10 src/android/bordeaux/services/IAggregatorManager.aidl \ 11 src/android/bordeaux/services/ILearning_MulticlassPA.aidl \ 12 src/android/bordeaux/services/IPredictor.aidl \ 13 src/android/bordeaux/services/ILearning_StochasticLinearRanker.aidl \ 14 src/android/bordeaux/services/IBordeauxService.aidl \ 33 src/android/bordeaux/services/IntFloat.java \ 34 src/android/bordeaux/services/StringFloat.java \ 35 src/android/bordeaux/services/StringString.java \ 36 src/android/bordeaux/services/BordeauxClassifier.java \ [all …]
|
/frameworks/native/cmds/dumpsys/ |
D | dumpsys.cpp | 40 Vector<String16> services; in main() local 47 services = sm->listServices(); in main() 48 services.sort(sort_func); in main() 51 services.add(String16(argv[1])); in main() 57 const size_t N = services.size(); in main() 64 sp<IBinder> service = sm->checkService(services[i]); in main() 66 aout << " " << services[i] << endl; in main() 76 sp<IBinder> service = sm->checkService(services[i]); in main() 81 aout << "DUMP OF SERVICE " << services[i] << ":" << endl; in main() 86 << ") " << services[i] << endl; in main() [all …]
|
/frameworks/base/docs/html/google/play-services/ |
D | games.jd | 15 Make your games social with Google Play game services. Add achievements, leaderboards, 16 real-time multiplayer, and other popular features using the Google Play game services SDK. 21 href="https://developers.google.com/games/services/">developers.google.com/games/services</a> 22 for more information about integrating game services into your app. 34 …<a class="external-link" href="https://developers.google.com/games/services/android/achievements">… 40 against other players worldwide. Google Play game services automatically maintains daily, 42 …href="https://developers.google.com/games/services/android/leaderboards">Build leaderboards</a></p> 49 class="external-link" href="https://developers.google.com/games/services/android/cloudsave">Save 54 You can use Google Play game services to invite game participants or auto-match players 56 href="https://developers.google.com/games/services/android/multiplayer">Develop real-time [all …]
|
D | index.jd | 18 With Google Play services, your app can take advantage 33 <p>Google Play services provides you with easy access to Google services and is tightly 41 <p>All products in Google Play services share a common authorization API 44 to Google services.</p> 51 app automatically receive updates to Google Play services. Enhance 52 your app with the most recent version of Google Play services without worrying 58 <p>To start integrating Google Play services into your app, 59 follow the <a href="/google/play-services/setup.html">Setup</a> guide.</p> 66 <h4 id="client-lib">The Google Play services client library</h4> 69 services and allows you to obtain authorization from users to gain access [all …]
|
D | setup.jd | 6 Play services APIs</a>, you must download the Google Play services SDK 10 <p>To test your app when using the Google Play services SDK, you must use either:</p> 24 <p>To install the Google Play services SDK for development:</p> 37 <li>Install the Google Play services SDK. 39 <b>Google Play services</b>, and install it.</p> 40 <p>The Google Play services SDK is saved in your Android SDK environment at 49 Google APIs platform include Google Play services.</p> 51 <li>Make a copy of the Google Play services library project. 65 <p>To set up a project to use the Google Play services SDK:</p> 100 <p>Once you have the Google Play services library project added to your app project, [all …]
|
D | id.jd | 13 resettable ID for advertising, provided by Google Play services. It gives 42 <h4>1. Get the Google Play services SDK</h4> 43 <p>The advertising ID APIs are part of the Google Play services platform.</p> 44 <p>To get started, <a href="{@docRoot}google/play-services/setup.html">set up</a> 45 the Google Play services SDK. </p> 48 …<p>Once you've installed the Google Play services package, review the <a href="#get_started">overv… 65 provided in Google Play services. 73 to apps through a Google Play services API. 86 Google Play services APIs expose the user's advertising ID as a string format of UUID, 94 <li>The advertising ID APIs are supported in Google Play services 4.0+</li> [all …]
|
D | ads.jd | 2 page.tags="Ads","monetization", "AdMob", "Google Play services" 20 ad features and capabilities through Google Play services, without having to 39 …<p>The Google Mobile Ads SDK is part of Google Play services, so you can take advantage of features 40 and capabilities in each new release of Google Play services, without needing to update your 61 <h4>1. Get the Google Play services SDK</h4> 62 <p>The Google Mobile Ads APIs are part of the Google Play services platform.</p> 63 <p>To get started, <a href="{@docRoot}google/play-services/setup.html">set up</a> 64 the Google Play services SDK.</p> 67 … <p>Once you've installed the Google Play services package, the Google Mobile Ads sample is located 68 in <code><android-sdk>/extras/google-play-services/samples/ads</code> and shows you how to
|
/frameworks/base/core/java/android/view/accessibility/ |
D | AccessibilityManager.java | 308 List<ServiceInfo> services = new ArrayList<ServiceInfo>(); in getAccessibilityServiceList() local 312 services.add(info.getResolveInfo().serviceInfo); in getAccessibilityServiceList() 314 return Collections.unmodifiableList(services); in getAccessibilityServiceList() 323 List<AccessibilityServiceInfo> services = null; in getInstalledAccessibilityServiceList() local 325 services = mService.getInstalledAccessibilityServiceList(mUserId); in getInstalledAccessibilityServiceList() 327 Log.i(LOG_TAG, "Installed AccessibilityServices " + services); in getInstalledAccessibilityServiceList() 332 return Collections.unmodifiableList(services); in getInstalledAccessibilityServiceList() 350 List<AccessibilityServiceInfo> services = null; in getEnabledAccessibilityServiceList() local 352 services = mService.getEnabledAccessibilityServiceList(feedbackTypeFlags, mUserId); in getEnabledAccessibilityServiceList() 354 Log.i(LOG_TAG, "Installed AccessibilityServices " + services); in getEnabledAccessibilityServiceList() [all …]
|
/frameworks/base/core/java/android/content/pm/ |
D | RegisteredServicesCache.java | 91 public Map<V, ServiceInfo<V>> services = null; field in RegisteredServicesCache.UserServices 95 UserServices<V> services = mUserServices.get(userId); in findOrCreateUserLocked() local 96 if (services == null) { in findOrCreateUserLocked() 97 services = new UserServices<V>(); in findOrCreateUserLocked() 98 mUserServices.put(userId, services); in findOrCreateUserLocked() 100 return services; in findOrCreateUserLocked() 164 user.services = null; in invalidateCache() 171 if (user.services != null) { in dump() 172 fout.println("RegisteredServicesCache: " + user.services.size() + " services"); in dump() 173 for (ServiceInfo<?> info : user.services.values()) { in dump() [all …]
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/ |
D | AccessibilityManager.java | 108 List<ServiceInfo> services = null; in getAccessibilityServiceList() local 109 return Collections.unmodifiableList(services); in getAccessibilityServiceList() 115 List<AccessibilityServiceInfo> services = null; in getInstalledAccessibilityServiceList() local 116 return Collections.unmodifiableList(services); in getInstalledAccessibilityServiceList()
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
D | EnableAccessibilityController.java | 135 List<AccessibilityServiceInfo> services = new ArrayList<AccessibilityServiceInfo>(); in getInstalledSpeakingAccessibilityServices() local 136 services.addAll(AccessibilityManager.getInstance(context) in getInstalledSpeakingAccessibilityServices() 138 Iterator<AccessibilityServiceInfo> iterator = services.iterator(); in getInstalledSpeakingAccessibilityServices() 145 return services; in getInstalledSpeakingAccessibilityServices() 214 List<AccessibilityServiceInfo> services = getInstalledSpeakingAccessibilityServices( in enableAccessibility() local 216 if (services.isEmpty()) { in enableAccessibility() 228 AccessibilityServiceInfo service = services.get(0); in enableAccessibility() 233 final int serviceCount = services.size(); in enableAccessibility() 235 AccessibilityServiceInfo candidate = services.get(i); in enableAccessibility()
|
/frameworks/base/docs/html/distribute/googleplay/spotlight/ |
D | games.jd | 8 Play game services</a> is to allow developers to focus on what they’re good at 10 building on top of what Google is good at: mobile and cloud services. Integral 15 services unlocked, and are starting to see real results following their 42 services</li> 59 features from Google Play game services into one of their top titles, 67 <p>"The Google Play game services were straightforward and easy to implement. We 68 had been researching options for multiplayer services, so when Google Play game 69 services came out, it was an easy decision for us. Not only were they easy to 77 synchronization from the Google Play game services as well. Using the game 78 services in PBA Bowling Challenge was a huge success, enough so that we are now [all …]
|
/frameworks/av/media/mediaserver/ |
D | Android.mk | 33 frameworks/av/services/medialog \ 34 frameworks/av/services/audioflinger \ 35 frameworks/av/services/camera/libcameraservice
|
/frameworks/base/docs/html/guide/topics/ui/accessibility/ |
D | index.jd | 15 <li><a href="services.html"> 45 <p>Android provides accessibility features and services for helping these users navigate their 47 directional-pad navigation. Android application developers can take advantage of these services to 50 <p>Android developers can also build their own accessibility services, which can provide 52 modes. Accessibility services can provide these enhancements for all applications, a set of 70 <dt><strong><a href="{@docRoot}guide/topics/ui/accessibility/services.html"> 73 <dd>How to use API features to build services that make other applications more accessible for
|
/frameworks/base/docs/html/google/ |
D | index.jd | 22 <img src="{@docRoot}images/google/google-services.png" alt="" width="340" height="193" /> 27 <p itemprop="description">Google offers a variety of services that help you 31 <p>Although these Google services are not included in the Android platform, they are 32 supported by most Android-powered devices. When using these services, you can 34 or higher, and some services support even more devices.</p> 50 <h4><a href="{@docRoot}google/play-services/maps.html" 62 <h4><a href="{@docRoot}google/play-services/plus.html" 115 <h4><a href="{@docRoot}google/play-services/wallet.html" 117 <p>Provide fast and easy checkout in your app when selling physical goods and services. 141 <h4><a href="{@docRoot}google/play-services/ads.html"
|
/frameworks/base/docs/html/training/location/ |
D | retrieve-current.jd | 10 <li><a href="#CheckServices">Check for Google Play services</a></li> 19 <a href="{@docRoot}google/play-services/setup.html">Setup Google Play Services SDK</a> 46 <a href="{@docRoot}google/play-services/setup.html">Setup</a> section in the Google Play 47 services guide. 79 Location Services is part of the Google Play services APK. Since it's hard to anticipate the 90 user to correct the problem, in which case Google Play services may send a result back to your 95 Since you usually need to check for Google Play services in more than one place in your code, 98 Play services: 105 * Define a request code to send to Google Play services 133 * by Google Play services [all …]
|
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/ |
D | WifiP2pUpnpServiceInfo.java | 72 String device, List<String> services) { in newInstance() argument 83 if (services != null) { in newInstance() 84 for (String service:services) { in newInstance()
|
/frameworks/base/docs/html/training/connect-devices-wirelessly/ |
D | index.jd | 32 seek out a nearby device running services with which it can communicate. 39 describes the NSD API for discovering available services and the Wi-Fi 42 combination to detect the services offered by a device and connect to the 49 <dd>Learn how to broadcast services offered by your own application, discover 50 services offered on the local network, and use NSD to determine the connection 58 <dd>Learn how to discover services published by nearby devices without being
|
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
D | ILearning_MulticlassPA.aidl | 17 package android.bordeaux.services; 24 import android.bordeaux.services.IntFloat;
|
D | IPredictor.aidl | 17 package android.bordeaux.services; 19 import android.bordeaux.services.StringFloat;
|
D | IBordeauxService.aidl | 17 package android.bordeaux.services; 19 import android.bordeaux.services.IBordeauxServiceCallback;
|
D | ILearning_StochasticLinearRanker.aidl | 17 package android.bordeaux.services; 24 import android.bordeaux.services.StringFloat;
|
D | IAggregatorManager.aidl | 17 package android.bordeaux.services; 19 import android.bordeaux.services.StringString;
|
D | BordeauxClassifier.java | 17 package android.bordeaux.services; 19 import android.bordeaux.services.ILearning_MulticlassPA; 20 import android.bordeaux.services.IntFloat;
|
/frameworks/base/docs/html/training/id-auth/ |
D | index.jd | 16 <li>Experience with <a href="{@docRoot}guide/components/services.html">Services</a></li> 33 devices know who your user is, what services they have access to, and where they 43 <li>Gain permission to access the user's online data via services like 46 back-end services 57 <dd> Use OAuth2 to help users get permission to access web services without needing to type in a
|