Home
last modified time | relevance | path

Searched refs:StatsInterceptor (Results 1 – 3 of 3) sorted by relevance

/webrtc/interceptor/src/stats/
H A Dmod.rs9 pub use self::interceptor::StatsInterceptor;
11 pub fn make_stats_interceptor(id: &str) -> Arc<StatsInterceptor> { in make_stats_interceptor() argument
12 Arc::new(StatsInterceptor::new(id.to_owned())) in make_stats_interceptor()
H A Dinterceptor.rs86 pub struct StatsInterceptor { struct
97 impl StatsInterceptor { argument
301 impl Interceptor for StatsInterceptor { implementation
854 use super::StatsInterceptor;
858 let icpr: Arc<_> = Arc::new(StatsInterceptor::new("Hello".to_owned())); in test_stats_interceptor_rtp()
934 let icpr: Arc<_> = Arc::new(StatsInterceptor::with_time_gen("Hello".to_owned(), || { in test_stats_interceptor_rtcp()
/webrtc/webrtc/src/peer_connection/
H A Dpeer_connection_internal.rs67 stats_interceptor: Arc<stats::StatsInterceptor>,
74 stats_interceptor: Arc<stats::StatsInterceptor>, in new() argument