HomeSort by relevance Sort by last modified time
    Searched refs:serviceType (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/base/telephony/java/android/telephony/ims/
ImsSsData.java 133 public @interface ServiceType{}
179 public int serviceType;
241 * @param serviceType The Supplementary Service type. Valid entries:
282 public ImsSsData(@ServiceType int serviceType, int requestType, int teleserviceType,
284 this.serviceType = serviceType;
292 serviceType = in.readInt();
316 out.writeInt(serviceType);
336 return (serviceType == SS_CFU || serviceType == SS_CF_BUSY |
    [all...]
ImsCallProfile.java 313 * @param serviceType the service type for the call. Can be one of the following:
329 public ImsCallProfile(int serviceType, int callType) {
330 mServiceType = serviceType;
339 * @param serviceType the service type for the call. Can be one of the following:
357 public ImsCallProfile(int serviceType, int callType, Bundle callExtras,
359 mServiceType = serviceType;
440 return "{ serviceType=" + mServiceType +
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pDnsSdServiceRequest.java 69 * @param serviceType service type. Cannot be null <br>
75 public static WifiP2pDnsSdServiceRequest newInstance(String serviceType) {
76 if (serviceType == null) {
79 return new WifiP2pDnsSdServiceRequest(serviceType + ".local.",
90 * @param serviceType service type. Cannot be null. <br>
97 String serviceType) {
98 if (instanceName == null || serviceType == null) {
102 String fullDomainName = instanceName + "." + serviceType + ".local.";
WifiP2pDnsSdServiceInfo.java 85 * @param serviceType service type.<br>
92 String serviceType, Map<String, String> txtMap) {
93 if (TextUtils.isEmpty(instanceName) || TextUtils.isEmpty(serviceType)) {
106 queries.add(createPtrServiceQuery(instanceName, serviceType));
107 queries.add(createTxtServiceQuery(instanceName, serviceType, txtRecord));
117 * @param serviceType service type.<br>
122 String serviceType) {
126 sb.append(createRequest(serviceType + ".local.", DNS_TYPE_PTR, VERSION_1));
143 * @param serviceType service type.<br>
149 String serviceType,
    [all...]
  /external/ims/rcs/rcsmanager/src/java/com/android/ims/
RcsPresenceInfo.java 96 public static interface ServiceType {
136 * Service type. It is defined by ServiceType.
138 * @see ServiceType
188 * Return the ServiceState of the specific serviceType.
190 * @param serviceType it is defined by ServiceType.
194 * @see ServiceType
198 public int getServiceState(int serviceType) {
199 return getServiceInfo(serviceType, ServiceInfoKey.STATE, ServiceState.UNKNOWN);
203 * Return the service contact of the specific serviceType
    [all...]
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/
DiscoveryListenerMultiplexer.java 40 * Add a new {@link NsdManager.DiscoveryListener listener} for a {@code serviceType}.
43 * @param serviceType The service type to listen for
46 public static void addListener(@NonNull NsdManager nsdManager, @NonNull String serviceType,
49 DiscoveryListenerSet listenerSet = sListeners.get(serviceType);
56 sListeners.put(serviceType, listenerSet);
61 nsdManager.discoverServices(serviceType, NsdManager.PROTOCOL_DNS_SD,
133 public void onStartDiscoveryFailed(String serviceType, int errorCode) {
134 Log.w(LOG_TAG, "Failed to start network discovery for type " + serviceType + ": "
139 public void onStopDiscoveryFailed(String serviceType, int errorCode) {
140 Log.w(LOG_TAG, "Failed to stop network discovery for type " + serviceType + ":
    [all...]
MDNSFilteredDiscovery.java 119 for (String serviceType : mServiceTypes) {
120 DiscoveryListenerMultiplexer.addListener(getNDSManager(), serviceType, this);
137 public void onStartDiscoveryFailed(String serviceType, int errorCode) {
138 Log.w(LOG_TAG, "Failed to start network discovery for type " + serviceType + ": "
143 public void onStopDiscoveryFailed(String serviceType, int errorCode) {
144 Log.w(LOG_TAG, "Failed to stop network discovery for type " + serviceType + ": "
149 public void onDiscoveryStarted(String serviceType) {
154 public void onDiscoveryStopped(String serviceType) {
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsServiceBase.java 55 public boolean isConnected(int serviceId, int serviceType, int callType) {
56 return onIsConnected(serviceId, serviceType, callType);
70 public void addRegistrationListener(int serviceId, int serviceType, IImsRegistrationListener listener) {
71 onAddRegistrationListener(serviceId, serviceType, listener);
76 public ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType) {
77 return onCreateCallProfile(serviceId, serviceType, callType);
148 protected boolean onIsConnected(int serviceId, int serviceType, int callType) {
164 protected void onAddRegistrationListener(int serviceId, int serviceType, IImsRegistrationListener listener) {
168 protected ImsCallProfile onCreateCallProfile(int serviceId, int serviceType, int callType) {
  /frameworks/base/core/java/android/os/
PowerManagerInternal.java 152 public abstract PowerSaveState getLowPowerState(int serviceType);
159 public void registerLowPowerModeObserver(int serviceType, Consumer<PowerSaveState> listener) {
163 return serviceType;
IPowerManager.aidl 49 PowerSaveState getPowerSaveState(int serviceType);
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattService.java 101 * @param serviceType The type of this service,
105 public BluetoothGattService(UUID uuid, int serviceType) {
109 mServiceType = serviceType;
120 int instanceId, int serviceType) {
124 mServiceType = serviceType;
134 public BluetoothGattService(UUID uuid, int instanceId, int serviceType) {
138 mServiceType = serviceType;
BluetoothGattIncludedService.java 49 public BluetoothGattIncludedService(UUID uuid, int instanceId, int serviceType) {
52 mServiceType = serviceType;
BluetoothHidDeviceAppQosSettings.java 50 * @param serviceType L2CAP service type, default = SERVICE_BEST_EFFORT
58 int serviceType,
64 mServiceType = serviceType;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SsData.java 34 public enum ServiceType {
105 public ServiceType serviceType;
114 used for respone if serviceType is SS_CLIR and
121 public ServiceType ServiceTypeFromRILInt(int type) {
123 return ServiceType.values()[type];
149 return "[SsData] " + "ServiceType: " + serviceType
154 + " Is Service Type CF: " + serviceType.isTypeCF();
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
HandleMap.java 42 public int serviceType = 0;
48 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) {
54 this.serviceType = serviceType;
57 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance,
64 this.serviceType = serviceType;
100 void addService(int serverIf, int handle, UUID uuid, int serviceType, int instance,
102 mEntries.add(new Entry(serverIf, handle, uuid, serviceType, instance, advertisePreferred));
  /external/webrtc/webrtc/test/channel_transport/
udp_socket_wrapper.h 73 virtual int32_t SetTOS(const int32_t serviceType) = 0;
88 virtual bool SetQos(int32_t serviceType, int32_t tokenRate,
udp_socket2_win.h 67 bool SetQos(int32_t serviceType,
76 int32_t SetTOS(const int32_t serviceType) override;
118 int32_t CreateFlowSpec(int32_t serviceType,
udp_socket_posix.h 45 int32_t SetTOS(const int32_t serviceType) override;
59 bool SetQos(int32_t /*serviceType*/,
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/net/nsd/
NsdManagerFacade.java 197 public String nsdDiscoverServices(@RpcParameter(name = "service type") String serviceType) {
200 mNsdManager.discoverServices(serviceType, NsdManager.PROTOCOL_DNS_SD, listener);
309 public void onStartDiscoveryFailed(String serviceType, int errorCode) {
312 serviceType, null, errorCode));
316 public void onStopDiscoveryFailed(String serviceType, int errorCode) {
319 serviceType, null, errorCode));
323 public void onDiscoveryStarted(String serviceType) {
326 serviceType, null, null));
330 public void onDiscoveryStopped(String serviceType) {
333 serviceType, null, null))
    [all...]
  /development/samples/training/NsdChat/src/com/example/android/nsdchat/
NsdHelper.java 81 public void onDiscoveryStopped(String serviceType) {
82 Log.i(TAG, "Discovery stopped: " + serviceType);
86 public void onStartDiscoveryFailed(String serviceType, int errorCode) {
91 public void onStopDiscoveryFailed(String serviceType, int errorCode) {
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsService.aidl 39 boolean isConnected(int serviceId, int serviceType, int callType);
54 ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType);
  /external/mdnsresponder/mDNSPosix/
Client.c 72 static mDNSBool CheckThatServiceTypeIsUsable(const char *serviceType, mDNSBool printExplanation)
73 // Checks that serviceType is a reasonable service type
80 if (result && strlen(serviceType) > 63) {
88 if (result && serviceType[0] == 0) {
Responder.c 152 static mDNSBool CheckThatServiceTypeIsUsable(const char *serviceType, mDNSBool printExplanation)
153 // Checks that serviceType is a reasonable service type
160 if (result && strlen(serviceType) > 63) {
168 if (result && serviceType[0] == 0) {
418 const char * serviceType,
437 MakeDomainNameFromDNSNameString(&type, serviceType);
460 serviceType,
  /packages/apps/TV/tuner/src/com/android/tv/tuner/data/
TunerChannel.java 92 mProto.serviceType = channel.getServiceType();
153 mProto.serviceType = channel.getServiceType();
248 return mProto.serviceType;
252 int serviceType = mProto.serviceType;
253 if (serviceType >= 0 && serviceType < ATSC_SERVICE_TYPE_NAMES.length) {
254 return ATSC_SERVICE_TYPE_NAMES[serviceType];
  /frameworks/base/core/java/android/net/nsd/
NsdManager.java 307 public void onStartDiscoveryFailed(String serviceType, int errorCode);
309 public void onStopDiscoveryFailed(String serviceType, int errorCode);
311 public void onDiscoveryStarted(String serviceType);
313 public void onDiscoveryStopped(String serviceType);
566 * @param serviceType The service type being discovered. Examples include "_http._tcp" for
570 * to stop discovery on this serviceType through a call on {@link #stopServiceDiscovery}.
573 public void discoverServices(String serviceType, int protocolType, DiscoveryListener listener) {
574 checkStringNotEmpty(serviceType, "Service type cannot be empty");
578 s.setServiceType(serviceType);

Completed in 390 milliseconds

1 2 3 4 5 6 7 8