Searched refs:services (Results 26 - 50 of 155) sorted by relevance

1234567

/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
H A DAndroid.mk24 $(TOPDIR)frameworks/av/services/audiopolicy/common/include \
25 $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/include \
26 $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/interface \
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
H A DAndroid.mk12 $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/include \
13 $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/interface \
14 $(TOPDIR)frameworks/av/services/audiopolicy/utilities/convert \
/frameworks/av/media/audioserver/
H A DAndroid.mk22 frameworks/av/services/audioflinger \
23 frameworks/av/services/audiopolicy \
24 frameworks/av/services/audiopolicy/common/managerdefinitions/include \
25 frameworks/av/services/audiopolicy/common/include \
26 frameworks/av/services/audiopolicy/engine/interface \
27 frameworks/av/services/audiopolicy/service \
28 frameworks/av/services/medialog \
29 frameworks/av/services/radio \
30 frameworks/av/services/soundtrigger \
/frameworks/av/services/audiopolicy/engineconfigurable/
H A DAndroid.mk19 $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/include \
20 $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/interface \
21 $(TOPDIR)frameworks/av/services/audiopolicy/engine/interface
36 $(TOPDIR)frameworks/av/services/audiopolicy/common/include
/frameworks/base/services/
H A DAndroid.mk3 # merge all required services into one jar
7 LOCAL_MODULE := services
18 # Services that will be built as part of services.jar
21 services := \ macro
36 # The convention is to name each service module 'services.$(module_name)'
37 LOCAL_STATIC_JAVA_LIBRARIES := $(addprefix services.,$(services))
65 # services that we depend on. This differs from the above condition
68 include $(patsubst %,$(LOCAL_PATH)/%/Android.mk,$(services))
/frameworks/base/services/net/
H A DAndroid.mk5 LOCAL_MODULE := services.net
/frameworks/av/services/audioflinger/tests/
H A Dbuild_and_run_all_unit_tests.sh11 pushd $ANDROID_BUILD_TOP/frameworks/av/services/audioflinger/
20 sh $ANDROID_BUILD_TOP/frameworks/av/services/audioflinger/tests/run_all_unit_tests.sh
H A DAndroid.mk18 frameworks/av/services/audioflinger
43 frameworks/av/services/audioflinger \
/frameworks/base/services/tests/servicestests/
H A DAndroid.mk16 services.core \
17 services.devicepolicy \
18 services.net \
19 services.usage \
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DAggregator.java17 package android.bordeaux.services;
H A DBordeauxClassifier.java17 package android.bordeaux.services;
19 import android.bordeaux.services.ILearning_MulticlassPA;
20 import android.bordeaux.services.IntFloat;
H A DMotionStatsAggregator.java17 package android.bordeaux.services;
/frameworks/native/cmds/cmd/
H A Dcmd.cpp63 aout << "cmd: no service specified; use -l to list all services" << endl;
68 Vector<String16> services = sm->listServices(); local
69 services.sort(sort_func);
70 aout << "Currently running services:" << endl;
72 for (size_t i=0; i<services.size(); i++) {
73 sp<IBinder> service = sm->checkService(services[i]);
75 aout << " " << services[i] << endl;
/frameworks/av/media/mediaserver/
H A DAndroid.mk35 frameworks/av/services/camera/libcameraservice \
36 frameworks/av/services/mediaresourcemanager \
/frameworks/av/services/audiopolicy/enginedefault/
H A DAndroid.mk14 $(TOPDIR)frameworks/av/services/audiopolicy/engine/interface
30 $(TOPDIR)frameworks/av/services/audiopolicy/common/include
/frameworks/av/services/mediaresourcemanager/test/
H A DAndroid.mk21 frameworks/av/services/mediaresourcemanager \
47 frameworks/av/services/mediaresourcemanager \
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUISecondaryUserService.java41 SystemUI[] services = ((SystemUIApplication) getApplication()).getServices();
43 for (SystemUI ui: services) {
51 for (SystemUI ui: services) {
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pUpnpServiceInfo.java64 * @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) {
71 newInstance(String uuid, String device, List<String> services) argument
/frameworks/native/cmds/dumpsys/
H A Ddumpsys.cpp46 " To dump all services.\n"
50 " -l: only list services, do not dump them\n"
52 " --skip SERVICES: dumps all services but SERVICES (comma-separated list)\n"
76 Vector<String16> services; local
135 services.add(String16(argv[i]));
143 (showListOnly && (!services.empty() || !skippedServices.empty()))) {
148 if (services.empty() || showListOnly) {
149 // gets all services
150 services = sm->listServices();
151 services
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
H A DFileOperations.java17 package com.android.documentsui.services;
24 import static com.android.documentsui.services.FileOperationService.EXTRA_CANCEL;
25 import static com.android.documentsui.services.FileOperationService.EXTRA_JOB_ID;
26 import static com.android.documentsui.services.FileOperationService.EXTRA_OPERATION;
27 import static com.android.documentsui.services.FileOperationService.EXTRA_SRC_LIST;
28 import static com.android.documentsui.services.FileOperationService.EXTRA_SRC_PARENT;
29 import static com.android.documentsui.services.FileOperationService.OPERATION_COPY;
30 import static com.android.documentsui.services.FileOperationService.OPERATION_DELETE;
31 import static com.android.documentsui.services.FileOperationService.OPERATION_MOVE;
46 import com.android.documentsui.services
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityManager.java345 * Requests feedback interruption from all accessibility services.
363 Log.i(LOG_TAG, "Requested interrupt from all services");
366 Log.e(LOG_TAG, "Error while requesting interrupt from all services. ", re);
371 * Returns the {@link ServiceInfo}s of the installed accessibility services.
380 List<ServiceInfo> services = new ArrayList<>();
384 services.add(info.getResolveInfo().serviceInfo);
386 return Collections.unmodifiableList(services);
390 * Returns the {@link AccessibilityServiceInfo}s of the installed accessibility services.
405 List<AccessibilityServiceInfo> services = null;
407 services
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/
H A DAndroid.mk33 $(TOPDIR)frameworks/av/services/audiopolicy/common/include \
34 $(TOPDIR)frameworks/av/services/audiopolicy \
35 $(TOPDIR)frameworks/av/services/audiopolicy/utilities \
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/
H A DServiceRecommendationPlugin.java37 protected ServiceRecommendationPlugin(Context context, int vendorStringID, VendorInfo vendorInfo, String[] services) { argument
41 mListener = new ServiceListener(context, this, services);
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/samsung/
H A DServiceRecommendationPlugin.java37 protected ServiceRecommendationPlugin(Context context, int vendorStringID, VendorInfo vendorInfo, String[] services) { argument
41 mListener = new ServiceListener(context, this, services);
/frameworks/opt/telephony/tests/telephonytests/
H A DAndroid.mk10 LOCAL_JAVA_LIBRARIES := android.test.runner telephony-common ims-common services.core

Completed in 1234 milliseconds

1234567