Searched defs:getTextBytes (Results 1 - 2 of 2) sorted by relevance

/external/jmdns/src/javax/jmdns/
H A DServiceInfo.java566 public abstract byte[] getTextBytes(); method in class:ServiceInfo
/external/jmdns/src/javax/jmdns/impl/
H A DServiceInfoImpl.java222 this._text = info.getTextBytes();
590 * @see javax.jmdns.ServiceInfo#getTextBytes()
593 public byte[] getTextBytes() { method in class:ServiceInfoImpl
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(), of
[all...]

Completed in 1248 milliseconds