Home
last modified time | relevance | path

Searched defs:Stream (Results 1 – 25 of 1277) sorted by relevance

12345678910>>...52

/aosp_15_r20/external/rust/android-crates-io/crates/h2/src/proto/streams/
Dstream.rs19 pub(super) struct Stream { struct
21 pub id: StreamId, argument
24 pub state: State,
28 pub is_counted: bool,
31 pub ref_count: usize,
35 pub next_pending_send: Option<store::Key>,
38 pub is_pending_send: bool,
41 pub send_flow: FlowControl,
44 pub requested_send_capacity: WindowSize,
48 pub buffered_send_data: usize,
[all …]
/aosp_15_r20/external/openscreen/cast/streaming/
H A Doffer_messages.h46 struct Stream { struct
50 Stream::Type type, argument
77 struct AudioStream { argument
82 Stream stream; argument
/aosp_15_r20/external/mtools/
H A Dfile.c67 static File_t *getUnbufferedFile(Stream_t *Stream) in getUnbufferedFile()
79 Fs_t *getFs(Stream_t *Stream) in getFs()
84 struct dirCache_t **getDirCacheP(Stream_t *Stream) in getDirCacheP()
89 direntry_t *getDirentry(Stream_t *Stream) in getDirentry()
183 Stream_t *Stream = GetFs(Dir); in countBlocks() local
194 Stream_t *Stream = GetFs(Dir); in countBytes() local
201 void printFat(Stream_t *Stream) in printFat()
243 void printFatWithOffset(Stream_t *Stream, off_t offset) { in printFatWithOffset()
406 static ssize_t read_file(Stream_t *Stream, char *buf, size_t ilen) in read_file()
426 static ssize_t write_file(Stream_t *Stream, char *buf, size_t ilen) in write_file()
[all …]
H A Dfat.c65 static FatMap_t *GetFatMap(Fs_t *Stream) in GetFatMap()
86 static __inline__ int locate(Fs_t *Stream, uint32_t offset, in locate()
235 static unsigned char *getAddress(Fs_t *Stream, in getAddress()
260 static int readByte(Fs_t *Stream, unsigned int start) in readByte()
289 static unsigned int fat12_decode(Fs_t *Stream, unsigned int num) in fat12_decode()
311 static void fat12_encode(Fs_t *Stream, unsigned int num, unsigned int code) in fat12_encode()
337 static unsigned int fat16_decode(Fs_t *Stream, unsigned int num) in fat16_decode()
345 static void fat16_encode(Fs_t *Stream, unsigned int num, unsigned int code) in fat16_encode()
362 static unsigned int fast_fat16_decode(Fs_t *Stream, unsigned int num) in fast_fat16_decode()
372 static void fast_fat16_encode(Fs_t *Stream, unsigned int num, unsigned int code) in fast_fat16_encode()
[all …]
H A Dstream.c34 void init_head(Stream_t *Stream, struct Class_t *Class, Stream_t *Next) in init_head()
41 int flush_stream(Stream_t *Stream) in flush_stream()
53 Stream_t *copy_stream(Stream_t *Stream) in copy_stream()
60 int free_stream(Stream_t **Stream) in free_stream()
83 int set_geom_pass_through(Stream_t *Stream, device_t *dev, device_t *orig_dev) in set_geom_pass_through()
95 int get_data_pass_through(Stream_t *Stream, time_t *date, mt_off_t *size, in get_data_pass_through()
101 ssize_t pread_pass_through(Stream_t *Stream, char *buf, in pread_pass_through()
107 ssize_t pwrite_pass_through(Stream_t *Stream, char *buf, in pwrite_pass_through()
113 doscp_t *get_dosConvert_pass_through(Stream_t *Stream) in get_dosConvert_pass_through()
/aosp_15_r20/external/crosvm/devices/src/virtio/snd/vios_backend/
H A Dstreams.rs54 pub struct Stream { struct
56 receiver: Receiver<Box<StreamMsg>>, argument
61 current_state: StreamState, argument
75 impl Stream { impl
335 impl Drop for Stream { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/winnow/src/ascii/
Dmod.rs87 I: Stream, in crlf()
132 I: Stream, in till_line_ending()
152 I: Stream, in not_line_ending()
164 I: Stream, in till_line_ending_()
220 I: Stream, in line_ending()
260 I: Stream, in newline()
300 I: Stream, in tab()
342 I: Stream, in alpha0()
384 I: Stream, in alpha1()
427 I: Stream, in digit0()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/combine/src/stream/
Dbuffered.rs28 pub struct Stream<Input> struct
38 impl<Input> ResetStream for Stream<Input> argument
62 impl<Input> Stream<Input> impl
80 impl<Input> Positioned for Stream<Input> implementation
102 impl<Input> StreamOnce for Stream<Input> implementation
/aosp_15_r20/external/swiftshader/src/Device/
H A DStream.hpp22 struct Stream struct
24 const void *buffer = nullptr;
25 unsigned int robustnessSize = 0;
26 VkVertexInputRate inputRate = VK_VERTEX_INPUT_RATE_VERTEX;
27 unsigned int vertexStride = 0;
28 unsigned int instanceStride = 0;
29 VkFormat format = VK_FORMAT_UNDEFINED;
30 unsigned int offset = 0;
31 unsigned int binding = 0;
/aosp_15_r20/external/rust/android-crates-io/crates/winnow/src/combinator/
Dcore.rs21 I: Stream, in rest()
43 I: Stream, in rest_len()
73 pub fn opt<I: Stream, O, E: ParserError<I>, F>(mut f: F) -> impl Parser<I, Option<O>, E> in opt()
113 I: Stream, in cond()
144 pub fn peek<I: Stream, O, E: ParserError<I>, F>(mut f: F) -> impl Parser<I, O, E> in peek()
176 I: Stream, in eof()
207 pub fn not<I: Stream, O, E: ParserError<I>, F>(mut parser: F) -> impl Parser<I, (), E> in not()
282 I: Stream, in cut_err()
296 I: Stream, in backtrack_err()
325 I: Stream, in todo()
[all …]
Dmulti.rs120 I: Stream, in repeat()
310 I: Stream, in repeat0_()
339 I: Stream, in repeat1_()
375 I: Stream, in repeat_n_()
398 I: Stream, in repeat_m_n_()
476 I: Stream, in repeat_till()
499 I: Stream, in repeat_till0()
510 I: Stream, in repeat_till0_()
549 I: Stream, in repeat_till_m_n_()
707 I: Stream, in separated()
[all …]
/aosp_15_r20/frameworks/av/media/module/mpeg2ts/
H A DATSParser.cpp142 struct ATSParser::Stream : public RefBase { struct in android::ATSParser
145 unsigned type() const { return mStreamType; } in type()
146 unsigned typeExt() const { return mStreamTypeExt; } in typeExt()
147 unsigned pid() const { return mElementaryPID; } in pid()
148 void setPID(unsigned pid) { mElementaryPID = pid; } in setPID()
149 void setAudioPresentations(AudioPresentationCollection audioPresentations) { in setAudioPresentations()
187 struct SubSampleInfo {
192 Program *mProgram;
193 unsigned mElementaryPID;
194 unsigned mStreamType;
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/include/boost/thread/
Dexternally_locked_stream.hpp37 stream_guard(externally_locked_stream<Stream, RecursiveMutex>& mtx) : in stream_guard()
43 stream_guard(externally_locked_stream<Stream, RecursiveMutex>& mtx, adopt_lock_t) : in stream_guard()
122 …inline const stream_guard<Stream, RecursiveMutex>& operator<<(const stream_guard<Stream, Recursive… in operator <<()
129 …inline const stream_guard<Stream, RecursiveMutex>& operator<<(const stream_guard<Stream, Recursive… in operator <<() argument
136 …inline const stream_guard<Stream, RecursiveMutex>& operator>>(const stream_guard<Stream, Recursive… in operator >>()
143 …inline stream_guard<Stream, RecursiveMutex> operator<<(externally_locked_stream<Stream, RecursiveM… in operator <<()
151 …rd<Stream, RecursiveMutex> operator<<(externally_locked_stream<Stream, RecursiveMutex>& mtx, Strea… in operator <<() argument
159 …inline stream_guard<Stream, RecursiveMutex> operator>>(externally_locked_stream<Stream, RecursiveM… in operator >>()
/aosp_15_r20/external/rust/crates/quiche/src/h3/
Dstream.rs121 pub struct Stream { struct
123 id: u64,
126 ty: Option<Type>,
129 state: State,
132 state_buf: Vec<u8>,
135 state_len: usize,
161 impl Stream { implementation
166 pub fn new(id: u64, is_local: bool) -> Stream { in new()
638 fn open_uni(b: &mut octets::OctetsMut, ty: u64) -> Result<Stream> { in open_uni()
648 stream: &mut Stream, ty: u64, cursor: &mut std::io::Cursor<Vec<u8>>, in parse_uni()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/src/h3/
Dstream.rs121 pub struct Stream { struct
123 id: u64,
126 ty: Option<Type>,
129 state: State,
132 state_buf: Vec<u8>,
135 state_len: usize,
161 impl Stream { argument
166 pub fn new(id: u64, is_local: bool) -> Stream { in new()
638 fn open_uni(b: &mut octets::OctetsMut, ty: u64) -> Result<Stream> { in open_uni()
648 stream: &mut Stream, ty: u64, cursor: &mut std::io::Cursor<Vec<u8>>, in parse_uni()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/winnow/src/token/
Dmod.rs49 I: Stream, in any()
66 I: Stream, in any_()
316 I: Stream, in one_of()
356 I: Stream, in none_of()
508 I: Stream, in take_while()
549 I: Stream, in take_while0_()
565 I: Stream, in take_while1_()
583 I: Stream, in take_while_m_n_()
593 fn take_till0_partial<P, I: Stream, E: ParserError<I>>( in take_till0_partial() argument
612 fn take_till1_partial<P, I: Stream, E: ParserError<I>>( in take_till1_partial() argument
[all …]
/aosp_15_r20/external/libbrillo/brillo/streams/
H A Dstream_test.cc92 TEST(Stream, TruncateBlocking) { in TEST() argument
99 TEST(Stream, SetPosition) { in TEST() argument
117 TEST(Stream, ReadAsync) { in TEST() argument
166 TEST(Stream, ReadAsync_DontWaitForData) { in TEST() argument
206 TEST(Stream, ReadAllAsync) { in TEST() argument
255 TEST(Stream, ReadAllAsync_EOS) { in TEST() argument
289 TEST(Stream, ReadBlocking) { in TEST() argument
342 TEST(Stream, ReadAllBlocking) { in TEST() argument
369 TEST(Stream, WriteAsync) { in TEST() argument
408 TEST(Stream, WriteAllAsync) { in TEST() argument
[all …]
/aosp_15_r20/external/pigweed/pw_stream/
H A Dstream_test.cc147 TEST(Stream, NonSeekableReader) { in TEST() argument
154 TEST(Stream, RelativeSeekableReader) { in TEST() argument
161 TEST(Stream, SeekableReader) { in TEST() argument
165 TEST(Stream, NonSeekableWriter) { in TEST() argument
172 TEST(Stream, RelativeSeekableWriter) { in TEST() argument
179 TEST(Stream, SeekableWriter) { in TEST() argument
183 TEST(Stream, NonSeekableReaderWriter) { in TEST() argument
190 TEST(Stream, RelativeSeekableReaderWriter) { in TEST() argument
197 TEST(Stream, SeekableReaderWriter) { in TEST() argument
232 TEST(Stream, ReadExact_Works) { in TEST() argument
[all …]
/aosp_15_r20/hardware/google/camera/common/hal/common/
Dhal_types.h118 struct Stream { struct
120 StreamType stream_type = StreamType::kOutput; argument
126 StreamRotation rotation = StreamRotation::kRotation0; argument
135 StreamUseCase use_case = ANDROID_SCALER_AVAILABLE_STREAM_USE_CASES_DEFAULT; argument
150 std::vector<Stream> streams; argument
/aosp_15_r20/frameworks/compile/slang/BitWriter_3_2/
DBitcodeWriter.cpp144 unsigned AbbrevToUse, BitstreamWriter &Stream) { in WriteStringRecord()
160 BitstreamWriter &Stream) { in WriteAttributeTable()
184 BitstreamWriter &Stream) { in WriteTypeTable()
396 BitstreamWriter &Stream) { in WriteModuleInfo()
572 BitstreamWriter &Stream, in WriteValueAsMetadata()
583 BitstreamWriter &Stream, in WriteMDTuple()
628 BitstreamWriter &Stream) { in WriteModuleMetadata()
722 BitstreamWriter &Stream) { in WriteFunctionLocalMetadata()
742 BitstreamWriter &Stream) { in WriteMetadataAttachment()
773 static void WriteModuleMetadataStore(const Module *M, BitstreamWriter &Stream) { in WriteModuleMetadataStore()
[all …]
/aosp_15_r20/frameworks/compile/slang/BitWriter_2_9_func/
DBitcodeWriter.cpp144 unsigned AbbrevToUse, BitstreamWriter &Stream) { in WriteStringRecord()
160 BitstreamWriter &Stream) { in WriteAttributeTable()
184 BitstreamWriter &Stream) { in WriteTypeTable()
383 BitstreamWriter &Stream) { in WriteModuleInfo()
542 BitstreamWriter &Stream, in WriteValueAsMetadata()
553 BitstreamWriter &Stream, in WriteMDTuple()
598 BitstreamWriter &Stream) { in WriteModuleMetadata()
692 BitstreamWriter &Stream) { in WriteFunctionLocalMetadata()
712 BitstreamWriter &Stream) { in WriteMetadataAttachment()
743 static void WriteModuleMetadataStore(const Module *M, BitstreamWriter &Stream) { in WriteModuleMetadataStore()
[all …]
/aosp_15_r20/external/crosvm/devices/src/virtio/video/encoder/
H A Dmod.rs86 struct Stream<T: EncoderSession> { struct
108 impl<T: EncoderSession> Stream<T> { argument
/aosp_15_r20/frameworks/compile/slang/BitWriter_2_9/
DBitcodeWriter.cpp121 unsigned AbbrevToUse, BitstreamWriter &Stream) { in WriteStringRecord()
137 BitstreamWriter &Stream) { in WriteAttributeTable()
160 BitstreamWriter &Stream) { in WriteTypeSymbolTable()
213 BitstreamWriter &Stream) { in WriteTypeTable()
385 BitstreamWriter &Stream) { in WriteModuleInfo()
544 BitstreamWriter &Stream, in WriteValueAsMetadata()
555 BitstreamWriter &Stream, in WriteMDTuple()
600 BitstreamWriter &Stream) { in WriteModuleMetadata()
694 BitstreamWriter &Stream) { in WriteFunctionLocalMetadata()
714 BitstreamWriter &Stream) { in WriteMetadataAttachment()
[all …]
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
Dsystem.h77 # define putc(C, Stream) putc_unlocked (C, Stream) argument
85 # define getc(Stream) getc_unlocked (Stream) argument
93 # define fputc(C, Stream) fputc_unlocked (C, Stream) argument
102 # define clearerr(Stream) clearerr_unlocked (Stream) argument
109 # define feof(Stream) feof_unlocked (Stream) argument
116 # define fileno(Stream) fileno_unlocked (Stream) argument
123 # define fflush(Stream) fflush_unlocked (Stream) argument
130 # define fgetc(Stream) fgetc_unlocked (Stream) argument
137 # define fgets(S, n, Stream) fgets_unlocked (S, n, Stream) argument
144 # define fputs(String, Stream) fputs_unlocked (String, Stream) argument
[all …]
/aosp_15_r20/external/pigweed/pw_grpc/public/pw_grpc/
H A Dconnection.h177 struct Stream { struct
178 StreamId id; argument
179 bool half_closed;
180 bool started_response;
181 int32_t send_window;
184 std::byte* assembly_buffer;
185 union {
217 pw::Result<std::reference_wrapper<Stream>> LookupStream(StreamId id); argument

12345678910>>...52