HomeSort by relevance Sort by last modified time
    Searched refs:service (Results 351 - 375 of 3439) sorted by null

<<11121314151617181920>>

  /hardware/interfaces/usb/1.0/default/
service.cpp 35 android::sp<IUsb> service = new Usb(); local
38 status_t status = service->registerAsService();
45 ALOGE("Cannot register USB HAL service");
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
SpiEngUtils.java 44 * @param service
47 public static Provider isSupport(String algorithm, String service) {
49 Provider[] provs = Security.getProviders(service.concat(".")
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetDeviceState.java 23 * Service availability indicator
25 * 0 - no service, no home/roam network is available
26 * 1 - presence of service, home/roam network available
45 HeadsetDeviceState(int service, int roam, int signal, int batteryCharge) {
46 mService = service;
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 47 * Provides Bluetooth Headset Client (HF Role) profile, as a service in the
81 // Setup the JNI service
85 Log.e(TAG, "AudioManager service doesn't exist?");
184 * Handlers for incoming service calls
215 HeadsetClientService service = getService(); local
216 if (service == null) {
219 return service.connect(device);
224 HeadsetClientService service = getService(); local
225 if (service == null) {
228 return service.disconnect(device)
233 HeadsetClientService service = getService(); local
242 HeadsetClientService service = getService(); local
251 HeadsetClientService service = getService(); local
260 HeadsetClientService service = getService(); local
269 HeadsetClientService service = getService(); local
278 HeadsetClientService service = getService(); local
287 HeadsetClientService service = getService(); local
296 HeadsetClientService service = getService(); local
316 HeadsetClientService service = getService(); local
325 HeadsetClientService service = getService(); local
334 HeadsetClientService service = getService(); local
343 HeadsetClientService service = getService(); local
352 HeadsetClientService service = getService(); local
361 HeadsetClientService service = getService(); local
371 HeadsetClientService service = getService(); local
380 HeadsetClientService service = getService(); local
389 HeadsetClientService service = getService(); local
398 HeadsetClientService service = getService(); local
407 HeadsetClientService service = getService(); local
416 HeadsetClientService service = getService(); local
425 HeadsetClientService service = getService(); local
434 HeadsetClientService service = getService(); local
    [all...]
  /packages/services/Car/car-lib/src/android/car/settings/
CarConfigurationManager.java 34 public CarConfigurationManager(IBinder service) {
35 mConfigurationService = ICarConfigurationManager.Stub.asInterface(service);
  /packages/services/Car/car-lib/src/android/car/vms/
IVmsPublisherClient.aidl 29 * the token it should use when calling the service.
31 oneway void setVmsPublisherService(in IBinder token, IVmsPublisherService service) = 0;
  /packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
MediaStateMonitor.java 123 MediaListener(MediaStateMonitor service) {
124 mServiceRef = new WeakReference<>(service);
129 MediaStateMonitor service = mServiceRef.get(); local
130 if (service != null) {
131 service.onPlaybackStateChanged(state);
137 MediaStateMonitor service = mServiceRef.get(); local
138 if (service != null) {
139 service.onMetadataChanged(metadata);
  /system/bt/binder/android/bluetooth/
IBluetoothProfileServiceConnection.aidl 28 void onServiceConnected(in ComponentName comp, in IBinder service);
  /system/bt/service/common/android/bluetooth/
bluetooth_gatt_service.h 20 #include "bluetooth/service.h"
32 class BluetoothGattService : public Parcelable, public ::bluetooth::Service {
35 BluetoothGattService(const ::bluetooth::Service& service)
36 : ::bluetooth::Service(service){}; // NOLINT(implicit)
39 : ::bluetooth::Service(includedService.handle(),
  /frameworks/base/core/java/android/bluetooth/
BluetoothHealth.java 36 * Service via IPC.
105 if (VDBG) Log.d(TAG, "Unbinding service...");
118 if (VDBG) Log.d(TAG, "Binding service...");
179 final IBluetoothHealth service = mService; local
180 if (service != null) {
182 result = service.registerAppConfiguration(config, wrapper);
187 Log.w(TAG, "Proxy not attached to service");
204 final IBluetoothHealth service = mService; local
205 if (service != null && isEnabled() && config != null) {
207 result = service.unregisterAppConfiguration(config)
233 final IBluetoothHealth service = mService; local
262 final IBluetoothHealth service = mService; local
291 final IBluetoothHealth service = mService; local
320 final IBluetoothHealth service = mService; local
350 final IBluetoothHealth service = mService; local
380 final IBluetoothHealth service = mService; local
412 final IBluetoothHealth service = mService; local
    [all...]
  /cts/hostsidetests/incident/src/com/android/server/cts/
PrintProtoTest.java 19 import android.service.print.ActivePrintServiceProto;
20 import android.service.print.CachedPrintJobProto;
21 import android.service.print.PrinterDiscoverySessionProto;
22 import android.service.print.PrintDocumentInfoProto;
23 import android.service.print.PrinterIdProto;
24 import android.service.print.PrinterInfoProto;
25 import android.service.print.PrintJobInfoProto;
26 import android.service.print.PrintServiceDumpProto;
27 import android.service.print.PrintSpoolerInternalStateProto;
28 import android.service.print.PrintSpoolerStateProto
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/adapter/
ResponseAdapter.java 17 package com.example.android.autofill.service.data.adapter;
21 import android.service.autofill.Dataset;
22 import android.service.autofill.FillResponse;
23 import android.service.autofill.SaveInfo;
27 import com.example.android.autofill.service.AuthActivity;
28 import com.example.android.autofill.service.RemoteViewsHelper;
29 import com.example.android.autofill.service.data.ClientViewMetadata;
30 import com.example.android.autofill.service.model.DatasetWithFilledAutofillFields;
31 import com.example.android.autofill.service.model.FieldType;
32 import com.example.android.autofill.service.model.FieldTypeWithHeuristics
    [all...]
  /frameworks/base/services/print/java/com/android/server/print/
RemotePrintService.java 47 import android.service.print.ActivePrintServiceProto;
58 * This class represents a remote print service. It abstracts away the binding
108 public void onServiceDied(RemotePrintService service);
185 // The service is dead and neither has active jobs nor discovery
186 // session, so ensure we are unbound since the service has no work.
202 // If the service has a printer discovery session
298 // The service is dead and neither has active jobs nor discovery
299 // session, so ensure we are unbound since the service has no work.
320 // If the service has no print jobs and no active discovery
620 public void onServiceConnected(ComponentName name, IBinder service) {
686 RemotePrintService service = mWeakService.get(); local
701 RemotePrintService service = mWeakService.get(); local
716 RemotePrintService service = mWeakService.get(); local
730 RemotePrintService service = mWeakService.get(); local
744 RemotePrintService service = mWeakService.get(); local
758 RemotePrintService service = mWeakService.get(); local
771 RemotePrintService service = mWeakService.get(); local
785 RemotePrintService service = mWeakService.get(); local
799 RemotePrintService service = mWeakService.get(); local
815 RemotePrintService service = mWeakService.get(); local
855 RemotePrintService service = mWeakService.get(); local
    [all...]
  /external/autotest/client/site_tests/network_ChromeCellularEndToEnd/
network_ChromeCellularEndToEnd.py 50 def _set_autoconnect(self, service, value=True):
53 @param service: Cellular service dictionary
62 ('"' + service['GUID'] + '"', properties))
66 def _is_cellular_network_connected(self, service):
69 @param service: Cellular service dict
76 ('"' + service['GUID'] + '"'))
91 """Find cellular service.
93 @return Cellular service dic
    [all...]
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
NotificationListenerServiceTest.java 19 import static android.service.notification.NotificationListenerService.Ranking
21 import static android.service.notification.NotificationListenerService.Ranking
23 import static android.service.notification.NotificationListenerService.Ranking
39 import android.service.notification.NotificationListenerService;
40 import android.service.notification.NotificationListenerService.Ranking;
41 import android.service.notification.NotificationRankingUpdate;
42 import android.service.notification.SnoozeCriterion;
43 import android.service.notification.StatusBarNotification;
63 TestListenerService service = new TestListenerService(); local
64 INotificationManager noMan = service.getNoMan()
76 TestListenerService service = new TestListenerService(); local
    [all...]
  /system/bt/stack/srvc/
srvc_battery.cc 170 * Description Instantiate a Battery service
179 LOG(ERROR) << "MAX battery service has been reached";
185 btgatt_db_element_t service[BA_MAX_ATTR_NUM] = {}; local
189 service[0].type = /* p_reg_info->is_pri */ BTGATT_DB_PRIMARY_SERVICE;
190 service[0].uuid = service_uuid;
194 service[1].type = BTGATT_DB_CHARACTERISTIC;
195 service[1].uuid = char_uuid;
196 service[1].properties = GATT_CHAR_PROP_BIT_READ;
198 service[1].properties |= GATT_CHAR_PROP_BIT_NOTIFY;
205 service[i].type = BTGATT_DB_DESCRIPTOR
    [all...]
  /frameworks/base/services/autofill/java/com/android/server/autofill/
AutofillManagerService.java 57 import android.service.autofill.FillEventHistory;
58 import android.service.autofill.UserData;
94 * Entry point service for autofill management.
96 * <p>This service provides the {@link IAutoFillManager} implementation and keeps a list of
176 // Hookup with UserManager to disable service when necessary.
332 * Gets the service instance for an user.
334 * @return service instance.
341 AutofillManagerServiceImpl service = mServicesCache.get(resolvedUserId); local
342 if (service == null) {
343 service = new AutofillManagerServiceImpl(mContext, mLock, mRequestsHistory
372 AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
401 AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
556 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
577 AutofillManagerServiceImpl service = getServiceForUserLocked(userId); local
849 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
862 final AutofillManagerServiceImpl service = getServiceForUserLocked(userId); local
871 final AutofillManagerServiceImpl service = getServiceForUserLocked(userId); local
896 final AutofillManagerServiceImpl service = getServiceForUserLocked(userId); local
908 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
924 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
940 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
957 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
971 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
987 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
1004 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
1021 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
1040 final AutofillManagerServiceImpl service = mServicesCache.get(userId); local
1056 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
1073 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
1093 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
1105 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
1117 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
1129 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
1148 final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); local
1165 final AutofillManagerServiceImpl service = peekServiceForUserLocked( local
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AuthActivity.java 16 package com.example.android.autofill.service;
25 import android.service.autofill.Dataset;
26 import android.service.autofill.FillResponse;
34 import com.example.android.autofill.service.data.ClientViewMetadata;
35 import com.example.android.autofill.service.data.ClientViewMetadataBuilder;
36 import com.example.android.autofill.service.data.DataCallback;
37 import com.example.android.autofill.service.data.adapter.DatasetAdapter;
38 import com.example.android.autofill.service.data.adapter.ResponseAdapter;
39 import com.example.android.autofill.service.data.source.DefaultFieldTypesSource;
40 import com.example.android.autofill.service.data.source.local.DefaultFieldTypesLocalJsonSource
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PbapClientService.java 147 * Handler for incoming service calls
176 PbapClientService service = getService(); local
180 if (service == null) {
181 Log.e(TAG, "PbapClient Binder connect no service");
184 return service.connect(device);
189 PbapClientService service = getService(); local
190 if (service == null) {
193 return service.disconnect(device);
198 PbapClientService service = getService(); local
199 if (service == null)
207 PbapClientService service = getService(); local
216 PbapClientService service = getService(); local
225 PbapClientService service = getService(); local
234 PbapClientService service = getService(); local
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
InstrumentedAutoFillServiceCompatMode.java 18 import android.service.autofill.AutofillService;
  /cts/tests/tests/appwidget/src/android/appwidget/cts/service/
MyAppWidgetService.java 17 package android.appwidget.cts.service;
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
MyAutofillService.java 16 package com.example.android.autofill.service;
22 import android.service.autofill.AutofillService;
23 import android.service.autofill.FillCallback;
24 import android.service.autofill.FillContext;
25 import android.service.autofill.FillRequest;
26 import android.service.autofill.FillResponse;
27 import android.service.autofill.SaveCallback;
28 import android.service.autofill.SaveRequest;
33 import com.example.android.autofill.service.datasource.SharedPrefsAutofillRepository;
34 import com.example.android.autofill.service.datasource.SharedPrefsPackageVerificationRepository
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/androidTest/java/com/example/android/autofill/service/data/source/local/
LocalDataSourceTest.java 17 package com.example.android.autofill.service.data.source.local;
26 import com.example.android.autofill.service.data.source.local.dao.AutofillDao;
27 import com.example.android.autofill.service.data.source.local.db.AutofillDatabase;
28 import com.example.android.autofill.service.util.SingleExecutors;
  /external/autotest/client/site_tests/network_DhcpFailureWithStaticIP/
network_DhcpFailureWithStaticIP.py 65 service = self.find_ethernet_service(
70 service.SetProperty('StaticIP.Address', static_ip_address)
71 service.SetProperty('StaticIP.Prefixlen', prefix_len)
73 service.SetProperty('StaticIP.NameServers',
  /external/autotest/server/brillo/
host_utils.py 74 host.run('sed \'s/service weaved \/system\/bin\/weaved/'
75 'service weaved \/system\/bin\/weaved --disable_privet/\' '
94 host.run('sed \'s/service weaved \/system\/bin\/weaved '
95 '--disable_privet/service weaved \/system\/bin\/weaved/\' '

Completed in 425 milliseconds

<<11121314151617181920>>