HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 826 - 850 of 3847) sorted by null

<<31323334353637383940>>

  /libcore/ojluni/src/main/java/java/io/
PipedInputStream.java 10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
83 * The index of the position in the circular buffer at which the
85 * piped output stream. <code>in&lt;0</code> implies the buffer is empty,
86 * <code>in==out</code> implies the buffer is full
89 protected int in = -1; field in class:PipedInputStream
92 * The index of the position in the circular buffer at which the next
206 if (in == out)
208 if (in < 0)
    [all...]
PipedReader.java 10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
61 * The index of the position in the circular buffer at which the
63 * piped writer. <code>in&lt;0</code> implies the buffer is empty,
64 * <code>in==out</code> implies the buffer is full
66 int in = -1; field in class:PipedReader
69 * The index of the position in the circular buffer at which the next
180 while (in == out) {
194 if (in < 0)
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
DeflaterInputStream.java 10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
34 * Implements an input stream filter for compressing data in the "deflate"
65 if (in == null) {
74 * @param in input stream to read the uncompressed data to
75 * @throws NullPointerException if {@code in} is null
77 public DeflaterInputStream(InputStream in) {
78 this(in, new Deflater());
86 * @param in input stream to read the uncompressed data t
    [all...]
InflaterInputStream.java 10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
35 * This class implements a stream filter for uncompressing data in the
78 * @param in the input stream
83 public InflaterInputStream(InputStream in, Inflater inf, int size) {
84 super(in);
85 if (in == null || inf == null) {
97 * @param in the input stream
100 public InflaterInputStream(InputStream in, Inflater inf)
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
EncryptedPrivateKeyInfo.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
38 * as defined in PKCS #8.
116 * @param algName encryption algorithm name. See Appendix A in the
198 * in the constructor when such mapping is available.
199 * See Appendix A in the
231 * <br>Note: In order to successfully retrieve the enclosed
355 * cipher to decrypt the encrypted data in <code>provider</code>.
410 DerInputStream in = new DerInputStream(encodedKey) local
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/
MeteredStream.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
119 int c = in.read();
133 int n = in.read(b, off, len);
147 if (in instanceof ChunkedInputStream) {
148 n = in.skip(n);
154 n = in.skip(min);
168 in.close();
172 return closed ? 0: in.available()
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
EDIPartyName.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
83 DerInputStream in = new DerInputStream(derValue.toByteArray()); local
84 DerValue[] seq = in.getSequence(2);
95 throw new IOException("Duplicate nameAssigner found in"
103 throw new IOException("Duplicate partyName found in"
225 * </ul>. These results are used in checking NameConstraints during
248 * path lengths in name subtrees.
Extension.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
36 * <p>Extensions are additional attributes which can be inserted in a X509
77 DerInputStream in = derVal.toDerInputStream(); local
80 extensionId = in.getOID();
83 DerValue val = in.getDerValue();
88 val = in.getDerValue();
108 // passed in a DER encoded octet string, strip off the tag
206 * encoded octet string which is in the certificate
    [all...]
OtherName.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
89 DerInputStream in = derValue.toDerInputStream(); local
91 oid = in.getOID();
92 DerValue val = in.getDerValue();
230 * <li>NAME_NARROWS = 1: input name narrows name (is lower in the
232 * <li>NAME_WIDENS = 2: input name widens name (is higher in the
236 * </ul>. These results are used in checking NameConstraints during
PolicyConstraintsExtension.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
40 * The policy constraints extension can be used in certificates issued
42 * in two ways. It can be used to prohibit policy mapping or require
43 * that each certificate in a path contain an acceptable policy
45 * The ASN.1 syntax for this is (IMPLICIT tagging is defined in the
153 DerInputStream in = val.data; local
154 while (in != null && in.available() != 0)
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/
TelephonyVvmConfigManager.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
101 public static ArrayList readBundleList(XmlPullParser in)
103 final int outerDepth = in.getDepth();
105 while (((event = in.next()) != XmlPullParser.END_DOCUMENT)
106 && (event != XmlPullParser.END_TAG || in.getDepth() < outerDepth)) {
108 final String startTag = in.getName();
110 in.next();
111 return XmlUtils.readThisListXml(in, startTag, tagName, new MyReadMapCallback(), false);
117 public static PersistableBundle restoreFromXml(XmlPullParser in)
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ProcStatsPackageEntry.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
59 public ProcStatsPackageEntry(Parcel in) {
60 mPackage = in.readString();
61 in.readTypedList(mEntries, ProcStatsEntry.CREATOR);
62 mBgDuration = in.readLong();
63 mAvgBgMem = in.readLong();
64 mMaxBgMem = in.readLong();
65 mBgWeight = in.readDouble();
66 mRunDuration = in.readLong()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
pcm_rate.h 20 * This program is distributed in the hope that it will be useful,
53 struct snd_pcm_rate_side_info in; member in struct:snd_pcm_rate_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
netfilter.h 55 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
codecvt.h 11 // This library is distributed in the hope that it will be useful,
17 // permissions described in the GCC Runtime Library Exception, version
89 * The characters in [from,from_end) are converted and written to
102 * the input ends early or there is insufficient space in the
131 * the state in initial conditions, rather than partial conversion
135 * character, and input to in() had 6 external characters with state
169 * The characters in [from,from_end) are converted and written to
182 * the input ends early or there is insufficient space in the
196 in(state_type& __state, const extern_type* __from, function in class:__codecvt_abstract_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
pcm_rate.h 20 * This program is distributed in the hope that it will be useful,
53 struct snd_pcm_rate_side_info in; member in struct:snd_pcm_rate_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
netfilter.h 65 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
codecvt.h 11 // This library is distributed in the hope that it will be useful,
17 // permissions described in the GCC Runtime Library Exception, version
89 * The characters in [from,from_end) are converted and written to
102 * the input ends early or there is insufficient space in the
131 * the state in initial conditions, rather than partial conversion
135 * character, and input to in() had 6 external characters with state
169 * The characters in [from,from_end) are converted and written to
182 * the input ends early or there is insufficient space in the
196 in(state_type& __state, const extern_type* __from, function in class:__codecvt_abstract_base
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
codecvt.h 11 // This library is distributed in the hope that it will be useful,
17 // permissions described in the GCC Runtime Library Exception, version
89 * The characters in [from,from_end) are converted and written to
102 * the input ends early or there is insufficient space in the
131 * the state in initial conditions, rather than partial conversion
135 * character, and input to in() had 6 external characters with state
169 * The characters in [from,from_end) are converted and written to
182 * the input ends early or there is insufficient space in the
196 in(state_type& __state, const extern_type* __from, function in class:__codecvt_abstract_base
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/linux/
netfilter.h 72 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/linux/
netfilter.h 72 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/linux/
netfilter.h 72 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/linux/
netfilter.h 72 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/ndk/r10/platforms/android-21/arch-x86/usr/include/linux/
netfilter.h 72 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/ndk/r10/platforms/android-21/arch-x86_64/usr/include/linux/
netfilter.h 72 struct in_addr in; member in union:nf_inet_addr

Completed in 769 milliseconds

<<31323334353637383940>>