Home
last modified time | relevance | path

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

/tools/repohooks/tools/
Dcheckpatch.pl1212 my $off = 0;
1218 for ($off = 1; $off < length($line); $off++) {
1219 $c = substr($line, $off, 1);
1223 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') {
1226 substr($res, $off, 2, "$;$;");
1227 $off++;
1230 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') {
1232 substr($res, $off, 2, "$;$;");
1233 $off++;
1236 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') {
[all …]
/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()
DShellOutputReceiverStream.java55 public void write(byte[] b, int off, int len) { in write() argument
59 mReceiver.addOutput(b, off, len); 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/tradefederation/core/
DAndroid.bp120 // Turn off various doclava warnings when generating
122 // turned off in frameworks/base, plus error 101
Dtradefed_win.bat1 @echo off
/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/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/metalava/
Dgradlew.bat1 @if "%DEBUG%" == "" @echo off
/tools/trebuchet/
Dgradlew.bat1 @if "%DEBUG%" == "" @echo off
/tools/apksig/etc/
Dapksigner.bat1 @echo off
/tools/metalava/src/test/java/com/android/tools/metalava/model/psi/
DPsiTypePrinterTest.kt401 fun `Test primitives with type use turned off`() { in <lambda>()
/tools/metalava/src/main/java/com/android/tools/metalava/
DDriver.kt771 override fun write(b: ByteArray, off: Int, len: Int) { in write()
772 writer.write(String(b, off, len, UTF_8)) in write()
/tools/metalava/src/test/java/com/android/tools/metalava/
DDriverTest.kt146 override fun write(b: ByteArray?, off: Int, len: Int) { in <lambda>()
148 super.write(b, off, len) in <lambda>()
/tools/repohooks/
DREADME.md168 # Turn off gofmt checking.