HomeSort by relevance Sort by last modified time
    Searched defs:textBytes (Results 1 - 5 of 5) 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);
  /prebuilts/go/darwin-x86/src/cmd/internal/test2json/
test2json.go 37 Output *textBytes `json:",omitempty"`
40 // textBytes is a hack to get JSON to emit a []byte as a string
44 type textBytes []byte
46 func (b textBytes) MarshalText() ([]byte, error) { return b, nil }
298 Output: (*textBytes)(&out),
  /prebuilts/go/linux-x86/src/cmd/internal/test2json/
test2json.go 37 Output *textBytes `json:",omitempty"`
40 // textBytes is a hack to get JSON to emit a []byte as a string
44 type textBytes []byte
46 func (b textBytes) MarshalText() ([]byte, error) { return b, nil }
298 Output: (*textBytes)(&out),

Completed in 108 milliseconds