/aosp_15_r20/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | AllocatedBuffer.java | 100 public abstract int position(); in position() method in AllocatedBuffer 111 public abstract AllocatedBuffer position(int position); in position() argument 133 public static AllocatedBuffer wrap(byte[] bytes) { in wrap() 142 public static AllocatedBuffer wrap(final byte[] bytes, final int offset, final int length) { in wrap() 186 public int position() { in wrap() method in AllocatedBuffer 191 public AllocatedBuffer position(int position) { in wrap() argument
|
/aosp_15_r20/external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | AllocatedBuffer.java | 100 public abstract int position(); in position() method in AllocatedBuffer 111 public abstract AllocatedBuffer position(int position); in position() argument 133 public static AllocatedBuffer wrap(byte[] bytes) { in wrap() 142 public static AllocatedBuffer wrap(final byte[] bytes, final int offset, final int length) { in wrap() 186 public int position() { in wrap() method in AllocatedBuffer 191 public AllocatedBuffer position(int position) { in wrap() method in AllocatedBuffer
|
/aosp_15_r20/frameworks/base/core/java/com/android/internal/util/ |
H A D | BitUtils.java | 104 public static int bytesToBEInt(byte[] bytes) { in bytesToBEInt() 111 public static int bytesToLEInt(byte[] bytes) { in bytesToLEInt() 115 public static int getUint8(ByteBuffer buffer, int position) { in getUint8() 119 public static int getUint16(ByteBuffer buffer, int position) { in getUint16() 123 public static long getUint32(ByteBuffer buffer, int position) { in getUint32() 127 public static void put(ByteBuffer buffer, int position, byte[] bytes) { in put()
|
/aosp_15_r20/prebuilts/devtools/tools/lib/ |
HD | jobb.jar | ... .nio.channels.FileChannel$MapMode mode
long position
long size
public long position () throws java. |
/aosp_15_r20/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/ |
H A D | ByteBufferChannel.java | 28 public ByteBufferChannel(byte[] bytes) { in ByteBufferChannel() 32 public ByteBufferChannel(byte[] bytes, int offset, int length) { in ByteBufferChannel() 70 public long position() throws IOException { in position() method in ByteBufferChannel 75 public SeekableByteChannel position(long newPosition) throws IOException { in position() method in ByteBufferChannel
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/14/libcore/ojluni/src/main/java/java/sql/ |
D | Blob.java | 130 long position(byte pattern[], long start) throws SQLException; in position() method 149 long position(Blob pattern, long start) throws SQLException; in position() method 181 int setBytes(long pos, byte[] bytes) throws SQLException; in setBytes() 217 int setBytes(long pos, byte[] bytes, int offset, int len) throws SQLException; in setBytes()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/sql/ |
D | Blob.java | 130 long position(byte pattern[], long start) throws SQLException; in position() method 149 long position(Blob pattern, long start) throws SQLException; in position() method 181 int setBytes(long pos, byte[] bytes) throws SQLException; in setBytes() 217 int setBytes(long pos, byte[] bytes, int offset, int len) throws SQLException; in setBytes()
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/sql/ |
H A D | Blob.java | 130 long position(byte pattern[], long start) throws SQLException; in position() method 149 long position(Blob pattern, long start) throws SQLException; in position() method 181 int setBytes(long pos, byte[] bytes) throws SQLException; in setBytes() 217 int setBytes(long pos, byte[] bytes, int offset, int len) throws SQLException; in setBytes()
|
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/testing/ |
H A D | StreamingTestUtil.java | 68 public SeekableByteBufferChannel(byte[] bytes) { in SeekableByteBufferChannel() 72 public SeekableByteBufferChannel(byte[] bytes, int maxChunkSize) { in SeekableByteBufferChannel() 77 public long position() throws ClosedChannelException { in position() method in StreamingTestUtil.SeekableByteBufferChannel 84 public synchronized SeekableByteBufferChannel position(long newPosition) in position() method in StreamingTestUtil.SeekableByteBufferChannel 158 public ByteBufferChannel(byte[] bytes) { in ByteBufferChannel() 162 public ByteBufferChannel(byte[] bytes, int maxChunkSize) { in ByteBufferChannel() 166 public ByteBufferChannel(byte[] bytes, int maxChunkSize, boolean noDataEveryOtherRead) { in ByteBufferChannel() 222 private long position; field in StreamingTestUtil.PseudorandomReadableByteChannel 833 int position = 0; in testEncryptDecryptString() local 874 int position = 0; in tryDecryptModifiedCiphertext() local
|
/aosp_15_r20/libcore/luni/src/main/java/libcore/io/ |
H A D | Linux.java | 179 final int position = buffer.position(); in pread() local 190 …public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thro… in pread() 197 final int position = buffer.position(); in pwrite() local 208 …public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thr… in pwrite() 215 final int position = buffer.position(); in read() local 226 …public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoExcept… in read() 236 final int position = buffer.position(); in recvfrom() local 247 …public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, Ine… in recvfrom() 260 final int position = buffer.position(); in sendto() local 271 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetA… in sendto() [all …]
|
/aosp_15_r20/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | ByteString.cs | 58 private readonly ReadOnlyMemory<byte> bytes; field in Google.Protobuf.ByteString 63 internal static ByteString AttachBytes(ReadOnlyMemory<byte> bytes) in AttachBytes() 73 internal static ByteString AttachBytes(byte[] bytes) in AttachBytes() 82 private ByteString(ReadOnlyMemory<byte> bytes) in ByteString() 160 public static ByteString FromBase64(string bytes) in FromBase64() 212 public static ByteString CopyFrom(params byte[] bytes) in CopyFrom() 220 public static ByteString CopyFrom(byte[] bytes, int offset, int count) in CopyFrom() 232 public static ByteString CopyFrom(ReadOnlySpan<byte> bytes) in CopyFrom() 411 public void CopyTo(byte[] array, int position) in CopyTo()
|
/aosp_15_r20/external/protobuf/csharp/src/Google.Protobuf/ |
H A D | ByteString.cs | 58 private readonly ReadOnlyMemory<byte> bytes; field in Google.Protobuf.ByteString 63 internal static ByteString AttachBytes(ReadOnlyMemory<byte> bytes) in AttachBytes() 73 internal static ByteString AttachBytes(byte[] bytes) in AttachBytes() 82 private ByteString(ReadOnlyMemory<byte> bytes) in ByteString() 160 public static ByteString FromBase64(string bytes) in FromBase64() 212 public static ByteString CopyFrom(params byte[] bytes) in CopyFrom() 220 public static ByteString CopyFrom(byte[] bytes, int offset, int count) in CopyFrom() 232 public static ByteString CopyFrom(ReadOnlySpan<byte> bytes) in CopyFrom() 411 public void CopyTo(byte[] array, int position) in CopyTo()
|
/aosp_15_r20/external/icu/android_icu4j/src/main/java/android/icu/text/ |
H A D | RuleBasedBreakIterator.java | 103 ByteBuffer bytes, boolean phraseBreaking) throws IOException { in getInstanceFromCompiledRules() 126 …public static RuleBasedBreakIterator getInstanceFromCompiledRules(ByteBuffer bytes) throws IOExcep… in getInstanceFromCompiledRules() 1403 boolean populateNear(int position) { in populateNear() 1527 assert fTextIdx == position; in populateNear() local 1598 int position = textBegin; in populatePreceding() local 1715 void addFollowing(int position, int ruleStatusIdx, boolean update) { in addFollowing() 1744 boolean addPreceding(int position, int ruleStatusIdx, boolean update) { in addPreceding()
|
/aosp_15_r20/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/text/ |
H A D | RuleBasedBreakIterator.java | 103 ByteBuffer bytes, boolean phraseBreaking) throws IOException { in getInstanceFromCompiledRules() 126 …public static RuleBasedBreakIterator getInstanceFromCompiledRules(ByteBuffer bytes) throws IOExcep… in getInstanceFromCompiledRules() 1424 boolean populateNear(int position) { in populateNear() 1548 assert fTextIdx == position; in populateNear() local 1619 int position = textBegin; in populatePreceding() local 1736 void addFollowing(int position, int ruleStatusIdx, boolean update) { in addFollowing() 1765 boolean addPreceding(int position, int ruleStatusIdx, boolean update) { in addPreceding()
|
/aosp_15_r20/dalvik/dx/src/com/android/dex/util/ |
H A D | ByteArrayByteInput.java | 21 private final byte[] bytes; field in ByteArrayByteInput 22 private int position; field in ByteArrayByteInput 24 public ByteArrayByteInput(byte... bytes) { in ByteArrayByteInput()
|
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/input/ |
H A D | NullInputStream.java | 77 private long position; field in NullInputStream 233 protected void processBytes(final byte[] bytes, final int offset, final int length) { in processBytes() 271 public int read(final byte[] bytes) throws IOException { in read() 289 public int read(final byte[] bytes, final int offset, final int length) throws IOException { in read()
|
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/source/mediaparser/ |
H A D | InputReaderAdapterV30.java | 50 public void setCurrentPosition(long position) { in setCurrentPosition() 67 public void seekToPosition(long position) { in seekToPosition() 72 public int read(byte[] bytes, int offset, int readLength) throws IOException { in read()
|
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/source/mediaparser/ |
H A D | InputReaderAdapterV30.java | 50 public void setCurrentPosition(long position) { in setCurrentPosition() 67 public void seekToPosition(long position) { in seekToPosition() 72 public int read(byte[] bytes, int offset, int readLength) throws IOException { in read()
|
/aosp_15_r20/out/soong/.intermediates/external/protobuf/libprotobuf-java-lite/android_common_apex34/javac/ |
D | libprotobuf-java-lite.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/aosp_15_r20/out/soong/.intermediates/external/cronet/components/cronet/android/cronet_aml_components_cronet_android_request_context_config_java_proto/android_common/jarjar/ |
D | cronet_aml_components_cronet_android_request_context_config_java_proto.jar | org/chromium/net/RequestContextConfigOptionsOrBuilder.class
RequestContextConfigOptionsOrBuilder.java
package org.chromium.net
public ... |
/aosp_15_r20/out/soong/.intermediates/external/protobuf/libprotobuf-java-lite/android_common_apex33/javac/ |
D | libprotobuf-java-lite.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/aosp_15_r20/out/soong/.intermediates/external/cronet/components/cronet/android/cronet_aml_components_cronet_android_request_context_config_java_proto/android_common/combined/ |
D | cronet_aml_components_cronet_android_request_context_config_java_proto.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/aosp_15_r20/out/soong/.intermediates/external/protobuf/libprotobuf-java-lite/android_common/javac/ |
D | libprotobuf-java-lite.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/aosp_15_r20/out/target/common/obj/JAVA_LIBRARIES/am_intermediates/ |
D | classes.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/android/
com/ ... |
/aosp_15_r20/out/soong/.intermediates/external/protobuf/libprotobuf-java-lite/android_common_apex10000/javac/ |
D | libprotobuf-java-lite.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |