OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:oldbytes
(Results
1 - 1
of
1
) sorted by null
/frameworks/base/core/java/android/net/nsd/
DnsSdTxtRecord.java
127
byte[]
oldBytes
= mData;
128
mData = new byte[
oldBytes
.length - avLen - 1];
129
System.arraycopy(
oldBytes
, 0, mData, 0, avStart);
130
System.arraycopy(
oldBytes
, avStart + avLen + 1, mData, avStart,
131
oldBytes
.length - avStart - avLen - 1);
169
byte[]
oldBytes
= mData;
179
newLen = avLen +
oldBytes
.length + 1;
182
System.arraycopy(
oldBytes
, 0, mData, 0, insertion);
183
int secondHalfLen =
oldBytes
.length - insertion;
184
System.arraycopy(
oldBytes
, insertion, mData, newLen - secondHalfLen, secondHalfLen)
[
all
...]
Completed in 139 milliseconds