HomeSort by relevance Sort by last modified time
    Searched defs:textBytes (Results 1 - 3 of 3) sorted by null

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
HSFriendlyNameElement.java 57 int textBytes = name.getText().getBytes(StandardCharsets.UTF_8).length;
58 if (textBytes > MAXIMUM_OPERATOR_NAME_LENGTH) {
60 + textBytes);
VenueNameElement.java 80 int textBytes = name.getText().getBytes(StandardCharsets.UTF_8).length;
81 if (textBytes > MAXIMUM_VENUE_NAME_LENGTH) {
82 throw new ProtocolException("Venue Name exceeds the maximum allowed " + textBytes);
OsuProviderInfo.java 247 int textBytes = name.getText().getBytes(StandardCharsets.UTF_8).length;
248 if (textBytes > MAXIMUM_I18N_STRING_LENGTH) {
250 + textBytes);

Completed in 80 milliseconds