Home
last modified time | relevance | path

Searched refs:FlowError (Results 1 – 25 of 403) sorted by relevance

12345678910>>...17

/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/gstreamer-0.15.7/src/subclass/
H A Derror.rs51 pub enum FlowError { enum
58 impl From<FlowError> for FlowReturn {
59 fn from(err: FlowError) -> Self { in from()
64 impl<'a> From<&'a FlowError> for FlowReturn {
65 fn from(err: &FlowError) -> FlowReturn { in from()
68 FlowError::Eos => FlowReturn::Eos, in from()
75 impl Display for FlowError { implementation
78 FlowError::Flushing | FlowError::Eos => f.write_str(self.description()), in fmt()
87 impl Error for FlowError { implementation
91 FlowError::Eos => "Eos", in description()
[all …]
/dports/net-im/fractal/fractal-4.4.0/vendor/gstreamer/src/subclass/
H A Derror.rs51 pub enum FlowError { enum
58 impl From<FlowError> for FlowReturn {
59 fn from(err: FlowError) -> Self { in from()
64 impl<'a> From<&'a FlowError> for FlowReturn {
65 fn from(err: &FlowError) -> FlowReturn { in from()
68 FlowError::Eos => FlowReturn::Eos, in from()
75 impl Display for FlowError { implementation
78 FlowError::Flushing | FlowError::Eos => f.write_str(self.description()), in fmt()
87 impl Error for FlowError { implementation
91 FlowError::Eos => "Eos", in description()
[all …]
/dports/multimedia/termplay/termplay-2.0.6/cargo-crates/gstreamer-0.15.0/src/subclass/
H A Derror.rs51 pub enum FlowError { enum
58 impl From<FlowError> for FlowReturn {
59 fn from(err: FlowError) -> Self { in from()
64 impl<'a> From<&'a FlowError> for FlowReturn {
65 fn from(err: &FlowError) -> FlowReturn { in from()
68 FlowError::Eos => FlowReturn::Eos, in from()
75 impl Display for FlowError { implementation
78 FlowError::Flushing | FlowError::Eos => f.write_str(self.description()), in fmt()
87 impl Error for FlowError { implementation
91 FlowError::Eos => "Eos", in description()
[all …]
/dports/multimedia/termplay/termplay-2.0.6/cargo-crates/gstreamer-0.15.0/src/
H A Denums.rs109 _ => Err(FlowError::Error), in into_result()
120 pub fn from_error(v: FlowError) -> Self { in from_error()
124 FlowError::Eos => FlowReturn::Eos, in from_error()
160 pub enum FlowError { enum
172 impl fmt::Display for FlowError { implementation
178 impl From<FlowError> for FlowReturn {
179 fn from(value: FlowError) -> Self { in from()
184 impl Error for FlowError { implementation
189 FlowError::Eos => "Pad is EOS", in description()
191 FlowError::Error => { in description()
[all …]
H A Dproxy_pad.rs12 use FlowError;
29 ) -> Result<FlowSuccess, FlowError>; in proxy_pad_chain_default() argument
35 ) -> Result<FlowSuccess, FlowError>; in proxy_pad_chain_list_default() argument
42 ) -> Result<Buffer, FlowError>; in proxy_pad_getrange_default() argument
55 ) -> Result<FlowSuccess, FlowError> { in proxy_pad_chain_default() argument
71 ) -> Result<FlowSuccess, FlowError> { in proxy_pad_chain_list_default() argument
88 ) -> Result<Buffer, FlowError> { in proxy_pad_getrange_default() argument
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/gstreamer-0.17.3/src/subclass/
H A Derror.rs43 pub enum FlowError { enum
54 impl From<FlowError> for FlowReturn {
55 fn from(err: FlowError) -> Self { in from()
60 impl<'a> From<&'a FlowError> for FlowReturn {
61 fn from(err: &FlowError) -> FlowReturn { in from()
63 FlowError::Flushing => FlowReturn::Flushing, in from()
64 FlowError::Eos => FlowReturn::Eos, in from()
65 FlowError::NotNegotiated(..) => FlowReturn::NotNegotiated, in from()
66 FlowError::Error(..) => FlowReturn::Error, in from()
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/gstreamer-0.17.4/src/subclass/
H A Derror.rs43 pub enum FlowError { enum
54 impl From<FlowError> for FlowReturn {
55 fn from(err: FlowError) -> Self { in from()
60 impl<'a> From<&'a FlowError> for FlowReturn {
61 fn from(err: &FlowError) -> FlowReturn { in from()
63 FlowError::Flushing => FlowReturn::Flushing, in from()
64 FlowError::Eos => FlowReturn::Eos, in from()
65 FlowError::NotNegotiated(..) => FlowReturn::NotNegotiated, in from()
66 FlowError::Error(..) => FlowReturn::Error, in from()
/dports/multimedia/neolink/neolink-cf54129/cargo-crates/gstreamer-0.17.1/src/subclass/
H A Derror.rs43 pub enum FlowError { enum
54 impl From<FlowError> for FlowReturn {
55 fn from(err: FlowError) -> Self { in from()
60 impl<'a> From<&'a FlowError> for FlowReturn {
61 fn from(err: &FlowError) -> FlowReturn { in from()
63 FlowError::Flushing => FlowReturn::Flushing, in from()
64 FlowError::Eos => FlowReturn::Eos, in from()
65 FlowError::NotNegotiated(..) => FlowReturn::NotNegotiated, in from()
66 FlowError::Error(..) => FlowReturn::Error, in from()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/gstreamer-0.15.7/src/
H A Denums.rs111 _ => Err(FlowError::Error), in into_result()
122 pub fn from_error(v: FlowError) -> Self { in from_error()
126 FlowError::Eos => FlowReturn::Eos, in from_error()
162 pub enum FlowError { enum
174 impl fmt::Display for FlowError { implementation
180 impl From<FlowError> for FlowReturn {
181 fn from(value: FlowError) -> Self { in from()
186 impl Error for FlowError { implementation
191 FlowError::Eos => "Pad is EOS", in description()
193 FlowError::Error => { in description()
[all …]
H A Dproxy_pad.rs12 use FlowError;
29 ) -> Result<FlowSuccess, FlowError>; in proxy_pad_chain_default() argument
35 ) -> Result<FlowSuccess, FlowError>; in proxy_pad_chain_list_default() argument
42 ) -> Result<Buffer, FlowError>; in proxy_pad_getrange_default() argument
55 ) -> Result<FlowSuccess, FlowError> { in proxy_pad_chain_default() argument
71 ) -> Result<FlowSuccess, FlowError> { in proxy_pad_chain_list_default() argument
88 ) -> Result<Buffer, FlowError> { in proxy_pad_getrange_default() argument
/dports/net-im/fractal/fractal-4.4.0/vendor/gstreamer/src/
H A Denums.rs111 _ => Err(FlowError::Error), in into_result()
122 pub fn from_error(v: FlowError) -> Self { in from_error()
126 FlowError::Eos => FlowReturn::Eos, in from_error()
162 pub enum FlowError { enum
174 impl fmt::Display for FlowError { implementation
180 impl From<FlowError> for FlowReturn {
181 fn from(value: FlowError) -> Self { in from()
186 impl Error for FlowError { implementation
191 FlowError::Eos => "Pad is EOS", in description()
193 FlowError::Error => { in description()
[all …]
H A Dproxy_pad.rs12 use FlowError;
29 ) -> Result<FlowSuccess, FlowError>; in proxy_pad_chain_default() argument
35 ) -> Result<FlowSuccess, FlowError>; in proxy_pad_chain_list_default() argument
42 ) -> Result<Buffer, FlowError>; in proxy_pad_getrange_default() argument
55 ) -> Result<FlowSuccess, FlowError> { in proxy_pad_chain_default() argument
71 ) -> Result<FlowSuccess, FlowError> { in proxy_pad_chain_list_default() argument
88 ) -> Result<Buffer, FlowError> { in proxy_pad_getrange_default() argument
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/gstreamer-audio-0.17.2/src/
H A Daudio_encoder.rs15 ) -> Result<gst::FlowSuccess, gst::FlowError>; in finish_frame() argument
18 fn negotiate(&self) -> Result<(), gst::FlowError>; in negotiate() argument
21 fn set_output_format(&self, caps: &gst::Caps) -> Result<(), gst::FlowError>; in set_output_format() argument
33 ) -> Result<gst::FlowSuccess, gst::FlowError> { in finish_frame() argument
43 fn negotiate(&self) -> Result<(), gst::FlowError> { in negotiate() argument
51 Err(gst::FlowError::NotNegotiated) in negotiate()
56 fn set_output_format(&self, caps: &gst::Caps) -> Result<(), gst::FlowError> { in set_output_format() argument
65 Err(gst::FlowError::NotNegotiated) in set_output_format()
H A Daudio_decoder.rs29 ) -> Result<gst::FlowSuccess, gst::FlowError>; in finish_frame() argument
36 ) -> Result<gst::FlowSuccess, gst::FlowError>; in finish_subframe() argument
38 fn negotiate(&self) -> Result<(), gst::FlowError>; in negotiate() argument
59 ) -> Result<gst::FlowSuccess, gst::FlowError>; in error() argument
67 ) -> Result<gst::FlowSuccess, gst::FlowError> { in finish_frame() argument
83 ) -> Result<gst::FlowSuccess, gst::FlowError> { in finish_subframe() argument
93 fn negotiate(&self) -> Result<(), gst::FlowError> { in negotiate() argument
101 Err(gst::FlowError::NotNegotiated) in negotiate()
118 Err(gst::FlowError::NotNegotiated) in set_output_caps()
133 Err(gst::FlowError::NotNegotiated) in set_output_format()
[all …]
/dports/net-im/fractal/fractal-4.4.0/vendor/gstreamer-video/src/
H A Dvideo_decoder.rs44 ) -> Result<gst::FlowSuccess, gst::FlowError>; in allocate_output_frame() argument
67 ) -> Result<VideoCodecState<InNegotiation>, gst::FlowError>; in set_output_state() argument
76 ) -> Result<VideoCodecState<InNegotiation>, gst::FlowError>; in set_interlaced_output_state() argument
81 ) -> Result<(), gst::FlowError>; in negotiate() argument
93 ) -> Result<gst::FlowSuccess, gst::FlowError>; in error() argument
102 ) -> Result<gst::FlowSuccess, gst::FlowError> { in allocate_output_frame() argument
270 Err(gst::FlowError::NotNegotiated) in set_output_state()
301 Err(gst::FlowError::NotNegotiated) in set_interlaced_output_state()
310 ) -> Result<(), gst::FlowError> { in negotiate() argument
323 Err(gst::FlowError::NotNegotiated) in negotiate()
[all …]
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/gstreamer-base-0.17.2/src/subclass/
H A Dpush_src.rs17 ) -> Result<gst::FlowSuccess, gst::FlowError> { in fill() argument
21 fn alloc(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError> { in alloc() argument
25 fn create(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError> { in create() argument
35 ) -> Result<gst::FlowSuccess, gst::FlowError>; in parent_fill() argument
37 fn parent_alloc(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError>; in parent_alloc() argument
39 fn parent_create(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError>; in parent_create() argument
47 ) -> Result<gst::FlowSuccess, gst::FlowError> { in parent_fill() argument
59 .unwrap_or(Err(gst::FlowError::NotSupported)) in parent_fill()
63 fn parent_alloc(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError> { in parent_alloc() argument
82 .unwrap_or(Err(gst::FlowError::NotSupported)) in parent_alloc()
[all …]
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/gstreamer-base-0.17.2/src/subclass/
H A Dpush_src.rs17 ) -> Result<gst::FlowSuccess, gst::FlowError> { in fill() argument
21 fn alloc(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError> { in alloc() argument
25 fn create(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError> { in create() argument
35 ) -> Result<gst::FlowSuccess, gst::FlowError>; in parent_fill() argument
37 fn parent_alloc(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError>; in parent_alloc() argument
39 fn parent_create(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError>; in parent_create() argument
47 ) -> Result<gst::FlowSuccess, gst::FlowError> { in parent_fill() argument
59 .unwrap_or(Err(gst::FlowError::NotSupported)) in parent_fill()
63 fn parent_alloc(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError> { in parent_alloc() argument
82 .unwrap_or(Err(gst::FlowError::NotSupported)) in parent_alloc()
[all …]
/dports/multimedia/neolink/neolink-cf54129/cargo-crates/gstreamer-base-0.17.0/src/subclass/
H A Dpush_src.rs17 ) -> Result<gst::FlowSuccess, gst::FlowError> { in fill() argument
21 fn alloc(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError> { in alloc() argument
25 fn create(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError> { in create() argument
35 ) -> Result<gst::FlowSuccess, gst::FlowError>; in parent_fill() argument
37 fn parent_alloc(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError>; in parent_alloc() argument
39 fn parent_create(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError>; in parent_create() argument
47 ) -> Result<gst::FlowSuccess, gst::FlowError> { in parent_fill() argument
59 .unwrap_or(Err(gst::FlowError::NotSupported)) in parent_fill()
63 fn parent_alloc(&self, element: &Self::Type) -> Result<gst::Buffer, gst::FlowError> { in parent_alloc() argument
82 .unwrap_or(Err(gst::FlowError::NotSupported)) in parent_alloc()
[all …]
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libslic3r/
H A DFlow.hpp31 class FlowError : public Slic3r::InvalidArgument class
34 FlowError(const std::string& what_arg) : Slic3r::InvalidArgument(what_arg) {} in FlowError() function in Slic3r::FlowError
35 FlowError(const char* what_arg) : Slic3r::InvalidArgument(what_arg) {} in FlowError() function in Slic3r::FlowError
38 class FlowErrorNegativeSpacing : public FlowError
44 class FlowErrorNegativeFlow : public FlowError
50 class FlowErrorMissingVariable : public FlowError
53 FlowErrorMissingVariable(const std::string& what_arg) : FlowError(what_arg) {} in FlowErrorMissingVariable()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/gstreamer-video-0.17.2/src/
H A Dvideo_encoder.rs20 ) -> Result<gst::FlowSuccess, gst::FlowError>; in allocate_output_frame() argument
40 ) -> Result<gst::FlowSuccess, gst::FlowError>; in finish_frame() argument
45 fn finish_subframe(&self, frame: &VideoCodecFrame) -> Result<gst::FlowSuccess, gst::FlowError>; in finish_subframe() argument
65 ) -> Result<VideoCodecState<InNegotiation>, gst::FlowError>; in set_output_state() argument
71 ) -> Result<(), gst::FlowError>; in negotiate() argument
81 ) -> Result<gst::FlowSuccess, gst::FlowError> { in allocate_output_frame() argument
107 ) -> Result<gst::FlowSuccess, gst::FlowError> { in finish_frame() argument
216 ) -> Result<VideoCodecState<InNegotiation>, gst::FlowError> { in set_output_state() argument
230 Err(gst::FlowError::NotNegotiated) in set_output_state()
239 ) -> Result<(), gst::FlowError> { in negotiate() argument
[all …]
H A Dvideo_decoder.rs37 ) -> Result<gst::FlowSuccess, gst::FlowError>; in allocate_output_frame() argument
69 ) -> Result<VideoCodecState<InNegotiation>, gst::FlowError>; in set_output_state() argument
79 ) -> Result<VideoCodecState<InNegotiation>, gst::FlowError>; in set_interlaced_output_state() argument
84 ) -> Result<(), gst::FlowError>; in negotiate() argument
96 ) -> Result<gst::FlowSuccess, gst::FlowError>; in error() argument
106 ) -> Result<gst::FlowSuccess, gst::FlowError> { in allocate_output_frame() argument
272 Err(gst::FlowError::NotNegotiated) in set_output_state()
305 Err(gst::FlowError::NotNegotiated) in set_interlaced_output_state()
315 ) -> Result<(), gst::FlowError> { in negotiate() argument
328 Err(gst::FlowError::NotNegotiated) in negotiate()
[all …]
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/gstreamer-video-0.17.2/src/
H A Dvideo_encoder.rs20 ) -> Result<gst::FlowSuccess, gst::FlowError>; in allocate_output_frame() argument
40 ) -> Result<gst::FlowSuccess, gst::FlowError>; in finish_frame() argument
45 fn finish_subframe(&self, frame: &VideoCodecFrame) -> Result<gst::FlowSuccess, gst::FlowError>; in finish_subframe() argument
65 ) -> Result<VideoCodecState<InNegotiation>, gst::FlowError>; in set_output_state() argument
71 ) -> Result<(), gst::FlowError>; in negotiate() argument
81 ) -> Result<gst::FlowSuccess, gst::FlowError> { in allocate_output_frame() argument
107 ) -> Result<gst::FlowSuccess, gst::FlowError> { in finish_frame() argument
216 ) -> Result<VideoCodecState<InNegotiation>, gst::FlowError> { in set_output_state() argument
230 Err(gst::FlowError::NotNegotiated) in set_output_state()
239 ) -> Result<(), gst::FlowError> { in negotiate() argument
[all …]
H A Dvideo_decoder.rs37 ) -> Result<gst::FlowSuccess, gst::FlowError>; in allocate_output_frame() argument
69 ) -> Result<VideoCodecState<InNegotiation>, gst::FlowError>; in set_output_state() argument
79 ) -> Result<VideoCodecState<InNegotiation>, gst::FlowError>; in set_interlaced_output_state() argument
84 ) -> Result<(), gst::FlowError>; in negotiate() argument
96 ) -> Result<gst::FlowSuccess, gst::FlowError>; in error() argument
106 ) -> Result<gst::FlowSuccess, gst::FlowError> { in allocate_output_frame() argument
272 Err(gst::FlowError::NotNegotiated) in set_output_state()
305 Err(gst::FlowError::NotNegotiated) in set_interlaced_output_state()
315 ) -> Result<(), gst::FlowError> { in negotiate() argument
328 Err(gst::FlowError::NotNegotiated) in negotiate()
[all …]
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/gstreamer-0.17.3/src/
H A Dproxy_pad.rs5 use crate::FlowError;
21 ) -> Result<FlowSuccess, FlowError>; in chain_default() argument
28 ) -> Result<FlowSuccess, FlowError>; in chain_list_default() argument
36 ) -> Result<Buffer, FlowError>; in getrange_default() argument
50 ) -> Result<FlowSuccess, FlowError> { in chain_default() argument
65 ) -> Result<FlowSuccess, FlowError> { in chain_list_default() argument
81 ) -> Result<Buffer, FlowError> { in getrange_default() argument
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/gstreamer-0.17.4/src/
H A Dproxy_pad.rs5 use crate::FlowError;
21 ) -> Result<FlowSuccess, FlowError>; in chain_default() argument
28 ) -> Result<FlowSuccess, FlowError>; in chain_list_default() argument
36 ) -> Result<Buffer, FlowError>; in getrange_default() argument
50 ) -> Result<FlowSuccess, FlowError> { in chain_default() argument
65 ) -> Result<FlowSuccess, FlowError> { in chain_list_default() argument
81 ) -> Result<Buffer, FlowError> { in getrange_default() argument

12345678910>>...17