HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 26 - 50 of 646) sorted by null

12 3 4 5 6 7 8 91011>>

  /device/samsung/crespo/alsa-lib/include/
alisp.h 11 * This program is distributed in the hope that it will be useful,
26 snd_input_t *in; /* program code */ member in struct:alisp_cfg
  /external/openssl/crypto/x509/
x509_set.c 11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC
79 ASN1_INTEGER *in; local
109 ASN1_TIME *in; local
127 ASN1_TIME *in; local
    [all...]
x509cset.c 8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
86 ASN1_TIME *in; local
104 ASN1_TIME *in; local
138 ASN1_TIME *in; local
156 ASN1_INTEGER *in; local
    [all...]
  /external/ppp/pppd/
md5.h 9 ** -- FF, GG, HH modified to add in last register done **
22 ** Digest Algorithm" in all material mentioning or referencing this **
27 ** Data Security, Inc. MD5 Message-Digest Algorithm" in all **
35 ** These notices must be retained in any copies of any part of this **
56 unsigned char in[64]; /* input buffer */ member in struct:__anon5678
  /external/easymock/src/org/easymock/internal/
EasyMockProperties.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
29 * <li>easymock.properties in classpath default package</li>
58 InputStream in = getClassLoader().getResourceAsStream( local
60 if (in != null) {
61 in = new BufferedInputStream(in);
63 properties.load(in);
69 in.close();
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.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
33 InflaterInputStream in = createInflaterStream(true); local
34 assertEquals(1, in.read());
35 assertEquals(2, in.read());
36 assertEquals(3, in.read());
40 InflaterInputStream in = createInflaterStream(false); local
42 in.read();
ZipEntryTest.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
51 ZipInputStream in = new ZipInputStream(new FileInputStream(f)); local
54 while ((entry = in.getNextEntry()) != null) {
59 in.close();
  /packages/apps/Calculator/src/com/android/calculator2/
Persist.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
45 DataInputStream in = new DataInputStream(is); local
46 int version = in.readInt();
50 history = new History(version, in);
51 in.close();
  /packages/apps/Email/src/org/apache/commons/io/input/
ProxyInputStream.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
44 // the proxy is stored in a protected superclass variable named 'in'
53 return in.read();
63 return in.read(bts);
75 return in.read(bts, st, end);
85 return in.skip(ln);
94 return in.available();
102 in.close();
    [all...]
ProxyReader.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
44 // the proxy is stored in a protected superclass variable named 'in'
53 return in.read();
63 return in.read(chr);
75 return in.read(chr, st, end);
85 return in.skip(ln);
94 return in.ready();
102 in.close();
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/
EOLConvertingInputStream.java 7 * "License"); you may not use this file except in compliance *
12 * Unless required by applicable law or agreed to in writing, *
42 private PushbackInputStream in = null; field in class:EOLConvertingInputStream
48 * instance converting bytes in the given <code>InputStream</code>.
51 * @param in the <code>InputStream</code> to read from.
53 public EOLConvertingInputStream(InputStream in) {
54 this(in, CONVERT_BOTH);
58 * instance converting bytes in the given <code>InputStream</code>.
60 * @param in the <code>InputStream</code> to read from.
64 public EOLConvertingInputStream(InputStream in, int flags) {
    [all...]
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportPreviewActivity.java 46 InputStream in = null; local
48 // TODO: do this in a background thread, using handlers and all that nonsense.
49 in = getContentResolver().openInputStream(uri);
50 String text = BugReportParser.extractSystemLogs(in, section);
62 if (in != null) {
63 in.close();
  /libcore/support/src/test/java/tests/support/
Support_TestWebData.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
109 FileInputStream in = null; local
111 in = new FileInputStream(file);
112 while (in.available() > 0) {
113 out.write(in.read());
115 in.close();
126 if (in != null) {
127 in.close();
Support_GetLocal.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
42 InputStream in = Support_GetLocal.class.getResourceAsStream(url); local
48 while ((result = in.read(buf)) != -1) {
51 in.close();
62 InputStream in = new URL(url).openStream(); local
68 while ((result = in.read(buf)) != -1) {
71 in.close();
80 InputStream in = new URL(url).openStream(); local
84 while ((result = in.read(buf)) != -1)
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
RTExitHook.java 43 InputStream in = null; local
50 in = RTExitHook.class.getResourceAsStream (CLOSURE_RESOURCE);
51 if (in != null)
54 closureMap.load (in);
69 if (in != null) try { in.close (); } catch (IOException ignore) { ignore.printStackTrace (); }
71 in = null;
120 private Class m_RT; // keep our RT class pinned in memory
  /frameworks/base/core/java/android/speech/srec/
UlawEncoderInputStream.java 8 * use this file except in compliance with the License.
13 * Unless required by applicable law or agreed to in writing, software
52 // from 'ulaw' in wikipedia
54 // +8158 to +4063 in 16 intervals of 256 0x80 + interval number
55 // +4062 to +2015 in 16 intervals of 128 0x90 + interval number
56 // +2014 to +991 in 16 intervals of 64 0xA0 + interval number
57 // +990 to +479 in 16 intervals of 32 0xB0 + interval number
58 // +478 to +223 in 16 intervals of 16 0xC0 + interval number
59 // +222 to +95 in 16 intervals of 8 0xD0 + interval number
60 // +94 to +31 in 16 intervals of 4 0xE0 + interval numbe
177 InputStream in = mIn; local
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
GZIPStreamTest.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
97 GZIPInputStream in = new GZIPInputStream(bytesIn); local
103 while ((len = in.read(buf)) > 0) {
110 in.close();
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ProfilesLoader.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
34 BufferedReader in = null; local
43 in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
49 String response = in.readLine();
64 if (in != null) {
65 in.close();
VersionLoader.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
42 BufferedReader in = null; local
51 in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
57 return Integer.parseInt(in.readLine());
65 if (in != null) {
66 in.close();
  /device/samsung/crespo/alsa-lib/alsalisp/
alsalisp.c 11 * This program is distributed in the hope that it will be useful,
38 snd_input_t *in; local
44 if ((err = snd_input_stdio_open(&in, file, "r")) < 0) {
49 if ((err = snd_input_stdio_attach(&in, stdin, 0)) < 0) {
55 snd_input_close(in);
62 cfg.in = in;
70 snd_input_close(in);
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_dmix_i386.c 95 FILE *in; local
99 in = fopen("/proc/cpuinfo", "r");
100 if (in) {
101 while (!feof(in)) {
102 fgets(line, sizeof(line), in);
112 fclose(in);
pcm_dmix_x86_64.c 79 FILE *in; local
83 in = fopen("/proc/cpuinfo", "r");
84 if (in) {
85 while (!feof(in)) {
86 fgets(line, sizeof(line), in);
90 fclose(in);
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 12 * "License"); you may not use this file except in compliance
17 * Unless required by applicable law or agreed to in writing,
50 private final SessionInputBuffer in; field in class:IdentityInputStream
54 public IdentityInputStream(final SessionInputBuffer in) {
56 if (in == null) {
59 this.in = in;
63 if (!this.closed && this.in.isDataAvailable(10)) {
78 return this.in.read();
86 return this.in.read(b, off, len)
    [all...]
  /external/chromium/base/json/
string_escape_unittest.cc 3 // found in the LICENSE file.
27 std::string in = json_narrow_cases[i].to_escape; local
29 JsonDoubleQuote(in, false, &out);
33 std::string in = json_narrow_cases[0].to_escape; local
35 JsonDoubleQuote(in, false, &out);
39 JsonDoubleQuote(in, true, &out_quoted);
43 // now try with a NULL in the string
46 in = null_prepend + in;
50 JsonDoubleQuote(in, false, &out)
73 string16 in = WideToUTF16(json_wide_cases[i].to_escape); local
78 string16 in = WideToUTF16(json_wide_cases[0].to_escape); local
    [all...]
  /external/guava/src/com/google/common/io/
CountingInputStream.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
37 * @param in the input stream to be wrapped
39 public CountingInputStream(InputStream in) {
40 super(in);
49 int result = in.read();
57 int result = in.read(b, off, len);
65 long result = in.skip(n);
71 in.mark(readlimit);
77 if (!in.markSupported())
    [all...]

Completed in 2677 milliseconds

12 3 4 5 6 7 8 91011>>