HomeSort by relevance Sort by last modified time
    Searched full:streams (Results 1 - 25 of 623) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bluetooth/glib/gio/tests/
.gitignore 5 unix-streams
13 filter-streams
Makefile.am 29 filter-streams \
33 TEST_PROGS += live-g-file unix-streams desktop-app-info
66 unix_streams_SOURCES = unix-streams.c
76 filter_streams_SOURCES = filter-streams.c
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BEROctetStringParser.java 3 import org.bouncycastle.util.io.Streams;
37 return new BERConstructedOctetString(Streams.readAll(getOctetStream()));
DefiniteLengthInputStream.java 7 import org.bouncycastle.util.io.Streams;
98 if ((_remaining -= Streams.readFully(_in, bytes)) != 0)
  /packages/apps/Email/src/org/apache/commons/io/output/
TeeOutputStream.java 25 * are now two streams.
45 * Write the bytes to both streams.
55 * Write the specified bytes to both streams.
67 * Write a byte to both streams.
77 * Flushes both streams.
86 * Closes both streams.
  /cts/tests/tests/media/src/android/media/cts/
AudioManagerTest.java 498 int[] streams = { AudioManager.STREAM_ALARM, local
508 for (int i = 0; i < streams.length; i++) {
509 int maxVolume = mAudioManager.getStreamMaxVolume(streams[i]);
511 mAudioManager.setStreamVolume(streams[i], 1, FLAG_SHOW_UI);
512 assertEquals(1, mAudioManager.getStreamVolume(streams[i]));
514 mAudioManager.setStreamVolume(streams[i], maxVolume, FLAG_SHOW_UI);
515 mAudioManager.adjustStreamVolume(streams[i], ADJUST_RAISE, FLAG_SHOW_UI);
516 assertEquals(maxVolume, mAudioManager.getStreamVolume(streams[i]));
518 mAudioManager.adjustSuggestedStreamVolume(ADJUST_LOWER, streams[i], FLAG_SHOW_UI);
519 assertEquals(maxVolume - 1, mAudioManager.getStreamVolume(streams[i]))
    [all...]
  /libcore/luni/src/main/java/libcore/base/
Streams.java 23 public final class Streams {
26 private Streams() {}
39 * the same time that another stream is using it. Otherwise streams that use
42 * streams may call other streams in their skip() method, also clobbering the
  /external/zlib/contrib/ada/
zlib-streams.ads 9 -- $Id: zlib-streams.ads,v 1.12 2004/05/31 10:53:40 vagul Exp $
11 package ZLib.Streams is
15 type Stream_Access is access all Ada.Streams.Root_Stream_Type'Class;
18 new Ada.Streams.Root_Stream_Type with private;
22 Item : out Ada.Streams.Stream_Element_Array;
23 Last : out Ada.Streams.Stream_Element_Offset);
27 Item : in Ada.Streams.Stream_Element_Array);
61 Read_Buffer_Size : in Ada.Streams.Stream_Element_Offset
63 Write_Buffer_Size : in Ada.Streams.Stream_Element_Offset
86 use Ada.Streams;
    [all...]
test.adb 17 with ZLib.Streams;
18 with Ada.Streams.Stream_IO;
27 use Ada.Streams;
61 File_Z : ZLib.Streams.Stream_Type;
73 -- The procedure compearing data in 2 streams.
129 (Left, Right : in out Ada.Streams.Root_Stream_Type'Class)
163 (Source, Target : in out Ada.Streams.Root_Stream_Type'Class;
350 ZLib.Streams.Create
352 Mode => ZLib.Streams.Out_Stream,
353 Back => ZLib.Streams.Stream_Acces
    [all...]
zlib.ads 30 with Ada.Streams;
57 subtype Count is Ada.Streams.Stream_Element_Count;
178 (Item : out Ada.Streams.Stream_Element_Array;
179 Last : out Ada.Streams.Stream_Element_Offset);
181 (Item : in Ada.Streams.Stream_Element_Array);
201 Data : in Ada.Streams.Stream_Element_Array)
208 Data : in Ada.Streams.Stream_Element_Array);
218 In_Data : in Ada.Streams.Stream_Element_Array;
219 In_Last : out Ada.Streams.Stream_Element_Offset;
220 Out_Data : out Ada.Streams.Stream_Element_Array
    [all...]
zlib.adb 101 In_Data : in Ada.Streams.Stream_Element_Array;
102 In_Last : out Ada.Streams.Stream_Element_Offset;
103 Out_Data : out Ada.Streams.Stream_Element_Array;
104 Out_Last : out Ada.Streams.Stream_Element_Offset;
110 In_Data : in Ada.Streams.Stream_Element_Array;
111 In_Last : out Ada.Streams.Stream_Element_Offset;
112 Out_Data : out Ada.Streams.Stream_Element_Array;
113 Out_Last : out Ada.Streams.Stream_Element_Offset;
169 Data : in Ada.Streams.Stream_Element_Array)
181 Data : in Ada.Streams.Stream_Element_Array) i
    [all...]
  /external/astl/include/
