Searched defs:encode (Results 1 - 25 of 165) sorted by relevance

1234567

/openjdk7/jdk/test/java/nio/charset/coders/
H A DResetISO2022JP.java36 if (! (encode(true).equals(encode(false))))
40 static String encode(boolean reuseEncoder) { method in class:ResetISO2022JP
47 e.encode(CharBuffer.wrap(s), ByteBuffer.allocate(64), true);
54 e.encode(CharBuffer.wrap(s), bb, true);
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DUTF8.java34 static byte[] encode(String str) { method in class:UTF8
/openjdk7/jdk/src/share/classes/java/net/
H A DURLEncoder.java119 * As a last note, Intenet Explorer does not encode the "@"
138 * in the encode() method */
161 * default encoding. Instead, use the encode(String,String)
166 public static String encode(String s) { method in class:URLEncoder
171 str = encode(s, dfltEncName);
201 public static String encode(String s, String enc) method in class:URLEncoder
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DExtension.java100 void encode(OutputStream out) throws IOException; method in interface:Extension
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpSecurityParameters.java42 int encode(byte[] outputBytes) throws SnmpTooBigException; method in interface:SnmpSecurityParameters
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DUrlUtil.java87 public static final String encode(String s, String enc) method in class:UrlUtil
/openjdk7/jdk/src/share/classes/com/sun/pept/encoding/
H A DEncoder.java68 public ByteBuffer encode(MessageInfo messageInfo); method in interface:Encoder
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertificatePolicySet.java84 * @param out the DerOutputStream to encode the data to.
86 public void encode(DerOutputStream out) throws IOException { method in class:CertificatePolicySet
90 ids.elementAt(i).encode(tmp);
H A DFreshestCRLExtension.java96 public void encode(OutputStream out) throws IOException { method in class:FreshestCRLExtension
97 super.encode(out, PKIXExtensions.FreshestCRL_Id, false);
H A DCertAttrSet.java61 * @param out the OutputStream to encode the attribute to.
66 void encode(OutputStream out) method in interface:CertAttrSet
H A DCertificatePolicyId.java83 public void encode(DerOutputStream out) throws IOException { method in class:CertificatePolicyId
H A DCertificatePolicyMap.java99 public void encode(DerOutputStream out) throws IOException { method in class:CertificatePolicyMap
102 issuerDomain.encode(tmp);
103 subjectDomain.encode(tmp);
H A DDeltaCRLIndicatorExtension.java112 public void encode(OutputStream out) throws IOException { method in class:DeltaCRLIndicatorExtension
114 super.encode(out, PKIXExtensions.DeltaCRLIndicator_Id, true);
H A DGeneralName.java224 * @param out the DerOutputStream to encode the the GeneralName to.
227 public void encode(DerOutputStream out) throws IOException { method in class:GeneralName
229 name.encode(tmp);
H A DKeyIdentifier.java128 void encode(DerOutputStream out) throws IOException { method in class:KeyIdentifier
H A DSerialNumber.java113 public void encode(DerOutputStream out) throws IOException { method in class:SerialNumber
H A DUniqueIdentity.java97 public void encode(DerOutputStream out, byte tag) throws IOException { method in class:UniqueIdentity
H A DX400Address.java369 * @param out the DER stream to encode the X400Address to.
372 public void encode(DerOutputStream out) throws IOException { method in class:X400Address
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DArrayEncoder.java34 int encode(char[] src, int off, int len, byte[] dst); method in interface:ArrayEncoder
/openjdk7/jdk/src/share/classes/java/security/
H A DCertificate.java42 * share general certificate functionality (the need to encode and
101 * @param stream the output stream to which to encode the
113 public abstract void encode(OutputStream stream) method in interface:Certificate
119 * <code>encode</code>.
130 * @see #encode
140 * the format produced and understood by the <code>encode</code>
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DCodec.java93 * the message body, and since the encode method returns the content type
126 ContentType encode( Packet packet, OutputStream out ) throws IOException; method in interface:Codec
129 * The version of {@link #encode(Packet,OutputStream)}
136 ContentType encode( Packet packet, WritableByteChannel buffer ); method in interface:Codec
144 String encode( InputStreamMessage message, OutputStream out ) throws IOException;
145 String encode( InputStreamMessage message, WritableByteChannel buffer );
153 * who needs to encode two {@link Message}s simultaneously will
160 * another thread is executing one of the {@link #encode} methods.
200 * Some transports, such as SMTP, may 'encode' data into another format
/openjdk7/jdk/test/java/beans/XMLEncoder/6329581/
H A DTest6329581.java44 new Test6329581().decode(new Test6329581().encode(Bean.class.getName()));
83 private byte[] encode(String name) throws Exception { method in class:Test6329581
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DAcceptSecContextToken.java111 public final byte[] encode() throws IOException { method in class:AcceptSecContextToken
H A DInitSecContextToken.java172 public final byte[] encode() throws IOException { method in class:InitSecContextToken
/openjdk7/jdk/src/share/sample/nio/server/
H A DStringContent.java82 private void encode() { method in class:StringContent
84 bb = ascii.encode(CharBuffer.wrap(content));
88 encode();
93 encode();

Completed in 1020 milliseconds

1234567