Home
last modified time | relevance | path

Searched refs:typeStr (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
DNonEAPInnerAuth.java81 public static int getAuthTypeID(String typeStr) { in getAuthTypeID() argument
82 if (AUTH_TYPE_MAP.containsKey(typeStr)) { in getAuthTypeID()
83 return AUTH_TYPE_MAP.get(typeStr).intValue(); in getAuthTypeID()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/bluetooth/
DBluetoothNameUtils.java51 String typeStr = matcher.group(1); in getSetupType() local
53 if (typeStr != null) { in getSetupType()
55 return Integer.parseInt(typeStr); in getSetupType()
/packages/modules/NetworkStack/common/netlinkclient/src/android/net/netlink/
DStructNlMsgHdr.java144 final String typeStr = "" + nlmsg_type in toString() local
152 + "nlmsg_type{" + typeStr + "}, " in toString()
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DXmlUtilHelper.java649 String typeStr; in writeValueXml() local
666 typeStr = "int"; in writeValueXml()
668 typeStr = "long"; in writeValueXml()
670 typeStr = "float"; in writeValueXml()
672 typeStr = "double"; in writeValueXml()
674 typeStr = "boolean"; in writeValueXml()
720 out.startTag(null, typeStr); in writeValueXml()
725 out.endTag(null, typeStr); in writeValueXml()
/packages/apps/Car/libs/car-broadcastradio-support/src/com/android/car/broadcastradio/support/platform/
DProgramSelectorExt.java412 BiFunction<String, String, Identifier> parseComponents = (typeStr, valueStr) -> { in fromUri()
413 int type = uriToType(typeStr); in fromUri()
/packages/apps/Dialer/java/com/android/incallui/
DContactInfoCache.java891 final CharSequence typeStr = Phone.getTypeLabel(context.getResources(), type, label); in onPhoneNumberInfoComplete() local
892 entry.label = typeStr == null ? null : typeStr.toString(); in onPhoneNumberInfoComplete()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHal.java2214 public boolean setWpsDeviceType(String typeStr) { in setWpsDeviceType() argument
2216 Matcher match = WPS_DEVICE_TYPE_PATTERN.matcher(typeStr); in setWpsDeviceType()
2218 Log.e(TAG, "Malformed WPS device type " + typeStr); in setWpsDeviceType()
2233 "setWpsDeviceType(" + typeStr + ")"); in setWpsDeviceType()
2243 Log.e(TAG, "Illegal argument " + typeStr, e); in setWpsDeviceType()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSupplicantStaIfaceHal.java1569 public boolean setWpsDeviceType(@NonNull String ifaceName, String typeStr) { in setWpsDeviceType() argument
1572 Matcher match = WPS_DEVICE_TYPE_PATTERN.matcher(typeStr); in setWpsDeviceType()
1574 Log.e(TAG, "Malformed WPS device type " + typeStr); in setWpsDeviceType()
1588 Log.e(TAG, "Illegal argument " + typeStr, e); in setWpsDeviceType()