/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 | 84 * @param serviceType service type.<br> 91 String serviceType, Map<String, String> txtMap) { 92 if (TextUtils.isEmpty(instanceName) || TextUtils.isEmpty(serviceType)) { 105 queries.add(createPtrServiceQuery(instanceName, serviceType)); 106 queries.add(createTxtServiceQuery(instanceName, serviceType, txtRecord)); 116 * @param serviceType service type.<br> 121 String serviceType) { 125 sb.append(createRequest(serviceType + ".local.", DNS_TYPE_PTR, VERSION_1)); 142 * @param serviceType service type.<br> 148 String serviceType, [all...] |
WifiP2pServiceRequest.java | 88 * @param serviceType service discovery type. 93 private WifiP2pServiceRequest(int serviceType, int length, 95 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...] |
/external/webkit/Source/WebCore/html/ |
HTMLPlugInImageElement.h | 49 const String& serviceType() const { return m_serviceType; } 70 bool wouldLoadAsNetscapePlugin(const String& url, const String& serviceType);
|
HTMLObjectElement.cpp | 155 // FIXME: This function should not deal with url or serviceType! 156 void HTMLObjectElement::parametersForPlugin(Vector<String>& paramNames, Vector<String>& paramValues, String& url, String& serviceType) 179 // FIXME: serviceType calculation does not belong in this function. 180 if (serviceType.isEmpty() && equalIgnoringCase(name, "type")) { 181 serviceType = p->value(); 182 size_t pos = serviceType.find(";"); 184 serviceType = serviceType.left(pos); 194 if (MIMETypeRegistry::isJavaAppletMIMEType(serviceType)) { 220 if (loader->resourceWillUsePlugin(urlParameter, serviceType, shouldPreferPlugInsForImages()) [all...] |
HTMLPlugInImageElement.cpp | 94 bool HTMLPlugInImageElement::wouldLoadAsNetscapePlugin(const String& url, const String& serviceType) 104 if (frameLoader->client()->objectContentType(completedURL, serviceType, shouldPreferPlugInsForImages()) == ObjectContentNetscapePlugin)
|
HTMLObjectElement.h | 92 // FIXME: This function should not deal with url or serviceType 94 void parametersForPlugin(Vector<String>& paramNames, Vector<String>& paramValues, String& url, String& serviceType);
|
/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/webkit/Source/WebCore/platform/graphics/wince/ |
MediaPlayerProxy.cpp | 101 String serviceType; 111 serviceType = "application/x-mplayer2"; 112 frame->loader()->subframeLoader()->requestObject(static_cast<RenderPartObject*>(element->renderer()), url, nullAtom, serviceType, paramNames, paramValues);
|
/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) {
|
/external/webkit/Source/WebCore/loader/ |
SubframeLoader.h | 66 const String& serviceType, const Vector<String>& paramNames, const Vector<String>& paramValues); 83 bool requestPlugin(HTMLPlugInImageElement*, const KURL&, const String& serviceType, const Vector<String>& paramNames, const Vector<String>& paramValues, bool useFallback);
|
/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. */
|
/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 | 690 private boolean discoverServices(int discoveryId, String serviceType) { 691 if (DBG) Slog.d(TAG, "discoverServices: " + discoveryId + " " + serviceType); 693 mNativeConnector.execute("mdnssd", "discover", discoveryId, serviceType); [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebChromeClient.cpp | 456 m_page->send(Messages::WebPageProxy::MissingPluginButtonClicked(pluginElement->serviceType(), pluginElement->url(), pluginElement->getAttribute(pluginspageAttr)));
|