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

1234

/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DMethod.java54 return getHolder().replace('/', '.') + "::" + getName() + " @ " + osr_bci + " (" + getBytes() + " bytes)";
56 return getHolder().replace('/', '.') + "::" + getName() + " (" + getBytes() + " bytes)";
62 return getHolder().replace('/', '.') + "::" + getName() + " (" + getBytes() + " bytes)";
97 public String getBytes() { method in class:Method
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DByteOutputStream.java172 public byte[] getBytes() { method in class:ByteOutputStream
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DChecksum.java172 key.getBytes(),
187 key.getBytes(),
308 public final byte[] getBytes() { method in class:Checksum
H A DEncryptedData.java117 cipher = etypeEngine.encrypt(plaintext, key.getBytes());
131 cipher = etypeEngine.encrypt(plaintext, key.getBytes(), usage);
144 cipher = etypeEngine.encrypt(plaintext, key.getBytes(), ivec);
158 cipher = etypeEngine.encrypt(plaintext, key.getBytes());
177 plain = etypeEngine.decrypt(cipher, key.getBytes(), usage);
191 plain = etypeEngine.decrypt(cipher, key.getBytes(), ivec, usage);
203 plain = etypeEngine.decrypt(cipher, key.getBytes());
377 public byte[] getBytes() { method in class:EncryptedData
H A DEncryptionKey.java90 public final byte[] getBytes() { method in class:EncryptionKey
582 return new EncryptionKey(etype, keys[i].getBytes());
/openjdk7/jdk/test/sun/awt/datatransfer/
H A DSuplementaryCharactersTransferTest.java51 byte[] bytes = transferable.getBytes();
84 public byte[] getBytes() { method in class:SuplementaryCharactersTransferTest.ByteTransferable
89 return new ByteArrayInputStream(getBytes());
/openjdk7/jdk/test/sun/net/idn/
H A DTestData.java436 private static byte[] getBytes(String in){ method in class:TestData.ConformanceTestCase
452 byte[] bytes = getBytes(in);
454 bytes = getBytes(out);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DPerf.java408 byte[] v = getBytes(value);
447 byte[] v = getBytes(value);
490 private static byte[] getBytes(String s) method in class:Perf
495 bytes = s.getBytes("UTF-8");
/openjdk7/jdk/src/share/classes/sun/reflect/misc/
H A DMethodUtil.java367 byte[] b = getBytes(url);
379 private static byte[] getBytes(URL url) throws IOException { method in class:MethodUtil
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCodeSetConversion.java71 * 3) getBytes (see warning)
103 public abstract byte[] getBytes(); method in class:CodeSetConversion.CTBConverter
239 public byte[] getBytes() { method in class:CodeSetConversion.JavaCTBConverter
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletClassLoader.java205 return getBytes(finalURL);
316 private static byte[] getBytes(URL url) throws IOException { method in class:AppletClassLoader
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarFile.java179 byte[] b = getBytes(manEntry);
341 byte[] b = getBytes(e);
385 private byte[] getBytes(ZipEntry ze) throws IOException { method in class:JarFile
488 byte[] b = getBytes(manEntry);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DBase64.java68 static final byte[] getBytes(BigInteger big, int bitlen) { method in class:Base64
111 return encode(getBytes(big, big.bitLength()));
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DNTLM.java248 writeSecurityBuffer(offset, str == null ? null : str.getBytes(
255 byte[] getBytes() { method in class:NTLM.Writer
382 text.getBytes("UnicodeLittleUnmarked"));
413 return new String(password).toUpperCase().getBytes("ISO8859_1");
421 return new String(password).getBytes("UnicodeLittleUnmarked");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEParser.java92 this.bndbytes = getBytes("--"+boundary);
329 private static byte[] getBytes(String s) { method in class:MIMEParser
/openjdk7/jdk/test/java/lang/String/
H A DExceptions.java374 private static void getBytes() { method in class:Exceptions
379 "foo".getBytes(1, 2, null, 1);
382 System.out.println("getBytes.(String charsetName)"
387 "foo".getBytes((String)null);
393 System.out.println("getBytes.(Charset charset)");
396 "foo".getBytes((Charset)null);
639 getBytes(); // getBytes(int, int, byte [], int),
640 // getBytes(Locale)
641 // getBytes(Strin
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DName.java78 getBytes(bs, 0);
79 n.getBytes(bs, len);
89 getBytes(bs, 0);
91 n.getBytes(bs, len+1);
153 getBytes(bs, 0);
172 public void getBytes(byte cs[], int start) { method in class:Name
/openjdk7/jdk/src/share/demo/nio/zipfs/
H A DDemo.java373 private static byte[] getBytes(String name) { method in class:Demo
374 return name.getBytes();
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DMessageToken.java454 byte[] tokenHeaderBytes = tokenHeader.getBytes();
486 getHexBytes(context.getMySessionKey().getBytes()));
488 getHexBytes(context.getPeerSessionKey().getBytes()));
710 public final byte[] getBytes() { method in class:MessageToken.MessageTokenHeader
H A DMessageToken_v2.java317 // getHexBytes(tokenHeader.getBytes(), tokenHeader.getBytes().length));
339 byte[] tok_header = tokenHeader.getBytes();
417 byte[] tokenHeaderBytes = tokenHeader.getBytes();
448 getHexBytes(context.getMySessionKey().getBytes()));
450 getHexBytes(context.getPeerSessionKey().getBytes()));
489 return (tokenHeader.getBytes());
639 public final byte[] getBytes() { method in class:MessageToken_v2.MessageTokenHeader
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDerInputStream.java263 public void getBytes(byte[] val) throws IOException { method in class:DerInputStream
/openjdk7/jdk/src/share/classes/java/sql/
H A DCallableStatement.java314 byte[] getBytes(int parameterIndex) throws SQLException; method in interface:CallableStatement
967 * @see #getBytes
1485 byte[] getBytes(String parameterName) throws SQLException; method in interface:CallableStatement
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixups.java123 public byte[] getBytes() { method in class:Fixups
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSF2Region.java144 public byte[] getBytes(int generator) { method in class:SF2Region
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DXMLSignatureInput.java164 * [] array using the {@link java.lang.String#getBytes()} method.
169 this(inputStr.getBytes());
176 * [] array using the {@link java.lang.String#getBytes()} method.
185 this(inputStr.getBytes(encoding));
292 public byte[] getBytes() throws IOException, CanonicalizationException { method in class:XMLSignatureInput
422 return "XMLSignatureInput/OctetStream/" + this.getBytes().length
621 baos.write("<container>".getBytes());
622 baos.write(this.getBytes());
623 baos.write("</container>".getBytes());

Completed in 113 milliseconds

1234