/external/protobuf/python/google/protobuf/internal/ |
generator_test.py | 57 from google.protobuf import service 237 # Proto2 Service class. 240 service.Service)) 287 self.assertEqual(message.Extensions[test_bad_identifiers_pb2.service],
|
/frameworks/native/libs/vr/libvrflinger/ |
display_service.cpp | 122 // First-level dispatch for display service messages. Directly handles messages 172 return Service::HandleMessage(message);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/cert/ |
X509CertificateTest.java | 44 import java.security.Provider.Service;
|
/system/bt/service/example/heart_rate/ |
heart_rate_server.cc | 58 /* Advertising data: 16-bit Service UUID: Heart Rate Service, Tx power*/ 242 bluetooth::Service hrService( 267 LOG(ERROR) << "Failed to add service, status is: " /*<< stat*/; 273 LOG(ERROR) << "Failed to add service"; 283 int status, const android::bluetooth::BluetoothGattService& service) { 287 LOG(ERROR) << "Failed to add Heart Rate service"; 292 hr_service_handle_ = service.handle(); 293 hr_measurement_handle_ = service.characteristics()[0].handle(); 295 service.characteristics()[0].descriptors()[0].handle() [all...] |
/frameworks/base/services/core/java/com/android/server/am/ |
ActiveServices.java | 68 import android.app.Service; 101 // How long we wait for a service to finish executing. 104 // How long we wait for a service to finish executing. 120 * All currently bound service connections. Keys are the IBinder of 291 public ActiveServices(ActivityManagerService service) { 292 mAm = service; 327 ComponentName startServiceLocked(IApplicationThread caller, Intent service, String resolvedType, 330 if (DEBUG_DELAYED_STARTS) Slog.v(TAG_SERVICE, "startService: " + service 331 + " type=" + resolvedType + " args=" + service.getExtras()); 340 + ") when starting service " + service) 622 ServiceRecord service = services.mServicesByName.valueAt(i); local 647 ServiceRecord service = stopping.get(i); local 2896 ServiceRecord service = services.valueAt(i); local [all...] |
/frameworks/base/core/java/android/content/pm/ |
PackageParser.java | 738 final Service s = p.services.get(i); 7520 public Service service; field in class:PackageParser.ServiceIntentInfo [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
BleClientService.java | 19 import android.app.Service; 53 public class BleClientService extends Service { 386 // Registered the notify to characteristics in the service 795 BluetoothGattService service = null; local 807 BluetoothGattService service = null; local 821 BluetoothGattService service = getService(serverUid); local 833 BluetoothGattService service = getService(); local [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/ |
DnsProtocol.c | 1017 Instance->Service->ImageHandle,
1018 Instance->Service->ControllerHandle,
[all...] |
/external/flatbuffers/grpc/src/compiler/ |
cpp_generator.cc | 498 " void BaseClassMustBeDerivedFromService(const Service *service) {}\n"); 503 " ::grpc::Service::MarkMethodAsync($Idx$);\n" 527 " ::grpc::Service::RequestAsyncUnary($Idx$, context, " 549 " ::grpc::Service::RequestAsyncClientStreaming($Idx$, " 572 " ::grpc::Service::RequestAsyncServerStreaming($Idx$, " 594 " ::grpc::Service::RequestAsyncBidiStreaming($Idx$, " 614 " void BaseClassMustBeDerivedFromService(const Service *service) {}\n"); 619 " ::grpc::Service::MarkMethodGeneric($Idx$);\n [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
ConnectivityManagerFacade.java | 19 import android.app.Service; 421 private final Service mService; [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/ |
BluetoothLeScanFacade.java | 19 import android.app.Service; 60 private final Service mService; 259 * Starts a classic ble scan with service Uuids 264 @Rpc(description = "Starts a classic ble advertisement scan with service Uuids") 586 * Get ScanFilter's service data 589 * @return the ScanFilter's service data 592 @Rpc(description = "Get ScanFilter's service data") 611 * Get ScanFilter's service data mask 614 * @return the ScanFilter's service data mask 617 @Rpc(description = "Get ScanFilter's service data mask" [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
SmsFacade.java | 21 import android.app.Service; 75 private final Service mService; [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/ |
WifiAwareManagerFacade.java | 19 import android.app.Service; 73 private final Service mService; [all...] |
WifiManagerFacade.java | 19 import android.app.Service; 90 private final Service mService; [all...] |
/frameworks/base/core/java/android/accessibilityservice/ |
AccessibilityService.java | 24 import android.app.Service; 59 * etc. Such a service can optionally request the capability for querying the content 60 * of the active window. Development of an accessibility service requires extending this 72 * The lifecycle of an accessibility service is managed exclusively by the system and 73 * follows the established service life cycle. Starting an accessibility service is triggered 74 * exclusively by the user explicitly turning the service on in device settings. After the system 75 * binds to a service, it calls {@link AccessibilityService#onServiceConnected()}. This method can 79 * An accessibility service stops either when the user turns it off in device settings or when 84 * An accessibility is declared as any other service in an AndroidManifest.xml, but i [all...] |
/frameworks/base/core/java/android/service/notification/ |
NotificationListenerService.java | 17 package android.service.notification; 29 import android.app.Service; 65 * A service that receives calls from the system when new notifications are 67 * <p>To extend this class, you must declare the service in your manifest file with 71 * <service android:name=".NotificationListener" 75 * <action android:name="android.service.notification.NotificationListenerService" /> 77 * </service></pre> 79 * <p>The service should wait for the {@link #onListenerConnected()} event 85 public abstract class NotificationListenerService extends Service { 278 * started as a real Service and hence no context is available. [all...] |
/frameworks/base/core/java/android/speech/tts/ |
TextToSpeechService.java | 19 import android.app.Service; 70 * which will be different from the main thread of the service. Synthesis must be 82 * service to expose multiple backends for a single locale. Each one of them can have a different 104 public abstract class TextToSpeechService extends Service { 205 * In <= Android 4.2 (<= API 17) can be called on main and service binder threads. 221 * Notifies the service that it should stop any in-progress speech synthesis. 229 * Tells the service to synthesize speech from the given text. This method should block until 239 * Queries the service for a set of features supported for a given language. 265 * Queries the service for a set of supported voices. 540 * Called on a service binder thread [all...] |
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
TestService.java | 32 import android.app.Service; 57 public class TestService extends Service { [all...] |
/frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/ |
SoundTriggerTestService.java | 20 import android.app.Service; 49 public class SoundTriggerTestService extends Service { 169 * Will be called when the service is killed (through swipe aways, not if we're force killed). 510 // service.
|
/frameworks/native/libs/vr/libpdx_default_transport/ |
pdx_benchmarks.cpp | 19 #include <pdx/service.h> 43 using android::pdx::Service; 138 // Opcodes for client/service protocol. 183 const char kOptionService[] = "service"; 235 // Implements the service side of the benchmark. 372 return Service::DefaultHandleMessage(message); 390 // Each service thread has its own scheduler stats object. 503 // Creates a benchmark service at |path| and dispatches messages. 516 std::cerr << "Starting service instance " << service_id_counter 518 auto service = BenchmarkService::Create local [all...] |
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
AlertReceiver.java | 21 import android.app.Service; 119 // Our alert service does not currently allow us to specify only one 138 // Our alert service does not currently allow us to specify only one 170 * Start the service to process the current event notifications, acquiring 171 * the wake lock before returning to ensure that the service will run. 188 * Called back by the service when it has finished processing notifications, 189 * releasing the wake lock if the service is now stopping. 191 public static void finishStartingService(Service service, int startId) { 194 if (service.stopSelfResult(startId)) [all...] |
AlertService.java | 21 import android.app.Service; 56 * This service is used to handle calendar event reminders. 58 public class AlertService extends Service { [all...] |
/packages/services/Mms/src/com/android/mms/service/ |
MmsService.java | 17 package com.android.mms.service; 21 import android.app.Service; 37 import android.service.carrier.CarrierMessagingService; 68 * System service to process MMS API requests 70 public class MmsService extends Service implements MmsRequest.RequestManager { 79 // Maximum size of MMS service supports - used on occassions when MMS messages are processed 126 throw new SecurityException("Only system can call this service"); [all...] |
/prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/ |
aether-connector-basic-1.0.2.v20150114.jar | |
/prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/ |
aether-transport-http-1.0.2.v20150114.jar | |