/third_party/rust/crates/tracing/tracing-subscriber/src/filter/layer_filters/ |
D | combinator.rs | 146 fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>) { in on_new_span() function 147 self.a.on_new_span(attrs, id, ctx.clone()); in on_new_span() 148 self.b.on_new_span(attrs, id, ctx) in on_new_span() 338 fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>) { in on_new_span() function 339 self.a.on_new_span(attrs, id, ctx.clone()); in on_new_span() 340 self.b.on_new_span(attrs, id, ctx) in on_new_span() 498 fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>) { in on_new_span() function 499 self.a.on_new_span(attrs, id, ctx); in on_new_span()
|
D | mod.rs | 679 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, cx: Context<'_, S>) { in on_new_span() function 682 self.filter.on_new_span(attrs, id, cx.clone()); in on_new_span() 683 self.layer.on_new_span(attrs, id, cx); in on_new_span()
|
/third_party/rust/crates/tracing/tracing-subscriber/src/layer/ |
D | mod.rs | 857 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { in on_new_span() method 1439 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { 1553 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { in on_new_span() function 1555 inner.on_new_span(attrs, id, ctx) in on_new_span() 1673 … fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { 1674 self.deref().on_new_span(attrs, id, ctx) 1792 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { 1794 l.on_new_span(attrs, id, ctx.clone());
|
D | layered.rs | 127 self.layer.on_new_span(span, &id, self.ctx()); in new_span() 282 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { in on_new_span() function 283 self.inner.on_new_span(attrs, id, ctx.clone()); in on_new_span() 284 self.layer.on_new_span(attrs, id, ctx); in on_new_span()
|
/third_party/rust/crates/tracing/tracing-subscriber/src/ |
D | reload.rs | 138 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: layer::Context<'_, S>) { in on_new_span() function 139 try_lock!(self.inner.read()).on_new_span(attrs, id, ctx) in on_new_span() 227 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: layer::Context<'_, S>) { in on_new_span() function 228 try_lock!(self.inner.read()).on_new_span(attrs, id, ctx) in on_new_span()
|
/third_party/rust/crates/tracing/tracing-subscriber/src/filter/env/ |
D | mod.rs | 548 pub fn on_new_span<S>(&self, attrs: &span::Attributes<'_>, id: &span::Id, _: Context<'_, S>) { in on_new_span() method 659 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { in on_new_span() method 660 self.on_new_span(attrs, id, ctx) in on_new_span() 705 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { 706 self.on_new_span(attrs, id, ctx)
|
/third_party/rust/crates/tracing/tracing-opentelemetry/benches/ |
D | trace.rs | 63 fn on_new_span( in on_new_span() function 88 fn on_new_span( in on_new_span() function
|
/third_party/rust/crates/tracing/tracing-error/src/ |
D | layer.rs | 43 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: layer::Context<'_, S>) { in on_new_span() function
|
/third_party/rust/crates/tracing/tracing-journald/src/ |
D | lib.rs | 212 fn on_new_span(&self, attrs: &Attributes, id: &Id, ctx: Context<'_, S>) { in on_new_span() function
|
/third_party/rust/crates/tracing/tracing-subscriber/tests/ |
D | support.rs | 269 fn on_new_span(&self, span: &Attributes<'_>, id: &Id, cx: Context<'_, S>) { in on_new_span() function
|
/third_party/rust/crates/tracing/tracing-subscriber/src/registry/ |
D | sharded.rs | 605 fn on_new_span(&self, _: &Attributes<'_>, id: &Id, ctx: Context<'_, S>) { in on_new_span() function
|
/third_party/rust/crates/tracing/tracing-subscriber/ |
D | CHANGELOG.md | 120 - **registry**: `Filter::on_new_span`, `Filter::on_enter`, 388 - Renamed `Layer::new_span` to `Layer::on_new_span` ([#1674]) 404 - **layer**: Renamed `Layer::new_span` to `Layer::on_new_span` ([#1674])
|
/third_party/rust/crates/tracing/tracing-subscriber/src/fmt/ |
D | fmt_layer.rs | 771 fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>) { in on_new_span() function
|
/third_party/rust/crates/tracing/tracing-opentelemetry/src/ |
D | layer.rs | 667 fn on_new_span(&self, attrs: &Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { in on_new_span() function
|