Searched refs:input (Results 51 - 75 of 417) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DAnyHolder.java78 * Reads from <code>input</code> and initalizes the value in the Holder
81 * @param input the InputStream containing CDR formatted data from the wire.
83 public void _read(InputStream input) { argument
84 value = input.read_any();
H A DBooleanHolder.java79 * Reads unmarshalled data from <code>input</code> and assigns it to this
82 * @param input the <code>InputStream</code> object containing
85 public void _read(InputStream input) { argument
86 value = input.read_boolean();
H A DByteHolder.java80 * Reads from <code>input</code> and initalizes the value in
84 * @param input the InputStream containing CDR formatted data from the wire.
86 public void _read(InputStream input) { argument
87 value = input.read_octet();
H A DCharHolder.java80 * Reads from <code>input</code> and initalizes the value in
84 * @param input the InputStream containing CDR formatted data from the wire
86 public void _read(InputStream input) { argument
87 value = input.read_char();
H A DDoubleHolder.java80 * Read a double value from the input stream and store it in the
83 * @param input the <code>InputStream</code> to read from.
85 public void _read(InputStream input) { argument
86 value = input.read_double();
H A DFixedHolder.java69 * Read a fixed point value from the input stream and store it in
72 * @param input the <code>InputStream</code> to read from.
74 public void _read(InputStream input) { argument
75 value = input.read_fixed();
H A DFloatHolder.java79 * Read a float from an input stream and initialize the value
82 * @param input the <code>InputStream</code> to read from.
84 public void _read(InputStream input) { argument
85 value = input.read_float();
H A DIntHolder.java80 * Reads unmarshalled data from <code>input</code> and assigns it to
83 * @param input the <code>InputStream</code> object containing CDR
86 public void _read(InputStream input) { argument
87 value = input.read_long();
H A DLongHolder.java80 * Reads from <code>input</code> and initalizes the value in the Holder
83 * @param input the InputStream containing CDR formatted data from the wire
85 public void _read(InputStream input) { argument
86 value = input.read_longlong();
H A DObjectHolder.java81 * Reads from <code>input</code> and initalizes the value in
85 * @param input the InputStream containing CDR formatted data from the wire.
87 public void _read(InputStream input) { argument
88 value = input.read_Object();
H A DPrincipalHolder.java81 public void _read(InputStream input) { argument
82 value = input.read_Principal();
H A DShortHolder.java80 * Reads from <code>input</code> and initalizes the value in
84 * @param input the InputStream containing CDR formatted data from the wire.
86 public void _read(InputStream input) { argument
87 value = input.read_short();
H A DStringHolder.java80 * Reads the unmarshalled data from <code>input</code> and assigns it to
83 * @param input the InputStream containing CDR formatted data from the wire.
85 public void _read(InputStream input) { argument
86 value = input.read_string();
H A DTypeCodeHolder.java80 * Reads from <code>input</code> and initalizes the value in
84 * @param input the InputStream containing CDR formatted data from the wire
86 public void _read(InputStream input) { argument
87 value = input.read_TypeCode();
/openjdk7/hotspot/test/compiler/7184394/
H A DTestAESEncode.java38 encode = cipher.doFinal(input, 0, msgSize);
43 cipher.doFinal(input, 0, msgSize, encode);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DAESCipher.java103 * <code>doFinal</code> operation, given the input length
113 * @param inputLen the input length (in bytes)
232 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
236 * @param input the input buffer
237 * @param inputOffset the offset in <code>input</code> where the input
239 * @param inputLen the input length
246 protected byte[] engineUpdate(byte[] input, int inputOffset, argument
248 return core.update(input, inputOffse
274 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
311 engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
352 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
[all...]
H A DBlowfishCipher.java108 * <code>doFinal</code> operation, given the input length
118 * @param inputLen the input length (in bytes)
237 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
241 * @param input the input buffer
242 * @param inputOffset the offset in <code>input</code> where the input
244 * @param inputLen the input length
251 protected byte[] engineUpdate(byte[] input, int inputOffset, argument
253 return core.update(input, inputOffse
279 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
316 engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
358 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
[all...]
H A DDESCipher.java103 * <code>doFinal</code> operation, given the input length
113 * @param inputLen the input length (in bytes)
232 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
236 * @param input the input buffer
237 * @param inputOffset the offset in <code>input</code> where the input
239 * @param inputLen the input length
246 protected byte[] engineUpdate(byte[] input, int inputOffset, argument
248 return core.update(input, inputOffse
274 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
311 engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
353 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
[all...]
H A DDESedeCipher.java100 * <code>doFinal</code> operation, given the input length
110 * @param inputLen the input length (in bytes)
212 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
216 * @param input the input buffer
217 * @param inputOffset the offset in <code>input</code> where the input
219 * @param inputLen the input length
226 protected byte[] engineUpdate(byte[] input, int inputOffset, argument
228 return core.update(input, inputOffse
254 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
291 engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
333 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
[all...]
H A DPBEWithMD5AndDESCipher.java110 * <code>doFinal</code> operation, given the input length
120 * @param inputLen the input length (in bytes)
236 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
240 * @param input the input buffer
241 * @param inputOffset the offset in <code>input</code> where the input
243 * @param inputLen the input length
248 protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) argument
250 return core.update(input, inputOffse
276 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
313 engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
354 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
[all...]
H A DPBEWithMD5AndTripleDESCipher.java46 * password, and use the result as the input to the next digest operation.
122 * <code>doFinal</code> operation, given the input length
132 * @param inputLen the input length (in bytes)
246 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
250 * @param input the input buffer
251 * @param inputOffset the offset in <code>input</code> where the input
253 * @param inputLen the input length
258 protected byte[] engineUpdate(byte[] input, in argument
286 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
323 engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
364 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DParamTaglet.java76 public void inherit(DocFinder.Input input, DocFinder.Output output) { argument
77 if (input.tagId == null) {
78 input.isTypeVariableParamTag = ((ParamTag) input.tag).isTypeParameter();
79 Object[] parameters = input.isTypeVariableParamTag ?
80 (Object[]) ((MethodDoc) input.tag.holder()).typeParameters() :
81 (Object[]) ((MethodDoc) input.tag.holder()).parameters();
82 String target = ((ParamTag) input.tag).parameterName();
89 input.tagId = String.valueOf(i);
101 ParamTag[] tags = input
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DLatinCharReplacementTWTest.java40 byte[] input = { (byte)0xa1,
65 ByteArrayInputStream bais = new ByteArrayInputStream(input);
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharASCII.java50 public int convert(byte[] input, int inOff, int inEnd, argument
59 // Loop until we hit the end of the input
66 // Convert the input byte
67 inputByte = input[byteOff++];
86 * Reset after finding bad input
H A DByteToCharISO8859_1.java50 public int convert(byte[] input, int inOff, int inEnd, argument
62 // Loop until we hit the end of the input
65 output[outOff++] = (char) (0xff & input[inOff++]);
81 Reset after finding bad input

Completed in 1247 milliseconds

1234567891011>>