Searched defs:getBytes (Results 76 - 88 of 88) sorted by relevance

1234

/openjdk7/jdk/src/solaris/classes/java/lang/
H A DProcessEnvironment.java135 public byte[] getBytes() { method in class:ProcessEnvironment.ExternalData
145 && arrayEquals(getBytes(), ((ExternalData) o).getBytes());
149 return arrayHash(getBytes());
165 return new Variable(str, str.getBytes());
178 return arrayCompare(getBytes(), variable.getBytes());
198 return new Value(str, str.getBytes());
211 return arrayCompare(getBytes(), value.getBytes());
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DJavaClass.java290 public byte[] getBytes() { method in class:JavaClass
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java847 * {@link #getBytes()} method, which uses the platform's default charset.
873 public void getBytes(int srcBegin, int srcEnd, byte dst[], int dstBegin) { method in class:String
913 public byte[] getBytes(String charsetName) method in class:String
937 public byte[] getBytes(Charset charset) { method in class:String
955 public byte[] getBytes() { method in class:String
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java63 public byte[] getBytes() { method in class:Instruction
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java643 public Bytes getBytes() { method in class:VM
/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSet.java376 byte[] getBytes(int columnIndex) throws SQLException; method in interface:ResultSet
661 byte[] getBytes(String columnLabel) throws SQLException; method in interface:ResultSet
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java1173 public byte[] getBytes(int columnIndex) throws SQLException { method in class:JoinRowSetImpl
1174 return crsInternal.getBytes(columnIndex);
1455 public byte[] getBytes(String columnName) throws SQLException { method in class:JoinRowSetImpl
1456 return crsInternal.getBytes(columnName);
H A DJdbcRowSetImpl.java1054 public byte[] getBytes(int columnIndex) throws SQLException { method in class:JdbcRowSetImpl
1057 return rs.getBytes(columnIndex);
1372 public byte[] getBytes(String columnName) throws SQLException { method in class:JdbcRowSetImpl
1373 return getBytes(findColumn(columnName));
6809 * @see #getBytes
H A DCachedRowSetImpl.java2088 * @see #getBytes(String)
2090 public byte[] getBytes(int columnIndex) throws SQLException { method in class:CachedRowSetImpl
2348 asciiStream = new ByteArrayInputStream(((String)value).getBytes("ASCII"));
2668 * @see #getBytes(int)
2670 public byte[] getBytes(String columnName) throws SQLException { method in class:CachedRowSetImpl
2671 return getBytes(getColIdxByName(columnName));
9886 * @see #getBytes
/openjdk7/jdk/src/solaris/native/java/lang/
H A DUNIXProcess_md.c452 getBytes(JNIEnv *env, jbyteArray arr) function
861 if ((pprog = getBytes(env, prog)) == NULL) goto Catch;
862 if ((pargBlock = getBytes(env, argBlock)) == NULL) goto Catch;
869 if ((penvBlock = getBytes(env, envBlock)) == NULL) goto Catch;
875 if ((c->pdir = getBytes(env, dir)) == NULL) goto Catch;
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DJarSigner.java1094 mfRawBytes = getBytes(zipFile, mfFile);
1909 private synchronized byte[] getBytes(ZipFile zf, method in class:JarSigner
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java1309 * @see #getBytes(String)
1311 public byte[] getBytes(int columnIndex) throws SQLException { method in class:SyncResolverImpl
1671 * @see #getBytes(int)
1673 public byte[] getBytes(String columnName) throws SQLException { method in class:SyncResolverImpl
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java128 this.defaultdir = new ZipPath(this, getBytes(defaultDir));
186 return new ZipPath(this, getBytes(path));
911 final byte[] getBytes(String name) { method in class:ZipFileSystem
912 return zc.getBytes(name);

Completed in 619 milliseconds

1234