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

<<11121314151617181920>>

  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AutofillHelper.java 16 package com.example.android.autofill.service;
20 import android.service.autofill.Dataset;
21 import android.service.autofill.FillResponse;
22 import android.service.autofill.SaveInfo;
28 import com.example.android.autofill.service.model.FilledAutofillFieldCollection;
33 import static com.example.android.autofill.service.CommonUtil.TAG;
AutofillHintProperties.java 16 package com.example.android.autofill.service;
18 import com.example.android.autofill.service.model.FilledAutofillField;
25 * Holds the properties associated with an autofill hint in this Autofill Service.
62 * Returns how this hint maps to a {@link android.service.autofill.SaveInfo} type.
  /external/autotest/client/common_lib/cros/
dbus_send_unittest.py 51 variant object path "/service/2"
115 object path "/service/2"
116 object path "/service/1"
117 object path "/service/0"
123 object path "/service/2"
129 object path "/service/2"
156 'DefaultService': '/service/2',
170 'ServiceCompleteList': ['/service/2', '/service/1', '/service/0']
    [all...]
  /external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/
mock_lorgnette.py 7 import dbus.service
21 class LorgnetteManager(dbus.service.Object):
31 dbus.service.Object.__init__(self, bus, object_path)
36 @dbus.service.method('org.chromium.lorgnette.Manager',
47 @dbus.service.method('org.chromium.lorgnette.Manager',
116 name = dbus.service.BusName(self.LORGNETTE, self.bus)
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/suggestions/
SuggestionController.java 25 import android.service.settings.suggestions.ISuggestionService;
26 import android.service.settings.suggestions.Suggestion;
39 * Callback interface when service is connected/disconnected.
43 * Called when service is connected.
48 * Called when service is disconnected.
67 * @param service The component name for service.
68 * @param listener listener to receive service connected/disconnected event.
70 public SuggestionController(Context context, ComponentName service,
74 mServiceIntent = new Intent().setComponent(service);
    [all...]
  /frameworks/rs/perf-test-scripts/
set-cpu-freq 55 for service in ${SERVICES[@]}; do
56 adb shell stop $service
124 for service in ${SERVICES[@]}; do
125 adb shell start $service
132 for service in ${SERVICES[@]}; do
133 adb shell stop $service
  /hardware/interfaces/configstore/1.1/default/
Android.mk 5 LOCAL_MODULE := android.hardware.configstore@1.1-service
13 LOCAL_INIT_RC := android.hardware.configstore@1.1-service.rc
14 LOCAL_SRC_FILES:= service.cpp
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
HostEmulationManager.java 76 // Variables below are for a non-payment service,
82 // Variables below are for a payment service,
90 // mActiveService denotes the service interface
92 // comes in that may be resolved to a different service.
109 public void onPreferredPaymentServiceChanged(ComponentName service) {
111 if (service != null) {
112 bindPaymentServiceLocked(ActivityManager.getCurrentUser(), service); local
119 public void onPreferredForegroundServiceChanged(ComponentName service) {
121 if (service != null) {
122 bindServiceIfNeededLocked(service);
    [all...]
  /system/connectivity/wificond/tests/integration/
process_utils.cpp 69 sp<IWificond> service; local
77 status_t status = getService(String16(kServiceName), &service);
78 if (status != NO_ERROR || service.get() == nullptr) {
82 return service;
107 sp<IBinder> service = local
109 return service.get() != nullptr;
  /system/tools/aidl/tests/java_app/src/android/aidl/tests/
TestServiceClient.java 70 IBinder service = new ServiceManager().getService( local
72 if (service == null) {
75 ITestService ret = ITestService.Stub.asInterface(service);
82 private void checkPrimitiveRepeat(ITestService service)
84 mLog.log("Checking that service can repeat primitives back...");
88 boolean response = service.RepeatBoolean(query);
96 char response = service.RepeatChar(query);
104 byte response = service.RepeatByte(query);
112 int response = service.RepeatInt(query);
128 int response = service.RepeatInt(query[i])
708 ITestService service = getService(); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
TileServices.java 32 import android.service.quicksettings.IQSService;
33 import android.service.quicksettings.Tile;
34 import android.service.quicksettings.TileService;
84 TileServiceManager service = onCreateTileService(component, tile.getQsTile()); local
86 mServices.put(tile, service);
88 mTokenMap.put(service.getToken(), tile);
90 return service;
97 public void freeService(CustomTile tile, TileServiceManager service) {
99 service.setBindAllowed(false);
100 service.handleDestroy()
163 TileServiceManager service = mServices.get(customTile); local
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
dbus_std_ifaces.py 14 import dbus.service
46 class DBusProperties(dbus.service.Object):
74 dbus.service.Object.__init__(self, bus, path)
76 dbus.service.Object.__init__(self, None, None)
159 @dbus.service.method(mm1_constants.I_PROPERTIES, in_signature='ss',
188 @dbus.service.method(mm1_constants.I_PROPERTIES, in_signature='ssv')
226 @dbus.service.method(mm1_constants.I_PROPERTIES,
252 @dbus.service.signal(mm1_constants.I_PROPERTIES, signature='sa{sv}as')
324 class DBusObjectManager(dbus.service.Object):
335 dbus.service.Object.__init__(self, bus, path
    [all...]
  /external/selinux/dbus/
selinux_server.py 4 import dbus.service
7 import slip.dbus.service
14 class selinux_server(slip.dbus.service.Object):
25 @dbus.service.method("org.selinux", in_signature='s')
39 @dbus.service.method("org.selinux", in_signature='', out_signature='s')
53 @dbus.service.method("org.selinux", in_signature='', out_signature='s')
66 @dbus.service.method("org.selinux", in_signature='s')
74 @dbus.service.method("org.selinux", in_signature='i')
82 @dbus.service.method("org.selinux", in_signature='i')
112 @dbus.service.method("org.selinux", in_signature='s'
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
TelecomManager.java 59 * UI by notifying the Telecom system that an incoming call exists for a specific call service
66 * ask the connection service for more information about the call prior to showing any UI.
303 * containing the component name of the associated connection service.
1514 ITelecomService service = getTelecomService(); local
1541 ITelecomService service = getTelecomService(); local
1563 ITelecomService service = getTelecomService(); local
1584 ITelecomService service = getTelecomService(); local
1606 ITelecomService service = getTelecomService(); local
1658 ITelecomService service = getTelecomService(); local
1682 ITelecomService service = getTelecomService(); local
1701 ITelecomService service = getTelecomService(); local
1721 ITelecomService service = getTelecomService(); local
1757 ITelecomService service = getTelecomService(); local
1790 ITelecomService service = getTelecomService(); local
    [all...]
  /external/flatbuffers/grpc/src/compiler/
cpp_generator.cc 520 " void BaseClassMustBeDerivedFromService(const Service *service) {}\n");
525 " ::grpc::Service::MarkMethodAsync($Idx$);\n"
549 " ::grpc::Service::RequestAsyncUnary($Idx$, context, "
571 " ::grpc::Service::RequestAsyncClientStreaming($Idx$, "
594 " ::grpc::Service::RequestAsyncServerStreaming($Idx$, "
616 " ::grpc::Service::RequestAsyncBidiStreaming($Idx$, "
637 " void BaseClassMustBeDerivedFromService(const Service *service) "
643 " ::grpc::Service::MarkMethodStreamed($Idx$,\n
    [all...]
  /bionic/libc/kernel/uapi/linux/caif/
caif_socket.h 63 char service[16]; member in struct:sockaddr_caif::__anon511::__anon513
75 __u8 service; member in struct:sockaddr_caif::__anon511::__anon516
  /cts/hostsidetests/devicepolicy/app/Assistant/src/com/android/cts/devicepolicy/assistapp/
MyInteractionSessionService.java 23 import android.service.voice.VoiceInteractionSession;
24 import android.service.voice.VoiceInteractionSessionService;
  /cts/hostsidetests/incident/src/com/android/server/cts/
ProcStatsProtoTest.java 19 import android.service.procstats.ProcessStatsProto;
20 import android.service.procstats.ProcessStatsServiceDumpProto;
  /cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/
MainInteractionService.java 17 package android.voiceinteraction.service;
23 import android.service.voice.VoiceInteractionService;
60 " it is not set as the current voice interaction service");
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AutofillHintProperties.java 16 package com.example.android.autofill.service;
20 import com.example.android.autofill.service.model.FilledAutofillField;
27 * Holds the properties associated with an autofill hint in this Autofill Service.
64 * Returns how this hint maps to a {@link android.service.autofill.SaveInfo} type.
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/
ClientViewMetadata.java 17 package com.example.android.autofill.service.data;
19 import android.service.autofill.SaveInfo;
  /device/google/wahoo/usb/
service.cpp 17 #define LOG_TAG "android.hardware.usb@1.1-service.wahoo"
39 android::sp<IUsb> service = new Usb(); local
43 status_t status = service->registerAsService();
46 ALOGE("Cannot register USB HAL service");
53 ALOGE("Cannot register USB Gadget HAL service");
  /device/google/wahoo/wifi_offload/
service.cpp 35 LOG(android::base::INFO) << "Wifi Offload HAL service start ";
40 // Register service
41 android::sp<IOffload> service = new Offload(); local
42 CHECK_EQ(service->registerAsService(), android::NO_ERROR)
47 LOG(android::base::INFO) << "Wifi Offload HAL service exit";
  /external/kernel-headers/original/uapi/linux/caif/
caif_socket.h 64 * the service to connect to on the modem.
78 * enum caif_at_type - AT Service Endpoint
98 * enum caif_debug_service - Debug Service Endpoint
99 * @CAIF_RADIO_DEBUG_SERVICE: Debug service on the Radio sub-system
118 * @u.util.service: Utility service name.
137 * @u.dbg.service: Service sub-system to connect (caif_debug_service
140 * CAIF Channel. It defines the service to connect to on the modem.
149 char service[16] member in struct:sockaddr_caif::__anon22717::__anon22719
161 __u8 service; \/* service:caif_debug_service *\/ member in struct:sockaddr_caif::__anon22717::__anon22722
    [all...]
  /external/selinux/mcstrans/utils/
callgrind-mcstransd 2 service mcstrans stop

Completed in 1678 milliseconds

<<11121314151617181920>>