iostream 40 * the std streams. Since it uses statics (see ioinit below) to
41 * initialize the cout/cerr streams and that statics are initialized
57 // streams (cout, cerr, etc...) have been initialized.
59 // streams (e.g on unload).
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
stropts.h 33 #define I_PUSH (__SID | 2) /* Push STREAMS module onto top of the current
35 #define I_POP (__SID | 3) /* Remove STREAMS module from just below the
43 #define I_STR (__SID | 8) /* Construct an internal STREAMS `ioctl'
53 #define I_LINK (__SID |12) /* Connect two STREAMs. */
54 #define I_UNLINK (__SID |13) /* Disconnects the two STREAMs. */
65 of a STREAMS pipe. */
71 #define I_PLINK (__SID |22) /* Connect two STREAMs with a persistent
73 #define I_PUNLINK (__SID |23) /* Disconnect the two STREAMs that were
108 #define S_MSG 0x0008 /* A STREAMS signal message that contains the
157 # define MUXID_ALL (-1) /* Unlink all STREAMs linked to the STREA
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
overview.html 22 filters, streams, readers and writers.
28 The filters and streams provide useful implementations that perhaps should
  /bionic/libc/netbsd/isc/
ev_streams.c 79 if (ctx->streams != NULL)
80 ctx->streams->prev = new;
82 new->next = ctx->streams;
83 ctx->streams = new;
113 if (ctx->streams != NULL)
114 ctx->streams->prev = new;
116 new->next = ctx->streams;
117 ctx->streams = new;
155 * The streams list is doubly threaded. First, there's ctx->streams
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
stream.h 37 /** \page streams Audio Streams
41 * Audio streams form the central functionality of the sound server. Data is
43 * to a final output. Currently, there are three forms of audio streams:
45 * \li Playback streams - Data flows from the client to the server.
46 * \li Record streams - Data flows from the server to the client.
47 * \li Upload streams - Similar to playback streams, but the data is stored in
75 * Playback and record streams always have a server side buffer as
101 * chunk for record streams
    [all...]
  /external/chromium/net/base/
bandwidth_metrics.h 17 // measure, this class needs to know when individual streams are in progress,
23 // them or add them. However, this does not work. If multiple streams are in
28 // Imagine 4 streams opening and closing with overlapping time.
31 // across all open streams.
81 // We don't use small streams when tracking bandwidth because they are not
110 int num_streams_in_progress_; // The number of streams in progress.
119 // It is important that we not leave unclosed streams, and this class helps
  /external/guava/src/com/google/common/io/
InputSupplier.java 22 * A factory for readable streams of bytes or characters.
OutputSupplier.java 22 * An factory for writable streams of bytes or characters.
package-info.java 21 * for example input streams, output streams, readers, writers, and files.
  /packages/apps/Email/docs/
TODO 20 pertaining to large attachments as streams instead of as large loads into byte arrays.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
stropts.h 47 /* Receive next message from a STREAMS file.
55 /* Receive next message from a STREAMS file, with *FLAGSP allowing to
83 /* Attach a STREAMS-based file descriptor FILDES to a file PATH in the
87 /* Detach a name PATH from a STREAMS-based file descriptor. */
  /external/chromium/net/flip/
flip_session.h 98 // Closes all open streams. Used as part of shutdown.
144 // Closes this session. This will close all active streams and mark
150 // Track active streams in the active stream list.
187 // Map from stream id to all active streams. Streams are active in the sense
192 // TODO(willchan): Perhaps we should separate out cancelled streams and move
196 // List of all the streams that have already started to be pushed by the
199 // List of streams declared in X-Associated-Content headers, but do not have
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-message.h 83 // narrow streams.
106 // Streams a value (either a pointer or not) to this object.
113 // Streams a non-pointer value to this object.
120 // Streams a pointer value to this object.
145 // and wide streams, we have to provide this specialized definition
171 // encoding, and streams the result to this Message object.
177 // encoding, and streams the result to this Message object.
217 // Streams a Message to an ostream.
  /external/gtest/include/gtest/
gtest-message.h 83 // narrow streams.
106 // Streams a value (either a pointer or not) to this object.
113 // Streams a non-pointer value to this object.
120 // Streams a pointer value to this object.
145 // and wide streams, we have to provide this specialized definition
171 // encoding, and streams the result to this Message object.
177 // encoding, and streams the result to this Message object.
217 // Streams a Message to an ostream.

Completed in 811 milliseconds

1 2 3 4 5 6 7 8 91011>>