HomeSort by relevance Sort by last modified time
    Searched refs:rawAddress (Results 1 - 5 of 5) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/
EmailAddress.java 60 public static synchronized EmailAddress getEmailAddress(String rawAddress) {
62 if (rawAddress == null) {
63 LogUtils.e(LOG_TAG, "null rawAddress in EmailAddress#getEmailAddress");
64 rawAddress = "";
66 Matcher m = sEmailMatcher.reset(rawAddress);
82 final Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(rawAddress);
89 address = Html.fromHtml(rawAddress).toString();
  /libcore/luni/src/main/native/
NetworkUtilities.cpp 49 const void* rawAddress;
55 rawAddress = &sin.sin_addr.s_addr;
60 rawAddress = &sin6.sin6_addr.s6_addr;
66 rawAddress = &sun.sun_path;
84 reinterpret_cast<const jbyte*>(rawAddress));
  /external/jmdns/src/javax/jmdns/impl/
HostInfo.java 241 byte[] rawAddress = this.getInetAddress().getAddress();
242 String address = (rawAddress[12] & 0xff) + "." + (rawAddress[13] & 0xff) + "." + (rawAddress[14] & 0xff) + "." + (rawAddress[15] & 0xff);
DNSRecord.java 179 IPv4Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) {
180 super(name, DNSRecordType.TYPE_A, recordClass, unique, ttl, rawAddress);
221 IPv6Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) {
222 super(name, DNSRecordType.TYPE_AAAA, recordClass, unique, ttl, rawAddress);
273 protected Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) {
276 this._addr = InetAddress.getByAddress(rawAddress);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Address.java 116 public static synchronized Address getEmailAddress(String rawAddress) {
117 if (TextUtils.isEmpty(rawAddress)) {
121 final Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(rawAddress);
129 address = rawAddress == null ?
130 "" : Utils.convertHtmlToPlainText(rawAddress).toString();

Completed in 6288 milliseconds