Home
last modified time | relevance | path

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

/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
DChannel.java769 public ByteBuffer ExpandIf(ByteBuffer buff, int extra) { in ExpandIf() argument
770 if (extra <= buff.remaining()) { in ExpandIf()
771 return buff; in ExpandIf()
773 ByteBuffer ret = ByteBuffer.allocate(buff.position() + extra); in ExpandIf()
774 ret.order(buff.order()); in ExpandIf()
775 ret.put(buff.array(), 0, buff.position()); in ExpandIf()