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

/dalvik/libcore/sql/src/main/java/java/sql/
H A DBlob.java58 public byte[] getBytes(long pos, int length) throws SQLException; method in interface:Blob
H A DCallableStatement.java229 public byte[] getBytes(int parameterIndex) throws SQLException; method in interface:CallableStatement
242 public byte[] getBytes(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java464 public byte[] getBytes(int columnIndex) throws SQLException; method in interface:ResultSet
476 public byte[] getBytes(String columnName) throws SQLException; method in interface:ResultSet
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DPublicClassLoader.java34 private byte[] getBytes( String filename ) throws IOException { method in class:PublicClassLoader
55 byte raw[] = getBytes(classFileName);
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstUtf8.java346 public ByteArray getBytes() { method in class:CstUtf8
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERBitString.java67 static protected byte[] getBytes(int bitString) method in class:DERBitString
183 public byte[] getBytes() method in class:DERBitString
213 byte[] bytes = new byte[getBytes().length + 1];
216 System.arraycopy(getBytes(), 0, bytes, 1, bytes.length - 1);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DUtil.java44 "".getBytes(encoding);
58 public static byte[] getBytes(String name) { method in class:Util
61 return name.getBytes(defaultEncoding);
65 return name.getBytes();
76 return name.getBytes("UTF-8");
78 return getBytes(name);
/dalvik/dx/src/com/android/dx/cf/code/
H A DBytecodeArray.java72 public ByteArray getBytes() { method in class:BytecodeArray
/dalvik/dx/src/com/android/dx/cf/direct/
H A DDirectClassFile.java232 public ByteArray getBytes() { method in class:DirectClassFile
/dalvik/dx/src/com/android/dx/command/dump/
H A DBaseDumper.java127 offset = bytes.underlyingOffset(offset, getBytes());
182 protected final byte[] getBytes() { method in class:BaseDumper
/dalvik/dx/src/com/android/dx/util/
H A DByteArray.java206 public void getBytes(byte[] out, int offset) { method in class:ByteArray
/dalvik/libcore/archive/src/main/java/java/util/jar/
H A DAttributes.java209 byte[] getBytes() { method in class:Attributes.Name
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/net/
H A DSocks4Message.java178 public byte[] getBytes() { method in class:Socks4Message
239 stringBytes = theString.getBytes("ISO8859_1"); //$NON-NLS-1$
/dalvik/libcore/luni/src/main/java/java/net/
H A DURLClassLoader.java241 clBuf = getBytes(is);
403 clBuf = getBytes(is);
715 private static byte[] getBytes(InputStream is) method in class:URLClassLoader
/dalvik/libcore/sql/src/test/java/tests/sql/
H A DPreparedStatementTest.java3160 public byte[] getBytes(long pos, int length) throws SQLException { method in class:PreparedStatementTest.MockBlob
/dalvik/libcore/luni/src/main/java/java/lang/
H A DString.java902 public byte[] getBytes() { method in class:String
927 * @deprecated Use {@link #getBytes()} or {@link #getBytes(String)}
930 public void getBytes(int start, int end, byte[] data, int index) { method in class:String
954 public byte[] getBytes(String encoding) throws UnsupportedEncodingException { method in class:String
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DJDBCResultSet.java451 public byte[] getBytes(int columnIndex) throws SQLException { method in class:JDBCResultSet
464 public byte[] getBytes(String columnName) throws SQLException { method in class:JDBCResultSet
466 return getBytes(col);
500 ret = getBytes(columnIndex);
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java344 public byte[] getBytes(int columnIndex) throws SQLException { method in class:Impl_RowSet
348 public byte[] getBytes(String columnName) throws SQLException { method in class:Impl_RowSet

Completed in 514 milliseconds