Home
last modified time | relevance | path

Searched refs:is_enabled_for (Results 1 – 4 of 4) sorted by relevance

/third_party/rust/crates/tracing/tracing-subscriber/src/registry/
Dmod.rs195 fn is_enabled_for(&self, filter: FilterId) -> bool { in is_enabled_for() method
391 if !curr.is_enabled_for(self.filter) { in next()
442 if data.is_enabled_for(self.filter) { in parent()
562 if self.is_enabled_for(filter) { in try_with_filter()
571 pub(crate) fn is_enabled_for(&self, filter: FilterId) -> bool { in is_enabled_for() function
572 self.data.is_enabled_for(filter) in is_enabled_for()
Dsharded.rs441 fn is_enabled_for(&self, filter: FilterId) -> bool { in is_enabled_for() method
/third_party/rust/crates/tracing/tracing-subscriber/src/layer/
Dcontext.rs384 pub(crate) fn is_enabled_for(&self, span: &span::Id, filter: FilterId) -> bool in is_enabled_for() function
408 Some(self.span(span)?.is_enabled_for(filter)) in is_enabled_inner()
/third_party/rust/crates/tracing/tracing-subscriber/src/filter/layer_filters/
Dmod.rs701 if cx.is_enabled_for(span, self.id()) && cx.is_enabled_for(follows, self.id()) { in on_follows_from()