Home
last modified time | relevance | path

Searched refs:getTextBytes (Results 1 – 4 of 4) sorted by relevance

/external/jmdns/src/javax/jmdns/impl/
DServiceInfoImpl.java222 this._text = info.getTextBytes(); in ServiceInfoImpl()
593 public byte[] getTextBytes() { in getTextBytes() method in ServiceInfoImpl
816 if ((_props == null) && (this.getTextBytes() != null)) { in getProperties()
820 while (off < getTextBytes().length) { in getProperties()
822 int len = getTextBytes()[off++] & 0xFF; in getProperties()
823 if ((len == 0) || (off + len > getTextBytes().length)) { in getProperties()
829 for (; (i < len) && (getTextBytes()[off + i] != '='); i++) { in getProperties()
834 String name = readUTF(getTextBytes(), off, i); in getProperties()
843 System.arraycopy(getTextBytes(), off + i, value, 0, len - i); in getProperties()
943 …s.getServer() != null && this.hasInetAddress() && this.getTextBytes() != null && this.getTextBytes in hasData()
[all …]
DListenerStatus.java120 byte[] text = info.getTextBytes(); in _sameInfo()
121 byte[] lastText = lastInfo.getTextBytes(); in _sameInfo()
DJmDNSImpl.java773 srvBytes = cachedServiceEntryInfo.getTextBytes(); in getServiceInfoFromCache()
784 cachedInfo._setText(cachedAddressInfo.getTextBytes()); in getServiceInfoFromCache()
794 cachedInfo._setText(cachedAddressInfo.getTextBytes()); in getServiceInfoFromCache()
801 cachedInfo._setText(cachedTextInfo.getTextBytes()); in getServiceInfoFromCache()
804 if (cachedInfo.getTextBytes().length == 0) { in getServiceInfoFromCache()
/external/jmdns/src/javax/jmdns/
DServiceInfo.java566 public abstract byte[] getTextBytes(); in getTextBytes() method in ServiceInfo