HomeSort by relevance Sort by last modified time
    Searched refs:services (Results 76 - 100 of 261) sorted by null

1 2 34 5 6 7 8 91011

  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsDetail.java 144 mServicesParent = (ViewGroup)mRootView.findViewById(R.id.services);
247 ArrayList<ProcStatsEntry.Service> services = local
249 Collections.sort(services, sServiceCompare);
250 servicePkgs.add(services);
259 ArrayList<ProcStatsEntry.Service> services = servicePkgs.get(ip); local
261 addPackageHeaderItem(mServicesParent, services.get(0).mPackage);
263 for (int is=0; is<services.size(); is++) {
264 ProcStatsEntry.Service service = services.get(is);
  /packages/services/Telephony/
Android.mk 9 com.android.services.telephony.common \
  /build/target/product/
core_base.mk 71 PRODUCT_BOOT_JARS := core:conscrypt:okhttp:core-junit:bouncycastle:ext:framework:framework2:telephony-common:voip-common:mms-common:android.policy:services:apache-xml:webviewchromium
core_minimal.mk 60 PRODUCT_BOOT_JARS := core:conscrypt:okhttp:core-junit:bouncycastle:ext:framework:framework2:android.policy:services:apache-xml:webviewchromium
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
Learning_MulticlassPA.java 17 package android.bordeaux.services;
AggregatorManager.java 17 package android.bordeaux.services;
20 import android.bordeaux.services.StringString;
BordeauxSessionManager.java 17 package android.bordeaux.services;
19 import android.bordeaux.services.IBordeauxLearner.ModelChangeCallback;
Learning_StochasticLinearRanker.java 17 package android.bordeaux.services;
20 import android.bordeaux.services.IBordeauxLearner.ModelChangeCallback;
Predictor.java 17 package android.bordeaux.services;
30 import android.bordeaux.services.FeatureAssembly;
  /frameworks/native/cmds/service/
service.cpp 115 Vector<String16> services = sm->listServices(); local
116 aout << "Found " << services.size() << " services:" << endl;
117 for (unsigned i = 0; i < services.size(); i++) {
118 String16 name = services[i];
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 65 Set<Provider.Service> services = provider.getServices(); local
66 assertNotNull(services);
67 assertFalse(services.isEmpty());
69 for (Provider.Service service : services) {
  /packages/apps/InCallUI/src/com/android/incallui/
AudioModeProvider.java 21 import com.android.services.telephony.common.AudioMode;
CallHandlerService.java 25 import com.android.services.telephony.common.AudioMode;
26 import com.android.services.telephony.common.Call;
27 import com.android.services.telephony.common.ICallCommandService;
28 import com.android.services.telephony.common.ICallHandlerService;
  /development/apps/Development/src/com/android/development/
PackageSummary.java 165 LinearLayout services = (LinearLayout)findViewById(R.id.services); local
202 if (info.services != null) {
203 final int N = info.services.length;
205 ServiceInfo si = info.services[i];
209 services.addView(view, lp);
212 services.setVisibility(View.GONE);
  /frameworks/base/services/java/com/android/server/print/
UserState.java 235 // They are visible only to print services.
249 // They are visible only to print services.
265 // They are visible only to print services.
349 // If services have created session, just add the observer.
370 // No services - nothing to do.
387 // No services - nothing to do.
403 // No services - nothing to do.
419 // No services - nothing to do.
435 // No services - nothing to do.
498 // No services - nothing to do
929 List<RemotePrintService> services = new ArrayList<RemotePrintService>( local
984 List<RemotePrintService> services = new ArrayList<RemotePrintService>( local
1007 List<RemotePrintService> services = new ArrayList<RemotePrintService>( local
1129 List<RemotePrintService> services = new ArrayList<RemotePrintService>( local
1463 List<RemotePrintService> services = (List<RemotePrintService>) message.obj; local
1468 List<RemotePrintService> services = (List<RemotePrintService>) message.obj; local
1474 List<RemotePrintService> services = (List<RemotePrintService>) args.arg1; local
1481 List<RemotePrintService> services = (List<RemotePrintService>) message.obj; local
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
HostEmulationManager.java 172 if (resolveInfo == null || resolveInfo.services.size() == 0) {
199 for (ApduServiceInfo service : resolveInfo.services) {
207 // We have no default, and either one or more services.
213 launchResolver((ArrayList<ApduServiceInfo>)resolveInfo.services, null, category);
413 void launchResolver(ArrayList<ApduServiceInfo> services, ComponentName failedComponent,
417 intent.putParcelableArrayListExtra(AppChooserActivity.EXTRA_APDU_SERVICES, services);
532 if (resolveInfo.services.size() > 0) {
533 final ArrayList<ApduServiceInfo> services = new ArrayList<ApduServiceInfo>(); local
534 for (ApduServiceInfo service : resolveInfo.services) {
536 services.add(service)
    [all...]
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_int.h 166 tBTA_SERVICE_MASK services; member in struct:__anon2816
177 tBTA_SERVICE_MASK services; member in struct:__anon2817
249 tBTA_SERVICE_MASK reg_services; /* services specified in register API */
250 tBTA_SERVICE_MASK open_services; /* services specified in open API */
345 extern UINT8 bta_ag_service_to_idx(tBTA_SERVICE_MASK services);
365 extern void bta_ag_start_servers(tBTA_AG_SCB *p_scb, tBTA_SERVICE_MASK services);
366 extern void bta_ag_close_servers(tBTA_AG_SCB *p_scb, tBTA_SERVICE_MASK services);
  /external/smack/src/org/jivesoftware/smackx/
MultipleRecipientManager.java 50 private static Cache<String, String> services = new Cache<String, String>(100, 24 * 60 * 60 * 1000); field in class:MultipleRecipientManager
285 String serviceAddress = (String) services.get(serviceName);
287 synchronized (services) {
288 serviceAddress = (String) services.get(serviceName);
315 services.put(serviceName, serviceAddress == null ? "" : serviceAddress);
  /packages/apps/Contacts/tests/src/com/android/contacts/activities/
PeopleActivityTest.java 92 InjectedServices services = new InjectedServices(); local
93 services.setContentResolver(mContext.getContentResolver());
94 services.setSharedPreferences(new MockSharedPreferences());
95 services.setSystemService(ContactPhotoManager.CONTACT_PHOTO_SERVICE,
106 ContactsApplication.injectServices(services);
  /packages/services/Telephony/src/com/android/phone/
CallHandlerServiceProxy.java 41 import com.android.services.telephony.common.AudioMode;
42 import com.android.services.telephony.common.Call;
43 import com.android.services.telephony.common.ICallHandlerService;
352 final List<ResolveInfo> services = packageManger.queryIntentServices(serviceIntent, local
357 for (int i = 0; i < services.size(); i++) {
358 final ResolveInfo info = services.get(i);
  /external/chromium_org/third_party/libxslt/linux/
xslt-config 104 all_flags="$all_flags $services $the_libs"
  /external/chromium_org/third_party/libxslt/
xslt-config.in 104 all_flags="$all_flags $services $the_libs"
  /external/libsepol/
Android.mk 35 src/services.c \
  /frameworks/base/packages/Keyguard/
Android.mk 21 LOCAL_JAVA_LIBRARIES := services
  /libcore/crypto/src/test/java/org/conscrypt/
SignatureTest.java 97 Set<Provider.Service> services = p.getServices(); local
98 for (Provider.Service service : services) {

Completed in 738 milliseconds

1 2 34 5 6 7 8 91011