Searched refs:services (Results 51 - 75 of 155) sorted by relevance

1234567

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxAggregatorManager.java17 package android.bordeaux.services;
19 import android.bordeaux.services.IAggregatorManager;
20 import android.bordeaux.services.StringString;
H A DBordeauxRanker.java17 package android.bordeaux.services;
19 import android.bordeaux.services.ILearning_StochasticLinearRanker;
20 import android.bordeaux.services.StringFloat;
H A DAggregatorStorage.java17 package android.bordeaux.services;
H A DIntFloat.java1 package android.bordeaux.services;
H A DStringFloat.java1 package android.bordeaux.services;
H A DStringString.java1 package android.bordeaux.services;
H A DBordeauxPredictor.java17 package android.bordeaux.services;
19 import android.bordeaux.services.IPredictor;
/frameworks/base/core/java/android/os/
H A DServiceManagerNative.java156 ArrayList<String> services = new ArrayList<String>();
175 services.add(reply.readString());
179 String[] array = new String[services.size()];
180 services.toArray(array);
H A DSystemService.java25 * Controls and utilities for low-level {@code init} services.
129 * Wait until any of given services enters {@link State#STOPPED}.
131 public static void waitForAnyStopped(String... services) { argument
134 for (String service : services) {
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DPickFragment.java19 import static com.android.documentsui.services.FileOperationService.OPERATION_DELETE;
20 import static com.android.documentsui.services.FileOperationService.OPERATION_MOVE;
21 import static com.android.documentsui.services.FileOperationService.OPERATION_UNKNOWN;
34 import com.android.documentsui.services.FileOperationService.OpType;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
H A DResourceException.java17 package com.android.documentsui.services;
H A DJob.java17 package com.android.documentsui.services;
20 import static com.android.documentsui.services.FileOperationService.EXTRA_CANCEL;
21 import static com.android.documentsui.services.FileOperationService.EXTRA_DIALOG_TYPE;
22 import static com.android.documentsui.services.FileOperationService.EXTRA_JOB_ID;
23 import static com.android.documentsui.services.FileOperationService.EXTRA_OPERATION;
24 import static com.android.documentsui.services.FileOperationService.EXTRA_SRC_LIST;
25 import static com.android.documentsui.services.FileOperationService.OPERATION_UNKNOWN;
49 import com.android.documentsui.services.FileOperationService.OpType;
H A DDeleteJob.java17 package com.android.documentsui.services;
20 import static com.android.documentsui.services.FileOperationService.OPERATION_DELETE;
H A DMoveJob.java17 package com.android.documentsui.services;
20 import static com.android.documentsui.services.FileOperationService.OPERATION_MOVE;
/frameworks/base/services/core/
H A DAndroid.mk5 LOCAL_MODULE := services.core
20 LOCAL_JAVA_LIBRARIES := services.net telephony-common
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java67 * Cache of registered services. This cache is lazily built by interrogating
73 * The services are referred to by type V and are made available via the
98 Map<V, ServiceInfo<V>> services = null; field in class:RegisteredServicesCache.UserServices
110 UserServices<V> services = mUserServices.get(userId);
111 if (services == null) {
112 services = new UserServices<V>();
113 mUserServices.put(userId, services);
129 Log.w(TAG, "Error reading persistent services for user " + user.id, e);
137 return services;
174 // Don't regenerate the services ma
[all...]
H A DPackageInfo.java128 public ServiceInfo[] services; field in class:PackageInfo
310 dest.writeTypedArray(services, parcelableFlags | Parcelable.PARCELABLE_ELIDE_DUPLICATES);
359 services = source.createTypedArray(ServiceInfo.CREATOR);
381 propagateApplicationInfo(applicationInfo, services);
/frameworks/base/services/core/jni/
H A DAndroid.mk1 # This file is included by the top level services directory to collect source
43 frameworks/base/services \
47 frameworks/native/services \
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DTileServices.java120 final ArrayList<TileServiceManager> services;
122 services = new ArrayList<>(mServices.values());
124 final int N = services.size();
127 // Precalculate the priority of services for binding.
129 services.get(i).calculateBindPriority(currentTime);
132 Collections.sort(services, SERVICE_SORT);
137 services.get(i).setBindAllowed(true);
141 services.get(i).setBindAllowed(false);
/frameworks/base/services/core/java/com/android/server/policy/
H A DEnableAccessibilityController.java142 List<AccessibilityServiceInfo> services = new ArrayList<AccessibilityServiceInfo>();
143 services.addAll(AccessibilityManager.getInstance(context)
145 Iterator<AccessibilityServiceInfo> iterator = services.iterator();
152 return services;
282 List<AccessibilityServiceInfo> services =
284 if (services.isEmpty()) {
288 ServiceInfo serviceInfo = services.get(0).getResolveInfo().serviceInfo;
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/
H A DFileOperationServiceTest.java17 package com.android.documentsui.services;
19 import static com.android.documentsui.services.FileOperationService.OPERATION_COPY;
20 import static com.android.documentsui.services.FileOperations.createBaseIntent;
21 import static com.android.documentsui.services.FileOperations.createJobId;
32 import com.android.documentsui.services.Job.Listener;
H A DCopyJobTest.java17 package com.android.documentsui.services;
H A DDeleteJobTest.java17 package com.android.documentsui.services;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUIApplication.java63 * The classes of the stuff to start for each user. This is a subset of the services listed
82 // Set the application theme that is inherited by all services. Note that setting the
118 * Makes sure that all the SystemUI services are running. If they are already running, this is a
119 * no-op. This is needed to conditinally start all the services, as we only need to have it in
129 * Ensures that all the Secondary user SystemUI services are running. If they are already
130 * running, this is a no-op. This is needed to conditinally start all the services, as we only
139 private void startServicesIfNeeded(Class<?>[] services) { argument
153 Log.v(TAG, "Starting SystemUI services for user " +
155 final int N = services.length;
157 Class<?> cl = services[
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DVpnConfig.java77 List<ResolveInfo> services = pm.queryIntentServices(intent, 0 /* flags */);
78 if (services != null && services.size() == 1) {
81 return services.get(0).loadLabel(pm);

Completed in 493 milliseconds

1234567