Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/util/
DFixedByteArrayOutputStream.java79 public void write(byte[] b, int off, int len) throws IOException { in write() argument
85 System.arraycopy(b, off + len - mBuffer.length, mBuffer, 0, mBuffer.length); in write()
93 System.arraycopy(b, off, mBuffer, mWritePos, len); in write()
96 System.arraycopy(b, off, mBuffer, mWritePos, freeSpace); in write()
98 System.arraycopy(b, off + freeSpace, mBuffer, 0, len - freeSpace); in write()
DSizeLimitedOutputStream.java191 public synchronized void write(byte[] b, int off, int len) throws IOException { in write() argument
203 mCurrentOutputStream.write(b, off, (int)sizeToWrite); in write()
206 off += sizeToWrite; in write()
/tools/tradefederation/core/src/com/android/tradefed/log/
DConsoleReaderOutputStream.java110 public synchronized void write(byte[] b, int off, int len) throws IOException { in write() argument
111 final boolean shufflePrompt = mInAsyncMode && (b[off + len - 1] == '\n'); in write()
123 mConsoleReader.printString(new String(b, off, len)); in write()
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/ber/
DInputStreamBerDataValueReader.java268 public int read(byte[] b, int off, int len) throws IOException { in read() argument
269 len = mIn.read(b, off, len); in read()
271 mBuf.write(b, off, len); in read()
/tools/tradefederation/core/atest/docs/
Datest_structure.md3 You're here because you'd like to contribute to atest. To start off, we'll
49 the ```AtestTradefedTestRunner``` is used to kick off ```hello_world_test```.
115 4. You're done! To pick up the override, rerun build/envsetup.sh to kick off the
/tools/test/connectivity/acts/tests/google/bt/pts/instructions/
DMCAP_PTS_INSTRUCTIONS15 Requires mcap_tool, Bluetooth to be off on the phone before starting mcap_tool
29 Turn Bluetooth off in the UI
/tools/metalava/
Dgradlew.bat1 @if "%DEBUG%" == "" @echo off
/tools/tradefederation/core/
Dtradefed_win.bat1 @echo off
/tools/appbundle/bundletool/etc/
Dbundletool.bat1 @echo off
/tools/apksig/etc/
Dapksigner.bat1 @echo off
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DZFile.java910 public int read(@Nonnull byte[] b, int off, int len) throws IOException { in directOpen() argument
912 Preconditions.checkArgument(off >= 0, "off < 0"); in directOpen()
913 Preconditions.checkArgument(off <= b.length, "off > b.length"); in directOpen()
915 Preconditions.checkArgument(off + len <= b.length, "off + len > b.length"); in directOpen()
928 int r = directRead(mCurr, b, off, Ints.checkedCast(toRead)); in directOpen()
/tools/tradefederation/core/res/jacoco/
Djacocoagent.jarMETA-INF/MANIFEST.MF META-INF/MTNMINDS.SF META-INF/MTNMINDS ...
Djacocoant.jarMETA-INF/MANIFEST.MF META-INF/MTNMINDS.SF META-INF/MTNMINDS ...
/tools/repohooks/
DREADME.md164 # Turn off gofmt checking.