Home
last modified time | relevance | path

Searched refs:on_enter (Results 1 – 12 of 12) sorted by relevance

/third_party/rust/crates/tracing/tracing-subscriber/src/filter/layer_filters/
Dcombinator.rs158 fn on_enter(&self, id: &Id, ctx: Context<'_, S>) { in on_enter() function
159 self.a.on_enter(id, ctx.clone()); in on_enter()
160 self.b.on_enter(id, ctx); in on_enter()
350 fn on_enter(&self, id: &Id, ctx: Context<'_, S>) { in on_enter() function
351 self.a.on_enter(id, ctx.clone()); in on_enter()
352 self.b.on_enter(id, ctx); in on_enter()
508 fn on_enter(&self, id: &Id, ctx: Context<'_, S>) { in on_enter() function
509 self.a.on_enter(id, ctx); in on_enter()
Dmod.rs729 fn on_enter(&self, id: &span::Id, cx: Context<'_, S>) { in on_enter() function
731 self.filter.on_enter(id, cx.clone()); in on_enter()
732 self.layer.on_enter(id, cx); in on_enter()
/third_party/rust/crates/tracing/tracing-subscriber/src/layer/
Dmod.rs912 fn on_enter(&self, _id: &span::Id, _ctx: Context<'_, S>) {} in on_enter() method
1458 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) {
1617 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) { in on_enter() function
1619 inner.on_enter(id, ctx); in on_enter()
1713 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) {
1714 self.deref().on_enter(id, ctx)
1830 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) {
1832 l.on_enter(id, ctx.clone());
Dlayered.rs158 self.layer.on_enter(span, self.ctx()); in enter()
317 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) { in on_enter() function
318 self.inner.on_enter(id, ctx.clone()); in on_enter()
319 self.layer.on_enter(id, ctx); in on_enter()
/third_party/rust/crates/tracing/tracing-subscriber/src/
Dreload.rs163 fn on_enter(&self, id: &span::Id, ctx: layer::Context<'_, S>) { in on_enter() function
164 try_lock!(self.inner.read()).on_enter(id, ctx) in on_enter()
237 fn on_enter(&self, id: &span::Id, ctx: layer::Context<'_, S>) { in on_enter() function
238 try_lock!(self.inner.read()).on_enter(id, ctx) in on_enter()
/third_party/rust/crates/tracing/tracing-subscriber/src/filter/env/
Dmod.rs561 pub fn on_enter<S>(&self, id: &span::Id, _: Context<'_, S>) { in on_enter() method
669 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) { in on_enter() method
670 self.on_enter(id, ctx); in on_enter()
715 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) {
716 self.on_enter(id, ctx);
/third_party/rust/crates/tracing/tracing-subscriber/src/registry/
Dmod.rs605 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) { in spanref_scope_iteration_order() function
640 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) { in spanref_scope_fromroot_iteration_order() function
/third_party/rust/crates/tracing/tracing-flame/src/
Dlib.rs390 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) { in on_enter() function
/third_party/rust/crates/tracing/tracing-subscriber/tests/
Dsupport.rs293 fn on_enter(&self, id: &Id, cx: Context<'_, S>) { in on_enter() function
/third_party/rust/crates/tracing/tracing-subscriber/src/fmt/
Dfmt_layer.rs827 fn on_enter(&self, id: &Id, ctx: Context<'_, S>) { in on_enter() function
/third_party/rust/crates/tracing/tracing-opentelemetry/src/
Dlayer.rs726 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) { in on_enter() function
/third_party/rust/crates/tracing/tracing-subscriber/
DCHANGELOG.md120 - **registry**: `Filter::on_new_span`, `Filter::on_enter`,