HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 1 - 25 of 3164) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/curl/src/
tool_cb_rea.c 10 * This software is licensed as described in the file COPYING, which
40 struct InStruct *in = userdata; local
42 rc = read(in->fd, buffer, sz*nmemb);
46 in->config->readbusy = TRUE;
52 in->config->readbusy = FALSE;
  /external/libvorbis/doc/
a2-encapsulation-rtp.tex 4 \section{Vorbis encapsulation in RTP} \label{vorbis:over:rtp}
9 Audio''} for description of how to embed Vorbis audio in an RTP stream.
  /external/valgrind/none/tests/mips32/
test_fcsr.c 6 unsigned long long in [] = {0x405EE0A3D70A3D71ULL, 0x3FF0000000000000ULL}; local
20 : "r" (in), "r" (out)
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
InputStreamReader.java 6 in all copies.
16 private final InputStream in; field in class:InputStreamReader
20 public InputStreamReader (InputStream in) {
21 this.in = in;
25 public InputStreamReader (InputStream in, String encoding) throws UnsupportedEncodingException {
26 this(in);
36 int c = in.read(buffer);
41 in.close();
StringReader.java 6 in all copies.
14 private final String in; field in class:StringReader
17 public StringReader (String in) {
18 this.in = in;
22 if (length > in.length() - position) {
23 length = in.length() - position;
28 in.getChars(position, position + length, b, offset);
  /external/wpa_supplicant_8/src/crypto/
md5_i.h 15 u8 in[64]; member in struct:MD5Context
  /system/media/audio_utils/tests/
limiter_tests.c 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
32 float in = (float) ((double) i * 0.01); local
33 float out = limiter(in);
34 printf("%g,%g\n", in, out);
36 out = limiter(-in);
37 printf("%g,%g\n", -in, out);
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptor_AutoCloseInputStreamTest.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 AutoCloseInputStream in = new AutoCloseInputStream(pf); local
30 assertEquals(0, in.read());
32 in.close();
35 in.read();
  /libcore/ojluni/src/main/java/java/io/
FilterInputStream.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
50 protected volatile InputStream in; field in class:FilterInputStream
54 * by assigning the argument <code>in</code>
55 * to the field <code>this.in</code> so as
58 * @param in the underlying input stream, or <code>null</code> if
61 protected FilterInputStream(InputStream in) {
62 this.in = in;
    [all...]
FilterReader.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
46 protected Reader in; field in class:FilterReader
51 * @param in a Reader object providing the underlying stream.
52 * @throws NullPointerException if <code>in</code> is <code>null</code>
54 protected FilterReader(Reader in) {
55 super(in);
56 this.in = in;
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapReceiver.java 6 * Redistribution and use in source and binary forms, with or without
12 * - Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
51 Intent in = new Intent(); local
52 in.putExtras(intent);
53 in.setClass(context, BluetoothPbapService.class);
55 in.putExtra("action", action)
    [all...]
  /bionic/libc/bionic/
sigblock.c 5 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
38 } in, out; local
40 sigemptyset(&in.the_sigset);
41 in.the_mask = mask;
43 n = sigprocmask(SIG_BLOCK, &in.the_sigset, &out.the_sigset)
    [all...]