Searched defs:getBytes (Results 1 - 19 of 19) sorted by relevance

/libcore/luni/src/main/java/android/system/
H A DStructIcmpHdr.java59 public byte[] getBytes() { method in class:StructIcmpHdr
/libcore/ojluni/src/main/java/java/sql/
H A DRowId.java94 byte[] getBytes(); method in interface:RowId
H A DBlob.java97 byte[] getBytes(long pos, int length) throws SQLException; method in interface:Blob
178 * @see #getBytes
214 * @see #getBytes
H A DCallableStatement.java316 byte[] getBytes(int parameterIndex) throws SQLException; method in interface:CallableStatement
969 * @see #getBytes
1487 byte[] getBytes(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java379 byte[] getBytes(int columnIndex) throws SQLException; method in interface:ResultSet
667 byte[] getBytes(String columnLabel) throws SQLException; method in interface:ResultSet
/libcore/ojluni/src/main/java/sun/misc/
H A DResource.java74 /* Cache result in case getBytes is called after getByteBuffer. */
85 public byte[] getBytes() throws IOException { method in class:Resource
H A DCharacterEncoder.java210 private byte [] getBytes(ByteBuffer bb) { method in class:CharacterEncoder
255 byte [] buf = getBytes(aBuffer);
266 byte [] buf = getBytes(aBuffer);
339 byte [] buf = getBytes(aBuffer);
350 byte [] buf = getBytes(aBuffer);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DOutputStreamTesterTest.java90 public byte[] getBytes() throws IOException { method in class:OutputStreamTesterTest.FileOutputStreamSinkTester
109 public byte[] getBytes() throws IOException { method in class:OutputStreamTesterTest.ByteArrayOutputStreamSinkTester
140 public byte[] getBytes() throws Exception { method in class:OutputStreamTesterTest.PipedOutputStreamSinkTester
/libcore/ojluni/src/main/java/java/util/jar/
H A DJarInputStream.java94 byte bytes[] = getBytes(new BufferedInputStream(this));
106 private byte[] getBytes(InputStream is) method in class:JarInputStream
H A DJarFile.java185 byte[] b = getBytes(manEntry);
370 byte[] b = getBytes(e);
414 private byte[] getBytes(ZipEntry ze) throws IOException { method in class:JarFile
549 byte[] b = getBytes(manEntry);
/libcore/ojluni/src/main/java/java/util/zip/
H A DZipCoder.java76 byte[] getBytes(String s) { method in class:ZipCoder
108 return getBytes(s);
111 return utf8.getBytes(s);
/libcore/ojluni/src/main/java/sun/security/x509/
H A DIPAddressName.java306 public byte[] getBytes() { method in class:IPAddressName
/libcore/support/src/test/java/org/apache/harmony/testframework/
H A DSinkTester.java49 public abstract byte[] getBytes() throws Exception; method in class:SinkTester
99 assertArrayEquals(expected, getBytes());
112 assertArrayEquals(expected, getBytes());
124 assertArrayEquals(expected, getBytes());
146 assertArrayEquals(expected, getBytes());
177 assertArrayEquals(expected, getBytes());
188 assertArrayEquals(expected, getBytes());
204 assertArrayEquals(expectedBytes, getBytes());
H A DWrapperTester.java91 public byte[] getBytes() throws Exception { method in class:WrapperTester.WrapperSinkTester
/libcore/ojluni/src/main/java/sun/security/util/
H A DDerInputStream.java297 public void getBytes(byte[] val) throws IOException { method in class:DerInputStream
/libcore/ojluni/src/main/java/java/lang/
H A DProcessEnvironment.java136 public byte[] getBytes() { method in class:ProcessEnvironment.ExternalData
146 && arrayEquals(getBytes(), ((ExternalData) o).getBytes());
150 return arrayHash(getBytes());
166 return new Variable(str, str.getBytes());
179 return arrayCompare(getBytes(), variable.getBytes());
199 return new Value(str, str.getBytes());
212 return arrayCompare(getBytes(), value.getBytes());
[all...]
H A DString.java843 * {@link #getBytes()} method, which uses the platform's default charset.
869 public void getBytes(int srcBegin, int srcEnd, byte dst[], int dstBegin) { method in class:String
909 public byte[] getBytes(String charsetName) method in class:String
914 return getBytes(Charset.forNameUEE(charsetName));
935 public byte[] getBytes(Charset charset) { method in class:String
975 public byte[] getBytes() { method in class:String
978 return getBytes(Charset.defaultCharset());
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldPreparedStatementTest.java2332 public byte[] getBytes(long pos, int length) throws SQLException { method in class:OldPreparedStatementTest.MockBlob
/libcore/ojluni/src/main/native/
H A DUNIXProcess_md.c458 getBytes(JNIEnv *env, jbyteArray arr) function
871 if ((pprog = getBytes(env, prog)) == NULL) goto Catch;
872 if ((pargBlock = getBytes(env, argBlock)) == NULL) goto Catch;
879 if ((penvBlock = getBytes(env, envBlock)) == NULL) goto Catch;
885 if ((c->pdir = getBytes(env, dir)) == NULL) goto Catch;

Completed in 548 milliseconds