Searched refs:try_close (Results 1 – 10 of 10) sorted by relevance
/third_party/rust/crates/tracing/tracing-core/src/ |
D | subscriber.rs | 445 fn try_close(&self, id: span::Id) -> bool { in try_close() method 762 fn try_close(&self, id: span::Id) -> bool { in try_close() function 763 self.as_ref().try_close(id) in try_close() 769 self.as_ref().try_close(id); in drop_span() 847 fn try_close(&self, id: span::Id) -> bool { in try_close() function 848 self.as_ref().try_close(id) in try_close() 854 self.as_ref().try_close(id); in drop_span()
|
D | dispatcher.rs | 675 pub fn try_close(&self, id: span::Id) -> bool { in try_close() method 676 self.subscriber.try_close(id) in try_close()
|
/third_party/rust/crates/tracing/tracing-subscriber/src/layer/ |
D | layered.rs | 176 self.try_close(id); in drop_span() 179 fn try_close(&self, id: span::Id) -> bool { in try_close() function 186 if self.inner.try_close(id.clone()) { in try_close()
|
/third_party/rust/crates/tracing/tracing-subscriber/src/registry/ |
D | sharded.rs | 303 dispatcher::get_default(|dispatch| dispatch.try_close(id.clone())); in exit() 346 fn try_close(&self, id: span::Id) -> bool { in try_close() method 515 let _ = subscriber.try_close(parent); in clear()
|
/third_party/rust/crates/tracing/tracing/test-log-support/tests/ |
D | log_with_trace.rs | 20 fn try_close(&self, _: tracing::span::Id) -> bool { in try_close() method
|
/third_party/rust/crates/tracing/examples/examples/sloggish/ |
D | sloggish_subscriber.rs | 275 fn try_close(&self, _id: tracing::Id) -> bool { in try_close() method
|
/third_party/rust/crates/tracing/tracing-subscriber/src/fmt/ |
D | mod.rs | 433 fn try_close(&self, id: span::Id) -> bool { in try_close() function 434 self.inner.try_close(id) in try_close()
|
/third_party/rust/crates/tracing/tracing-core/ |
D | CHANGELOG.md | 472 - `Subscriber::drop_span` in favor of new `Subscriber::try_close` (#168) 478 - `Subscriber::try_close` method (#153)
|
/third_party/rust/crates/tracing/tracing-log/src/ |
D | trace_logger.rs | 401 fn try_close(&self, id: Id) -> bool { in try_close() method
|
/third_party/rust/crates/tracing/tracing/src/ |
D | span.rs | 1463 subscriber.try_close(id.clone()); in drop()
|