Home
last modified time | relevance | path

Searched refs:serviceType (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
DWifiP2pDnsSdServiceRequest.java75 public static WifiP2pDnsSdServiceRequest newInstance(String serviceType) { in newInstance() argument
76 if (serviceType == null) { in newInstance()
79 return new WifiP2pDnsSdServiceRequest(serviceType + ".local.", in newInstance()
97 String serviceType) { in newInstance() argument
98 if (instanceName == null || serviceType == null) { in newInstance()
102 String fullDomainName = instanceName + "." + serviceType + ".local."; in newInstance()
DWifiP2pDnsSdServiceInfo.java92 String serviceType, Map<String, String> txtMap) { in newInstance() argument
93 if (TextUtils.isEmpty(instanceName) || TextUtils.isEmpty(serviceType)) { in newInstance()
106 queries.add(createPtrServiceQuery(instanceName, serviceType)); in newInstance()
107 queries.add(createTxtServiceQuery(instanceName, serviceType, txtRecord)); in newInstance()
122 String serviceType) { in createPtrServiceQuery() argument
126 sb.append(createRequest(serviceType + ".local.", DNS_TYPE_PTR, VERSION_1)); in createPtrServiceQuery()
149 String serviceType, in createTxtServiceQuery() argument
156 sb.append(createRequest((instanceName + "." + serviceType + ".local."), in createTxtServiceQuery()
DWifiP2pServiceRequest.java95 private WifiP2pServiceRequest(int serviceType, int length, in WifiP2pServiceRequest() argument
97 mProtocolType = serviceType; in WifiP2pServiceRequest()
DWifiP2pServiceResponse.java118 protected WifiP2pServiceResponse(int serviceType, int status, int transId, in WifiP2pServiceResponse() argument
120 mServiceType = serviceType; in WifiP2pServiceResponse()
/frameworks/base/core/java/android/bluetooth/
DBluetoothGattService.java96 public BluetoothGattService(UUID uuid, int serviceType) { in BluetoothGattService() argument
100 mServiceType = serviceType; in BluetoothGattService()
110 int instanceId, int serviceType) { in BluetoothGattService() argument
114 mServiceType = serviceType; in BluetoothGattService()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DSsData.java104 public ServiceType serviceType; field in SsData
148 return "[SsData] " + "ServiceType: " + serviceType in toString()
153 + " Is Service Type CF: " + serviceType.isTypeCF(); in toString()
DGsmMmiCode.java288 mSc = getScStringFromScType(ssData.serviceType); in parseSsData()
298 ssData.serviceType.isTypeUnConditional()) { in parseSsData()
319 if (ssData.serviceType.isTypeClir()) { in parseSsData()
322 } else if (ssData.serviceType.isTypeCF()) { in parseSsData()
/frameworks/base/core/java/android/net/nsd/
DNsdManager.java262 public void onStartDiscoveryFailed(String serviceType, int errorCode); in onStartDiscoveryFailed() argument
264 public void onStopDiscoveryFailed(String serviceType, int errorCode); in onStopDiscoveryFailed() argument
266 public void onDiscoveryStarted(String serviceType); in onDiscoveryStarted() argument
268 public void onDiscoveryStopped(String serviceType); in onDiscoveryStopped() argument
542 public void discoverServices(String serviceType, int protocolType, DiscoveryListener listener) { in discoverServices() argument
546 if (TextUtils.isEmpty(serviceType)) { in discoverServices()
555 s.setServiceType(serviceType); in discoverServices()
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsService.aidl38 boolean isConnected(int serviceId, int serviceType, int callType); in isConnected() argument
42 ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType); in createCallProfile() argument
/frameworks/base/telephony/java/com/android/ims/
DImsCallProfile.java200 public ImsCallProfile(int serviceType, int callType) { in ImsCallProfile() argument
201 mServiceType = serviceType; in ImsCallProfile()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsManager.java577 public boolean isConnected(int serviceId, int serviceType, int callType) in isConnected() argument
582 return mImsService.isConnected(serviceId, serviceType, callType); in isConnected()
628 int serviceType, int callType) throws ImsException { in createCallProfile() argument
632 return mImsService.createCallProfile(serviceId, serviceType, callType); in createCallProfile()
/frameworks/base/docs/html/training/connect-devices-wirelessly/
Dnsd.jd237 public void onDiscoveryStopped(String serviceType) {
238 Log.i(TAG, "Discovery stopped: " + serviceType);
242 public void onStartDiscoveryFailed(String serviceType, int errorCode) {
248 public void onStopDiscoveryFailed(String serviceType, int errorCode) {
/frameworks/base/services/core/java/com/android/server/
DNsdService.java757 private boolean discoverServices(int discoveryId, String serviceType) { in discoverServices() argument
758 if (DBG) Slog.d(TAG, "discoverServices: " + discoveryId + " " + serviceType); in discoverServices()
760 mNativeConnector.execute("mdnssd", "discover", discoveryId, serviceType); in discoverServices()
/frameworks/base/core/java/com/android/internal/app/
DProcessStats.java551 int uid, int vers, String serviceName, ServiceState svc, int serviceType, int opCount, in dumpServiceTimeCheckin() argument
573 if (type != serviceType) { in dumpServiceTimeCheckin()
2332 int serviceType, int curState, long curStartTime, long now) { in dumpSingleServiceTime() argument
2339 long time = service.getDuration(serviceType, curState, curStartTime, in dumpSingleServiceTime()
2371 int count, int serviceType, int state, long startTime, long now, long totalTime, in dumpServiceStats() argument
2377 dumpSingleServiceTime(pw, prefixInner, service, serviceType, state, startTime, in dumpServiceStats()
2380 long myTime = dumpSingleServiceTime(null, null, service, serviceType, state, in dumpServiceStats()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCallTracker.java404 int serviceType = PhoneNumberUtils.isEmergencyNumber(conn.getAddress()) ? in dialInternal() local
413 serviceType, callType); in dialInternal()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRIL.java4289 ssData.serviceType = ssData.ServiceTypeFromRILInt(p.readInt()); in responseSsData()
4296 if (ssData.serviceType.isTypeCF() && in responseSsData()