Searched defs:in (Results 1 - 25 of 213) sorted by relevance

123456789

/dalvik/libcore/luni/src/main/java/java/util/
H A DInvalidPropertiesFormatException.java5 * (the "License"); you may not use this file except in compliance with
10 * Unless required by applicable law or agreed to in writing, software
40 * current stack trace and message filled in.
65 private void readObject(ObjectInputStream in) argument
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DASN1Time.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
48 public Object getDecodedObject(BerInputStream in) throws IOException { argument
54 c.set(Calendar.YEAR, in.times[0]);
55 c.set(Calendar.MONTH, in.times[1]-1);
56 c.set(Calendar.DAY_OF_MONTH, in.times[2]);
57 c.set(Calendar.HOUR_OF_DAY, in.times[3]);
58 c.set(Calendar.MINUTE, in.times[4]);
59 c.set(Calendar.SECOND, in.times[5]);
60 c.set(Calendar.MILLISECOND, in
[all...]
H A DASN1Boolean.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
69 public Object decode(BerInputStream in) throws IOException { argument
70 in.readBoolean();
72 if (in.isVerify) {
75 return getDecodedObject(in);
81 * @param in - BER input stream
84 public Object getDecodedObject(BerInputStream in) throws IOException { argument
85 if (in.buffer[in
[all...]
H A DASN1Enumerated.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
69 public Object decode(BerInputStream in) throws IOException { argument
70 in.readEnumerated();
72 if (in.isVerify) {
75 return getDecodedObject(in);
81 * @param in - BER input stream
84 public Object getDecodedObject(BerInputStream in) throws IOException { argument
85 byte[] bytesEncoded = new byte[in.length];
86 System.arraycopy(in
[all...]
H A DASN1Explicit.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
75 public Object decode(BerInputStream in) throws IOException { argument
76 if (constrId != in.tag) {
79 new Object[] { in.tagOffset, Integer.toHexString(constrId),
80 Integer.toHexString(in.tag) }));
82 in.next();
84 in.content = type.decode(in);
86 if (in
[all...]
H A DASN1GeneralizedTime.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
72 public Object decode(BerInputStream in) throws IOException { argument
73 in.readGeneralizedTime();
75 if (in.isVerify) {
78 return getDecodedObject(in);
H A DASN1OctetString.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
69 public Object decode(BerInputStream in) throws IOException { argument
70 in.readOctetString();
72 if (in.isVerify) {
75 return getDecodedObject(in);
81 * @param in - BER input stream
84 public Object getDecodedObject(BerInputStream in) throws IOException { argument
85 byte[] bytesEncoded = new byte[in.length];
86 System.arraycopy(in
[all...]
H A DASN1Oid.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
69 public Object decode(BerInputStream in) throws IOException { argument
70 in.readOID();
72 if (in.isVerify) {
75 return getDecodedObject(in);
81 * @param in - BER input stream
84 public Object getDecodedObject(BerInputStream in) throws IOException { argument
86 int oidElement = in.oidElement;
89 int octet = in
[all...]
H A DASN1OpenType.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
48 public Object decode(BerInputStream in) throws IOException { argument
50 int[] oid = (int[]) in.get(key);
56 if (attr == null || (!attr.type.checkTag(in.tag))) {
57 in.content = (byte[]) super.getDecodedObject(in);
59 in.content = attr.type.decode(in);
61 return in
64 getDecodedObject(BerInputStream in) argument
70 decode(BerInputStream in) argument
81 getDecodedObject(BerInputStream in) argument
[all...]
H A DASN1Sequence.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
48 public Object decode(BerInputStream in) throws IOException { argument
49 in.readSequence(this);
51 if (in.isVerify) {
54 return getDecodedObject(in);
H A DASN1SequenceOf.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
49 public Object decode(BerInputStream in) throws IOException { argument
50 in.readSequenceOf(this);
52 if (in.isVerify) {
55 return getDecodedObject(in);
83 public Object getDecodedObject(BerInputStream in)
85 return ((List) in.content).toArray();
H A DASN1Set.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
51 public Object decode(BerInputStream in) throws IOException { argument
52 in.readSet(this);
54 if(in.isVerify){
57 return getDecodedObject(in);
H A DASN1SetOf.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
48 public Object decode(BerInputStream in) throws IOException { argument
49 in.readSetOf(this);
51 if (in.isVerify) {
54 return getDecodedObject(in);
81 public Object getDecodedObject(BerInputStream in)
83 return ((List) in.content).toArray();
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DSSLStreamedInput.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
29 private InputStream in; field in class:SSLStreamedInput
31 public SSLStreamedInput(InputStream in) { argument
32 this.in = in;
37 return in.available();
50 int res = in.read();
/dalvik/libcore/luni/src/main/java/java/io/
H A DFileDescriptor.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
29 * if desired, but it is recommended to go through System.in, System.out, and
43 public static final FileDescriptor in = new FileDescriptor(); field in class:FileDescriptor
69 in.descriptor = 0;
H A DFilterInputStream.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
35 protected volatile InputStream in; field in class:FilterInputStream
41 * @param in
44 protected FilterInputStream(InputStream in) { argument
46 this.in = in;
51 return in.available();
62 in.close();
66 * Sets a mark position in thi
[all...]
H A DFilterReader.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
35 protected Reader in; field in class:FilterReader
38 * Constructs a new FilterReader on the Reader {@code in}.
40 * @param in
43 protected FilterReader(Reader in) { argument
44 super(in);
45 this.in = in;
57 in
[all...]
H A DSequenceInputStream.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
41 private InputStream in; field in class:SequenceInputStream
61 in = s1;
72 * if any of the elements in {@code e} is {@code null}.
77 in = e.nextElement();
78 if (in == null) {
86 if (e != null && in != null) {
87 return in.available();
93 * Closes all streams in thi
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DBase64.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
28 * as specified in RFC 2045 (http://www.ietf.org/rfc/rfc2045.txt).
32 public static byte[] decode(byte[] in) { argument
33 return decode(in, in.length);
36 public static byte[] decode(byte[] in, int len) { argument
51 chr = in[len-1];
63 // index in the output array
65 // index in th
132 encode(byte[] in, String charsetName) argument
[all...]
H A DPasswordProtectedInputStream.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
38 * @param in The actual input stream where to read the bytes from.
41 public PasswordProtectedInputStream(InputStream in, byte[] password) { argument
42 super(in);
48 int read = in.read();
58 int read = in.read(b, off, len);
H A DPositionedInputStream.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
34 * @param in The actual input stream where to read the bytes from.
36 public PositionedInputStream(InputStream in) { argument
37 super(in);
41 * Return the current position in the receiver
43 * @return int The current position in the receiver
51 int read = in.read();
61 int read = in.read(b, off, len);
78 long skip = in
[all...]
/dalvik/libcore/prefs/src/main/java/java/util/prefs/
H A DNodeChangeEvent.java5 * (the "License"); you may not use this file except in compliance with
10 * Unless required by applicable law or agreed to in writing, software
91 private void readObject (ObjectInputStream in) throws IOException, ClassNotFoundException { argument
/dalvik/libcore/security/src/main/java/java/security/
H A DBasicPermissionCollection.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
161 * <dd>The class to which all {@code BasicPermission}s in this
164 * <dd>The {@code BasicPermission}s in this collection. All {@code
165 * BasicPermission}s in the collection must belong to the same class. The
182 private void readObject(java.io.ObjectInputStream in) throws IOException, argument
184 ObjectInputStream.GetField fields = in.readFields();
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
H A DAsymmetricBlockCipher.java34 * process the block of len bytes stored in in from offset inOff.
36 * @param in the input data
37 * @param inOff offset into the in array where the data starts
43 public byte[] processBlock(byte[] in, int inOff, int len) argument
H A DBlockCipher.java29 * Return the block size for this cipher (in bytes).
31 * @return the block size for this cipher in bytes.
36 * Process one block of input from the array in and write it to
39 * @param in the array containing the input data.
40 * @param inOff offset into the in array the data starts at.
43 * @exception DataLengthException if there isn't enough data in in, or
44 * space in out.
48 public int processBlock(byte[] in, int inOff, byte[] out, int outOff) argument
52 * Reset the cipher. After resetting the cipher is in th
[all...]

Completed in 2256 milliseconds

123456789