/openjdk7/jdk/test/java/nio/charset/coders/ |
H A D | ResetISO2022JP.java | 36 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 D | UTF8.java | 34 static byte[] encode(String str) { method in class:UTF8
|
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | URLEncoder.java | 119 * 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 D | Extension.java | 100 void encode(OutputStream out) throws IOException; method in interface:Extension
|
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/ |
H A D | SnmpSecurityParameters.java | 42 int encode(byte[] outputBytes) throws SnmpTooBigException; method in interface:SnmpSecurityParameters
|
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/ |
H A D | UrlUtil.java | 87 public static final String encode(String s, String enc) method in class:UrlUtil
|
/openjdk7/jdk/src/share/classes/com/sun/pept/encoding/ |
H A D | Encoder.java | 68 public ByteBuffer encode(MessageInfo messageInfo); method in interface:Encoder
|
/openjdk7/jdk/src/share/classes/sun/security/x509/ |
H A D | CertificatePolicySet.java | 84 * @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 D | FreshestCRLExtension.java | 96 public void encode(OutputStream out) throws IOException { method in class:FreshestCRLExtension 97 super.encode(out, PKIXExtensions.FreshestCRL_Id, false);
|
H A D | CertAttrSet.java | 61 * @param out the OutputStream to encode the attribute to. 66 void encode(OutputStream out) method in interface:CertAttrSet
|
H A D | CertificatePolicyId.java | 83 public void encode(DerOutputStream out) throws IOException { method in class:CertificatePolicyId
|
H A D | CertificatePolicyMap.java | 99 public void encode(DerOutputStream out) throws IOException { method in class:CertificatePolicyMap 102 issuerDomain.encode(tmp); 103 subjectDomain.encode(tmp);
|
H A D | DeltaCRLIndicatorExtension.java | 112 public void encode(OutputStream out) throws IOException { method in class:DeltaCRLIndicatorExtension 114 super.encode(out, PKIXExtensions.DeltaCRLIndicator_Id, true);
|
H A D | GeneralName.java | 224 * @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 D | KeyIdentifier.java | 128 void encode(DerOutputStream out) throws IOException { method in class:KeyIdentifier
|
H A D | SerialNumber.java | 113 public void encode(DerOutputStream out) throws IOException { method in class:SerialNumber
|
H A D | UniqueIdentity.java | 97 public void encode(DerOutputStream out, byte tag) throws IOException { method in class:UniqueIdentity
|
H A D | X400Address.java | 369 * @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 D | ArrayEncoder.java | 34 int encode(char[] src, int off, int len, byte[] dst); method in interface:ArrayEncoder
|
/openjdk7/jdk/src/share/classes/java/security/ |
H A D | Certificate.java | 42 * 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 D | Codec.java | 93 * 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 D | Test6329581.java | 44 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 D | AcceptSecContextToken.java | 111 public final byte[] encode() throws IOException { method in class:AcceptSecContextToken
|
H A D | InitSecContextToken.java | 172 public final byte[] encode() throws IOException { method in class:InitSecContextToken
|
/openjdk7/jdk/src/share/sample/nio/server/ |
H A D | StringContent.java | 82 private void encode() { method in class:StringContent 84 bb = ascii.encode(CharBuffer.wrap(content)); 88 encode(); 93 encode();
|