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

  /external/jmdns/src/javax/jmdns/impl/
ServiceInfoImpl.java 222 this._text = info.getTextBytes();
590 * @see javax.jmdns.ServiceInfo#getTextBytes()
593 public byte[] getTextBytes() {
816 if ((_props == null) && (this.getTextBytes() != null)) {
820 while (off < getTextBytes().length) {
822 int len = getTextBytes()[off++] & 0xFF;
823 if ((len == 0) || (off + len > getTextBytes().length)) {
829 for (; (i < len) && (getTextBytes()[off + i] != '='); i++) {
834 String name = readUTF(getTextBytes(), off, i);
843 System.arraycopy(getTextBytes(), off + i, value, 0, len - i)
    [all...]
ListenerStatus.java 120 byte[] text = info.getTextBytes();
121 byte[] lastText = lastInfo.getTextBytes();
JmDNSImpl.java 773 srvBytes = cachedServiceEntryInfo.getTextBytes();
784 cachedInfo._setText(cachedAddressInfo.getTextBytes());
794 cachedInfo._setText(cachedAddressInfo.getTextBytes());
801 cachedInfo._setText(cachedTextInfo.getTextBytes());
804 if (cachedInfo.getTextBytes().length == 0) {
    [all...]
  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 566 public abstract byte[] getTextBytes();

Completed in 95 milliseconds