/external/jmdns/src/javax/jmdns/impl/tasks/state/ |
Prober.java | 22 * The Prober sends three consecutive probes for all service infos that needs probing as well as for the host name. The state of each service info of the host name is advanced, when a probe has been sent for it. When the prober has run three times, 25 * If a conflict during probes occurs, the affected service infos (and affected host name) are taken away from the prober. This eventually causes the prober to cancel itself. 133 newOut = this.addAuthoritativeAnswer(newOut, new DNSRecord.Service(info.getQualifiedName(), DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE, this.getTTL(), info.getPriority(), info.getWeight(), info.getPort(), this.getDns().getLocalHost()
|
/frameworks/native/libs/vr/libvrflinger/ |
display_manager_service.cpp | 83 return Service::DefaultHandleMessage(message); 101 // not nullptr. No check required, unless this service becomes multi-threaded.
|
vr_flinger.cpp | 63 std::shared_ptr<android::pdx::Service> service; 75 CHECK_ERROR(!dispatcher_, error, "Failed to create service dispatcher."); 79 CHECK_ERROR(!display_service_, error, "Failed to create display service."); 82 service = android::dvr::DisplayManagerService::Create(display_service_); 83 CHECK_ERROR(!service, error, "Failed to create display manager service."); 84 dispatcher_->AddService(service); 86 service = android::dvr::VSyncService::Create(); 87 CHECK_ERROR(!service, error, "Failed to create vsync service.") [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ipxrtdef.h | 197 IPX_SERVICE Service;
|
/system/core/init/ |
init_parser_test.cpp | 25 #include "service.h" 84 Service* svc = sm.MakeExecOneshotService(args);
|
/compatibility/cdd/3_software/ |
3_5_api-behavioral-compatibility.md | 11 a particular type of system component (such as Service, Activity, ContentProvider, etc.). 38 https://developer.android.com/reference/android/app/Service.html#stopSelf%28%29)
|
/compatibility/cdd/6_dev-tools-and-options/ |
6_1_developer_tools.md | 26 * [**Dalvik Debug Monitor Service (ddms)**](http://developer.android.com/tools/debugging/ddms.html)
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
BleConnectionPriorityClientService.java | 19 import android.app.Service;
50 public class BleConnectionPriorityClientService extends Service {
280 BluetoothGattService service = null;
local 283 service = mBluetoothGatt.getService(SERVICE_UUID);
284 if (service == null) {
285 showMessage("Service not found");
288 return service;
294 BluetoothGattService service = getService();
local 295 if (service != null) {
296 characteristic = service.getCharacteristic(uuid); [all...] |
BleConnectionPriorityServerService.java | 19 import android.app.Service;
45 public class BleConnectionPriorityServerService extends Service {
233 BluetoothGattService service =
local 235 // add characteristic to service
242 service.addCharacteristic(characteristic);
245 service.addCharacteristic(characteristic);
248 service.addCharacteristic(characteristic);
250 return service;
272 public void onServiceAdded(int status, BluetoothGattService service) {
|
/cts/tests/accessibility/src/android/view/accessibility/cts/ |
AccessibilityManagerTest.java | 20 import android.app.Service; 60 getInstrumentation().getContext().getSystemService(Service.ACCESSIBILITY_SERVICE); 101 assertFalse("There must be at least one installed service.", installedServices.isEmpty()); 117 assertTrue("The speaking service should be installed.", speakingServiceInstalled); 118 assertTrue("The vibrating service should be installed.", vibratingServiceInstalled); 141 assertTrue("The speaking service should be enabled.", speakingServiceEnabled); 142 assertTrue("The vibrating service should be enabled.", vibratingServiceEnabled); 150 assertSame("There should be only one enabled speaking service.", 1, enabledServices.size()); 160 fail("The speaking service is not enabled."); 165 // For this test, also enable a service with multiple feedback type [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
SeccompTest.java | 19 import android.app.Service; 196 * service. This will perform various operations in an isolated process under a 213 final ISeccompIsolatedService service = peer.get(); local 216 assertTrue(service.installFilter()); 217 assertTrue(service.createThread()); 218 assertTrue(service.getSystemInfo()); 219 doFileWriteTest(service); 220 assertTrue(service.openAshmem()); 221 assertTrue(service.openDevFile()); 244 final ISeccompIsolatedService service = peer.get() local [all...] |
/development/apps/Development/src/com/android/development/ |
BadBehaviorActivity.java | 23 import android.app.Service; 62 public static class BadService extends Service { 70 Log.i(TAG, "in service start -- about to hang"); 72 Log.i(TAG, "service hang finished -- stopping and returning"); 233 Log.i(TAG, "ANR service pressed -- about to start");
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
Ip4Igmp.c | 25 Init the IGMP control data of the IP4 service instance, configure
28 @param[in, out] IpSb The IP4 service whose IGMP is to be initialized.
156 @param[in] IpSb The IP4 service instance that requests the
230 @param[in] IpSb The IP4 service instance that requests the
276 IpSb = IpInstance->Service;
281 // If the IP service already is a member in the group, just
340 @retval EFI_NOT_FOUND The IP4 service instance isn't in the group.
357 IpSb = IpInstance->Service;
404 Handle the received IGMP message for the IP4 service instance.
406 @param[in] IpSb The IP4 service instance that received the message. [all...] |
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
StreamServiceTest.java | 34 import com.google.common.util.concurrent.Service.Listener; 35 import com.google.common.util.concurrent.Service.State; 73 private StreamService service; field in class:StreamServiceTest 86 if (service != null && service.state() != State.FAILED && service.state() != State.TERMINATED) { 87 service.stopAsync().awaitTerminated(); 93 service.startAsync().awaitRunning(); 102 assertEquals(State.RUNNING, service.state()); 111 service.startAsync().awaitRunning() [all...] |
/external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/ |
KeyManagerFactoryTest.java | 270 Set<Provider.Service> services = provider.getServices(); 271 for (Provider.Service service : services) { 272 String type = service.getType(); 276 String algorithm = service.getAlgorithm();
|
/external/ims/rcs/rcsservice/src/com/android/service/ims/ |
RcsService.java | 29 package com.android.service.ims; 41 import android.app.Service; 66 import com.android.service.ims.RcsStackAdaptor; 68 import com.android.service.ims.presence.PresencePublication; 69 import com.android.service.ims.presence.PresenceSubscriber; 71 public class RcsService extends Service{ 177 * Cleans up when the service is destroyed 349 * return true if the rcs service is ready for use.
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
ServiceTest.java | 77 /** Tests Service.callMethod(). */ 98 /** Tests Service.get{Request,Response}Prototype(). */ 173 Service service = ServiceWithNoOuter.newReflectiveService(impl); local 195 service.callMethod(fooMethod, controller, request, callback); 204 BlockingService service = local 218 service.callBlockingMethod(fooMethod, controller, request); 250 if (!Service.class.isAssignableFrom(innerClass) && 260 // No service class should have been generated.
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
SettingsFacade.java | 20 import android.app.Service; 48 private final Service mService; 58 * @param service is the {@link Context} the APIs will run under
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/ |
MediaPlayerFacade.java | 19 import android.app.Service; 74 private final Service mService;
|
MediaRecorderFacade.java | 19 import android.app.Service; 61 private final Service mService;
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
TelecomManagerFacade.java | 25 import android.app.Service; 53 private final Service mService;
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/ |
WifiRttManagerFacade.java | 19 import android.app.Service; 50 private final Service mService;
|
/external/sl4a/Common/src/com/googlecode/android_scripting/webcam/ |
WebCamFacade.java | 33 import android.app.Service; 90 private final Service mService; 183 @RpcParameter(name = "port", description = "If port is specified, the webcam service will bind to port, otherwise it will pick any available port.") @RpcDefault("0") Integer port)
|
/frameworks/base/core/java/android/app/ |
UiAutomationConnection.java | 65 ServiceManager.getService(Service.WINDOW_SERVICE)); 68 .asInterface(ServiceManager.getService(Service.ACCESSIBILITY_SERVICE));
|
/frameworks/base/core/java/android/net/ |
VpnService.java | 26 import android.app.Service; 89 * <li>When the application becomes prepared, start the service.</li> 104 * is an example of declaring a VPN service in {@code AndroidManifest.xml}: 106 * <service android:name=".ExampleVpnService" 111 * </service></pre> 122 public class VpnService extends Service { 125 * The action must be matched by the intent filter of this service. It also 145 * <service android:name=".ExampleVpnService" 152 * </service> 370 * Return the communication interface to the service. This method return [all...] |