Searched defs:serviceType (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pDnsSdServiceRequest.java69 * @param serviceType service type. Cannot be null <br>
75 public static WifiP2pDnsSdServiceRequest newInstance(String serviceType) { argument
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.";
96 newInstance(String instanceName, String serviceType) argument
H A DWifiP2pDnsSdServiceInfo.java85 * @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,
91 newInstance(String instanceName, String serviceType, Map<String, String> txtMap) argument
121 createPtrServiceQuery(String instanceName, String serviceType) argument
148 createTxtServiceQuery(String instanceName, String serviceType, DnsSdTxtRecord txtRecord) argument
[all...]
H A DWifiP2pServiceRequest.java90 * @param serviceType service discovery type.
95 private WifiP2pServiceRequest(int serviceType, int length, argument
97 mProtocolType = serviceType;
H A DWifiP2pServiceResponse.java112 * @param serviceType service discovery type.
118 protected WifiP2pServiceResponse(int serviceType, int status, int transId, argument
120 mServiceType = serviceType;
296 sbuf.append("serviceType:").append(mServiceType);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattService.java92 * @param serviceType The type of this service,
96 public BluetoothGattService(UUID uuid, int serviceType) { argument
100 mServiceType = serviceType;
110 int instanceId, int serviceType) {
114 mServiceType = serviceType;
109 BluetoothGattService(BluetoothDevice device, UUID uuid, int instanceId, int serviceType) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSsData.java104 public ServiceType serviceType; field in class:SsData
113 used for respone if serviceType is SS_CLIR and
148 return "[SsData] " + "ServiceType: " + serviceType
153 + " Is Service Type CF: " + serviceType.isTypeCF();
/frameworks/base/telephony/java/com/android/ims/
H A DImsCallProfile.java198 public ImsCallProfile(int serviceType, int callType) { argument
199 mServiceType = serviceType;
270 return "{ serviceType=" + mServiceType +
/frameworks/base/core/java/android/net/nsd/
H A DNsdManager.java262 public void onStartDiscoveryFailed(String serviceType, int errorCode); argument
264 public void onStopDiscoveryFailed(String serviceType, int errorCode); argument
266 public void onDiscoveryStarted(String serviceType); argument
268 public void onDiscoveryStopped(String serviceType); argument
535 * @param serviceType The service type being discovered. Examples include "_http._tcp" for
539 * to stop discovery on this serviceType through a call on {@link #stopServiceDiscovery}.
542 public void discoverServices(String serviceType, int protocolType, DiscoveryListener listener) { argument
546 if (TextUtils.isEmpty(serviceType)) {
555 s.setServiceType(serviceType);
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsManager.java412 * @param serviceType a service type that is specified in {@link ImsCallProfile}
424 public boolean isConnected(int serviceId, int serviceType, int callType) argument
429 return mImsService.isConnected(serviceId, serviceType, callType);
458 * @param serviceType a service type that is specified in {@link ImsCallProfile}
475 int serviceType, int callType) throws ImsException {
479 return mImsService.createCallProfile(serviceId, serviceType, callType);
474 createCallProfile(int serviceId, int serviceType, int callType) argument
/frameworks/base/services/core/java/com/android/server/
H A DNsdService.java758 private boolean discoverServices(int discoveryId, String serviceType) { argument
759 if (DBG) Slog.d(TAG, "discoverServices: " + discoveryId + " " + serviceType);
761 mNativeConnector.execute("mdnssd", "discover", discoveryId, serviceType);
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java547 int uid, int vers, String serviceName, ServiceState svc, int serviceType, int opCount,
569 if (type != serviceType) {
2365 int serviceType, int curState, long curStartTime, long now) {
2372 long time = service.getDuration(serviceType, curState, curStartTime,
2404 int count, int serviceType, int state, long startTime, long now, long totalTime,
2410 dumpSingleServiceTime(pw, prefixInner, service, serviceType, state, startTime,
2413 long myTime = dumpSingleServiceTime(null, null, service, serviceType, state,
546 dumpServiceTimeCheckin(PrintWriter pw, String label, String packageName, int uid, int vers, String serviceName, ServiceState svc, int serviceType, int opCount, int curState, long curStartTime, long now) argument
2364 dumpSingleServiceTime(PrintWriter pw, String prefix, ServiceState service, int serviceType, int curState, long curStartTime, long now) argument
2402 dumpServiceStats(PrintWriter pw, String prefix, String prefixInner, String headerPrefix, String header, ServiceState service, int count, int serviceType, int state, long startTime, long now, long totalTime, boolean dumpAll) argument

Completed in 4298 milliseconds