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

1 2 3 4 5 6 78 91011

  /frameworks/base/services/java/com/android/server/accessibility/
AccessibilityManagerService.java 122 // when that accessibility services are bound.
244 // We have to reload the installed services since some services may
271 // Update the enabled services setting.
275 // Update the touch exploration granted services setting.
443 List<Service> services = userState.mBoundServices; local
447 final int serviceCount = services.size();
449 Service service = services.get(i);
460 CopyOnWriteArrayList<Service> services; local
468 services = getUserStateLocked(resolvedUserId).mBoundServices
1077 List<Service> services = userState.mBoundServices; local
    [all...]
  /external/bluetooth/bluedroid/stack/btm/
btm_ble_gap.c 799 /* services */
801 p_data && p_data->services.num_service != 0 &&
802 p_data->services.p_uuid)
804 if (p_data->services.num_service * 2 > (len - 2))
812 cp_len = p_data->services.num_service;
818 UINT16_TO_STREAM(p, *(p_data->services.p_uuid + i));
    [all...]
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_main.c 444 UINT8 bta_ag_service_to_idx(tBTA_SERVICE_MASK services)
446 if (services & BTA_HFP_SERVICE_MASK)
    [all...]
  /external/chromium_org/chromeos/dbus/
shill_manager_client_stub.cc 400 // If visible, add to Services and notify if new.
506 // Remove disabled services from the list.
544 scoped_ptr<base::ListValue> services(GetEnabledServiceList(property));
547 OnPropertyChanged(property, *(services.get())));
600 // May affect available services
  /external/chromium_org/sandbox/
sandbox_services.target.darwin-arm.mk 26 sandbox/linux/services/broker_process.cc
sandbox_services.target.darwin-mips.mk 26 sandbox/linux/services/broker_process.cc
sandbox_services.target.darwin-x86.mk 26 sandbox/linux/services/broker_process.cc
sandbox_services.target.linux-arm.mk 26 sandbox/linux/services/broker_process.cc
sandbox_services.target.linux-mips.mk 26 sandbox/linux/services/broker_process.cc
sandbox_services.target.linux-x86.mk 26 sandbox/linux/services/broker_process.cc
  /external/chromium_org/v8/src/extensions/i18n/
globals.js 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * List of available services.
  /external/bluetooth/bluedroid/stack/include/
btm_ble_api.h 278 tBTM_BLE_SERVICE services; /* services */ member in struct:__anon3758
    [all...]
  /frameworks/base/core/java/android/app/
IApplicationThread.java 96 Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services,
ApplicationThreadNative.java 284 HashMap<String, IBinder> services = data.readHashMap(null); local
290 services, coreSettings);
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
ClusterManager.java 17 package android.bordeaux.services;
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterService.java 213 //Check if all services are stopped if so, do cleanup
225 if (DBG) Log.d(TAG, "All profile services stopped...");
231 //Check if all services are started if so, update state
243 if (DBG) Log.d(TAG, "All profile services started.");
300 //Start profile services
302 //Startup all profile services
305 if (DBG) {debugLog("processStart(): Profile Services alreay started");}
320 if (DBG) {debugLog("stopProfileServices(): No profiles services to stop or already stopped.");}
427 private void setProfileServiceState(Class[] services, int state) {
440 for (int i=0; i <services.length;i++)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
ExternalAccountType.java 179 * which account type, so this method looks through all services in the package, and just
193 for (ServiceInfo serviceInfo : packageInfo.services) {
  /packages/services/Telephony/common/src/com/android/services/telephony/common/
Call.java 17 package com.android.services.telephony.common;
  /frameworks/base/services/java/com/android/server/
TextServicesManagerService.java 181 final List<ResolveInfo> services = pm.queryIntentServicesAsUser( local
184 final int N = services.size();
186 final ResolveInfo ri = services.get(i);
268 Slog.w(TAG, "no available spell checker services found");
658 pw.println("Current Text Services Manager state:");
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ProcessStatsService.java 146 ArrayMap<String, ProcessStats.ServiceState> services = pkg.mServices;
147 for (int k=0; k<services.size(); k++) {
148 ProcessStats.ServiceState service = services.valueAt(k);
575 pw.println(" --active: only show currently active processes/services.");
    [all...]
  /packages/services/Telephony/src/com/android/phone/
CallModeler.java 34 import com.android.services.telephony.common.Call;
35 import com.android.services.telephony.common.Call.Capabilities;
36 import com.android.services.telephony.common.Call.State;
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 372 int N = p.services.size();
375 pi.services = new ServiceInfo[N];
379 if (p.services.get(i).info.enabled) num++;
381 pi.services = new ServiceInfo[num];
384 final Service service = p.services.get(i);
387 pi.services[j++] = generateServiceInfo(p.services.get(i), flags,
3456 public final ArrayList<Service> services = new ArrayList<Service>(0); field in class:PackageParser.Package
    [all...]
  /external/chromium_org/chrome/browser/chromeos/cros/
network_library_impl_base.cc 282 // Use shill's ordering of the services to determine which type of
    [all...]
network_library_impl_base.h 56 // Called from DeleteRememberedNetwork for VPN services.
231 ServiceList services; member in struct:chromeos::NetworkLibraryImplBase::NetworkProfile
364 // A list of services that we are awaiting updates for.
403 // The path of the active profile (for retrieving remembered services).
  /packages/apps/InCallUI/src/com/android/incallui/
CallButtonFragment.java 34 import com.android.services.telephony.common.AudioMode;

Completed in 1288 milliseconds

1 2 3 4 5 6 78 91011