HomeSort by relevance Sort by last modified time
    Searched full:stream (Results 1001 - 1025 of 9695) sorted by null

<<41424344454647484950>>

  /external/chromium_org/media/audio/
audio_input_ipc.h 20 // Valid states for the input stream.
40 // Called when state of an audio stream has changed.
43 // Called when the input stream volume has changed.
67 // memory buffer. Once the stream has been created, the implementation will
78 // Sets the volume of the audio stream.
81 // Closes the audio stream, which should shut down the corresponding
virtual_audio_input_stream.h 30 // VirtualAudioOutputStreams into a single stream. It will continuously render
39 // into a single stream having the given |params|. |worker_loop| is the loop
62 // stream must be closed (which causes a detach) before
64 virtual void AddOutputStream(VirtualAudioOutputStream* stream,
68 virtual void RemoveOutputStream(VirtualAudioOutputStream* stream,
100 // final audio stream.
  /external/chromium_org/third_party/libjingle/source/talk/sound/
soundinputstreaminterface.h 36 // Interface for consuming an input stream from a recording device.
48 // Retrieves the current input volume for this stream. Nominal range is
55 // Changes the input volume for this stream. Nominal range is defined by
60 // Closes this stream object. If currently reading then this may only be
64 // Get the latency of the stream.
72 // The 3rd parameter is the stream that is issuing the callback.
soundoutputstreaminterface.h 36 // Interface for outputting a stream to a playback device.
53 // Retrieves the current output volume for this stream. Nominal range is
60 // Changes the output volume for this stream. Nominal range is defined by
65 // Closes this stream object. If currently monitoring then this may only be
69 // Get the latency of the stream.
77 // The 2nd parameter is the stream that is issuing the callback.
  /external/chromium_org/third_party/skia/include/images/
SkImageRef.h 26 /** Create a new imageref from a stream. NOTE: the stream is not copied, but
28 that this imageref is the only owner of the stream. i.e. - sole
29 ownership of the stream object is transferred to this imageref object.
31 @param stream The stream containing the encoded image data. This may be
  /external/chromium_org/v8/src/ia32/
lithium-ia32.cc 96 void LInstruction::PrintTo(StringStream* stream) {
97 stream->Add("%s ", this->Mnemonic());
99 PrintOutputOperandTo(stream);
101 PrintDataTo(stream);
104 stream->Add(" ");
105 environment()->PrintTo(stream);
109 stream->Add(" ");
110 pointer_map()->PrintTo(stream);
115 void LInstruction::PrintDataTo(StringStream* stream) {
116 stream->Add("= ")
    [all...]
  /external/freetype/include/freetype/internal/
sfnt.h 42 /* stream :: The input stream. */
57 /* The stream cursor must be at the font file's origin. */
67 (*TT_Init_Face_Func)( FT_Stream stream,
85 /* stream :: The input stream. */
103 (*TT_Load_Face_Func)( FT_Stream stream,
222 /* stream :: The input stream. */
233 /* The stream cursor must be positioned at the glyph's offset within *
    [all...]
  /external/junit/src/org/junit/experimental/max/
MaxHistory.java 49 ObjectInputStream stream= new ObjectInputStream(file); local
51 return (MaxHistory) stream.readObject();
53 stream.close();
74 ObjectOutputStream stream= new ObjectOutputStream(new FileOutputStream( local
76 stream.writeObject(this);
77 stream.close();
  /external/libnl-headers/netlink/
msg.h 117 * Iterate over a stream of attributes in a message
121 * @arg rem initialized to len, holds bytes currently remaining in stream
128 * Iterate over a stream of messages
130 * @arg head head of message stream
131 * @arg len length of message stream
132 * @arg rem initialized to len, holds bytes currently remaining in stream
  /external/llvm/docs/tutorial/
OCamlLangImpl1.rst 192 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
194 ``Lexer.lex`` works by recursing over a ``char Stream.t`` to read
207 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] ->
210 lex_ident buffer stream
215 | [< ' ('A' .. 'Z' | 'a' .. 'z' | '0' .. '9' as c); stream >] ->
217 lex_ident buffer stream
218 | [< stream=lex >] ->
220 | "def" -> [< 'Token.Def; stream >]
221 | "extern" -> [< 'Token.Extern; stream >]
    [all...]
  /external/lzma/CS/7zip/Compress/LZ/
LzInWindow.cs 10 System.IO.Stream _stream;
12 bool _streamEndWasReached; // if (true) then _streamPos shows real end of stream
22 public UInt32 _streamPos; // offset (from _buffer) of first not read byte from Stream
81 public void SetStream(System.IO.Stream stream) { _stream = stream; }
  /external/skia/include/images/
SkImageRef.h 26 /** Create a new imageref from a stream. NOTE: the stream is not copied, but
28 that this imageref is the only owner of the stream. i.e. - sole
29 ownership of the stream object is transferred to this imageref object.
31 @param stream The stream containing the encoded image data. This may be
  /external/smack/src/org/jivesoftware/smackx/bytestreams/
BytestreamSession.java 37 * @throws IOException if an error occurs while retrieving the input stream
45 * @throws IOException if an error occurs while retrieving the output stream
52 * Closing the session will also close the input stream and the output stream associated to this
60 * Returns the timeout for read operations of the input stream associated with this session. 0
70 * read() call on the input stream associated with this session will block for only this amount
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransferRequest.java 36 * A recieve request is constructed from the Stream Initiation request
43 * The Stream initiaton recieved from the initiator.
98 * Returns the stream ID that uniquely identifies this file transfer.
100 * @return Returns the stream ID that uniquely identifies this file
108 * Returns the stream initiation packet that was sent by the requestor which
112 * @return Returns the stream initiation packet that was sent by the
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLECPrivateKey.java 151 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
152 stream.defaultReadObject();
154 byte[] encoded = (byte[]) stream.readObject();
162 private void writeObject(ObjectOutputStream stream) throws IOException {
167 stream.defaultWriteObject();
168 stream.writeObject(getEncoded());
OpenSSLECPublicKey.java 154 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
155 stream.defaultReadObject();
157 byte[] encoded = (byte[]) stream.readObject();
165 private void writeObject(ObjectOutputStream stream) throws IOException {
170 stream.defaultWriteObject();
171 stream.writeObject(getEncoded());
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStoreSpi.java 129 public void engineStore(OutputStream stream, char[] password)
131 if (!(stream instanceof ByteArrayOutputStream)) {
132 throw new IOException("Incorrect stream");
134 if (((ByteArrayOutputStream) stream).size() == 0) {
135 throw new IOException("Incorrect stream size ");
142 public void engineLoad(InputStream stream, char[] password)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
imbue.pass.cpp 31 void f1(std::ios_base::event ev, std::ios_base& stream, int index)
38 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
44 void f2(std::ios_base::event ev, std::ios_base& stream, int index)
51 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
57 void f3(std::ios_base::event ev, std::ios_base& stream, int index)
64 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.locales/
imbue.pass.cpp 37 void f1(std::ios_base::event ev, std::ios_base& stream, int index)
44 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
50 void f2(std::ios_base::event ev, std::ios_base& stream, int index)
57 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
63 void f3(std::ios_base::event ev, std::ios_base& stream, int index)
70 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppHandoverReceiver.java 48 Uri stream = (Uri)intent.getParcelableExtra(Intent.EXTRA_STREAM); local
49 if (stream != null && type != null) {
50 // Save type/stream, will be used when adding transfer
53 stream.toString(), true);
55 if (D) Log.d(TAG, "No mimeType or stream attached to handover request");
65 if (D) Log.d(TAG, "No mimeType or stream attached to handover request");
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
ProxyInputStream.java 24 * A Proxy stream which acts as expected, that is it passes the method
25 * calls on to the proxied stream and doesn't change which methods are
49 * @return the byte read or -1 if the end of stream
59 * @return the number of bytes read or -1 if the end of stream
71 * @return the number of bytes read or -1 if the end of stream
81 * @return the number of bytes to skipped or -1 if the end of stream
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
basic_ios.h 55 * @brief Virtual base class for all stream classes.
58 * Most of the member functions called dispatched on stream objects
120 * @brief Returns the error state of the stream buffer.
208 * This changes nothing in the stream. See the one-argument version
220 * exceptions mask for each stream; if a bit in the mask becomes set
276 * @brief Fetches the current @e tied stream.
277 * @return A pointer to the tied stream, or NULL if the stream is
280 * A stream may be @e tied (or synchronized) to a second output
281 * stream. When this stream performs any I/O, the tied stream i
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
basic_ios.h 57 * @brief Virtual base class for all stream classes.
60 * Most of the member functions called dispatched on stream objects
122 * @brief Returns the error state of the stream buffer.
210 * This changes nothing in the stream. See the one-argument version
222 * exceptions mask for each stream; if a bit in the mask becomes set
278 * @brief Fetches the current @e tied stream.
279 * @return A pointer to the tied stream, or NULL if the stream is
282 * A stream may be @e tied (or synchronized) to a second output
283 * stream. When this stream performs any I/O, the tied stream i
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
basic_ios.h 57 * @brief Virtual base class for all stream classes.
60 * Most of the member functions called dispatched on stream objects
122 * @brief Returns the error state of the stream buffer.
210 * This changes nothing in the stream. See the one-argument version
222 * exceptions mask for each stream; if a bit in the mask becomes set
278 * @brief Fetches the current @e tied stream.
279 * @return A pointer to the tied stream, or NULL if the stream is
282 * A stream may be @e tied (or synchronized) to a second output
283 * stream. When this stream performs any I/O, the tied stream i
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
basic_ios.h 55 * @brief Virtual base class for all stream classes.
58 * Most of the member functions called dispatched on stream objects
120 * @brief Returns the error state of the stream buffer.
208 * This changes nothing in the stream. See the one-argument version
220 * exceptions mask for each stream; if a bit in the mask becomes set
276 * @brief Fetches the current @e tied stream.
277 * @return A pointer to the tied stream, or NULL if the stream is
280 * A stream may be @e tied (or synchronized) to a second output
281 * stream. When this stream performs any I/O, the tied stream i
    [all...]

Completed in 1061 milliseconds

<<41424344454647484950>>