Home
last modified time | relevance | path

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

/titanic_44/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DTXTRecord.java67 protected byte[] fBytes; field in TXTRecord
71 { fBytes = new byte[0]; } in TXTRecord()
75 { fBytes = (byte[]) initBytes.clone(); } in TXTRecord()
126 byte[] oldBytes = fBytes; in insert()
132 for ( int i=0; i < index && insertion < fBytes.length; i++) in insert()
133 insertion += fBytes[ insertion] + 1; in insert()
138 fBytes = new byte[ newLen]; in insert()
139 System.arraycopy( oldBytes, 0, fBytes, 0, insertion); in insert()
141 System.arraycopy( oldBytes, insertion, fBytes, newLen - secondHalfLen, secondHalfLen); in insert()
142 fBytes[ insertion] = avLen; in insert()
[all …]