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

1 2

  /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...]
WifiP2pServiceRequest.java 90 * @param serviceType service discovery type.
95 private WifiP2pServiceRequest(int serviceType, int length,
97 mProtocolType = serviceType;
WifiP2pServiceResponse.java 112 * @param serviceType service discovery type.
118 protected WifiP2pServiceResponse(int serviceType, int status, int transId,
120 mServiceType = serviceType;
296 sbuf.append("serviceType:").append(mServiceType);
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ServiceDeclaration.java 40 int serviceType = 0;
43 Entry(UUID uuid, int serviceType, int instance) {
47 this.serviceType = serviceType;
72 void addService(UUID uuid, int serviceType, int instance, int minHandles) {
73 mEntries.add(new Entry(uuid, serviceType, instance));
81 void addIncludedService(UUID uuid, int serviceType, int instance) {
82 Entry entry = new Entry(uuid, serviceType, instance);
HandleMap.java 41 int serviceType = 0;
46 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) {
52 this.serviceType = serviceType;
89 void addService(int serverIf, int handle, UUID uuid, int serviceType, int instance) {
90 mEntries.add(new Entry(serverIf, handle, uuid, serviceType, instance));
123 int getServiceHandle(UUID uuid, int serviceType, int instance) {
126 entry.serviceType == serviceType &&
GattService.java     [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattService.java 89 * @param serviceType The type of this service,
93 public BluetoothGattService(UUID uuid, int serviceType) {
97 mServiceType = serviceType;
107 int instanceId, int serviceType) {
111 mServiceType = serviceType;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLObjectElement.cpp 142 // FIXME: This function should not deal with url or serviceType!
143 void HTMLObjectElement::parametersForPlugin(Vector<String>& paramNames, Vector<String>& paramValues, String& url, String& serviceType)
166 // FIXME: serviceType calculation does not belong in this function.
167 if (serviceType.isEmpty() && equalIgnoringCase(name, "type")) {
168 serviceType = p->value();
169 size_t pos = serviceType.find(";");
171 serviceType = serviceType.left(pos);
181 if (MIMETypeRegistry::isJavaAppletMIMEType(serviceType)) {
207 if (shouldUsePlugin(completedURL, serviceType, false, useFallback)
    [all...]
HTMLPlugInImageElement.h 59 const String& serviceType() const { return m_serviceType; }
65 String mimeType = serviceType();
92 bool wouldLoadAsNetscapePlugin(const String& url, const String& serviceType);
HTMLObjectElement.h 95 // FIXME: This function should not deal with url or serviceType
97 void parametersForPlugin(Vector<String>& paramNames, Vector<String>& paramValues, String& url, String& serviceType);
HTMLPlugInImageElement.cpp 114 bool HTMLPlugInImageElement::wouldLoadAsNetscapePlugin(const String& url, const String& serviceType)
124 if (frameLoader->client()->objectContentType(completedURL, serviceType, shouldPreferPlugInsForImages()) == ObjectContentNetscapePlugin)
  /development/samples/training/NsdChat/src/com/example/android/nsdchat/
NsdHelper.java 83 public void onDiscoveryStopped(String serviceType) {
84 Log.i(TAG, "Discovery stopped: " + serviceType);
88 public void onStartDiscoveryFailed(String serviceType, int errorCode) {
94 public void onStopDiscoveryFailed(String serviceType, int errorCode) {
  /frameworks/base/core/java/android/net/nsd/
NsdManager.java 263 public void onStartDiscoveryFailed(String serviceType, int errorCode);
265 public void onStopDiscoveryFailed(String serviceType, int errorCode);
267 public void onDiscoveryStarted(String serviceType);
269 public void onDiscoveryStopped(String serviceType);
510 * @param serviceType The service type being discovered. Examples include "_http._tcp" for
514 * to stop discovery on this serviceType through a call on {@link #stopServiceDiscovery}.
517 public void discoverServices(String serviceType, int protocolType, DiscoveryListener listener) {
521 if (TextUtils.isEmpty(serviceType)) {
530 s.setServiceType(serviceType);
  /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,
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Registry/
Registry.cpp 633 fseek(fs, offsetof(mclfHeaderV2_t, serviceType), SEEK_SET);
634 serviceType_t serviceType;
635 fread((char *)&serviceType, 1, sizeof(serviceType), fs);
643 int serviceType_safe = serviceType > SERVICE_TYPE_SYSTEM_TRUSTLET ? SERVICE_TYPE_ILLEGAL : serviceType;
644 LOG_I(" Service is a %s (service type %d)", service_types[serviceType_safe], serviceType);
649 if (SERVICE_TYPE_DRIVER == serviceType || SERVICE_TYPE_SYSTEM_TRUSTLET == serviceType) {
660 } else if (SERVICE_TYPE_SP_TRUSTLET == serviceType) {
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
mcLoadFormat.h 119 serviceType_t serviceType; /**< Type of service. */
123 mcDriverId_t driverId; /**< If the serviceType is SERVICE_TYPE_DRIVER the Driver ID is used. */
  /cts/tests/tests/net/src/android/net/wifi/cts/
NsdManagerTest.java 78 public void onStartDiscoveryFailed(String serviceType, int errorCode) {
83 public void onStopDiscoveryFailed(String serviceType, int errorCode) {
88 public void onDiscoveryStarted(String serviceType) {
90 info.setServiceType(serviceType);
95 public void onDiscoveryStopped(String serviceType) {
97 info.setServiceType(serviceType);
  /system/netd/
MDnsSdListener.h 118 const char *serviceName, const char *serviceType, const char *domain,
MDnsSdListener.cpp 155 const char *interfaceName, const char *serviceName, const char *serviceType,
159 interfaceName, serviceName, serviceType, domain, host, port, txtLen);
173 serviceType, domain, host, port, txtLen, txtRecord, &MDnsSdListenerRegisterCallback,
412 char *serviceType = argv[3];
414 discover(cli, NULL, serviceType, NULL, requestId, 0);
425 char *serviceType = argv[4];
434 serviceType, domain, host, port, textLen, textRecord);
  /external/jmdns/src/javax/jmdns/impl/
DNSQuestion.java 99 for (String serviceType : jmDNSImpl.getServiceTypes().keySet()) {
100 ServiceTypeEntry typeEntry = jmDNSImpl.getServiceTypes().get(serviceType);
  /frameworks/base/services/java/com/android/server/
NsdService.java 702 private boolean discoverServices(int discoveryId, String serviceType) {
703 if (DBG) Slog.d(TAG, "discoverServices: " + discoveryId + " " + serviceType);
705 mNativeConnector.execute("mdnssd", "discover", discoveryId, serviceType);
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ProcessStats.java 443 int uid, String serviceName, ServiceState svc, int serviceType, int opCount,
463 if (type != serviceType) {
    [all...]
  /prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.6/
gradle-tooling-api-1.6.jar 

Completed in 1481 milliseconds

1 2