Home
last modified time | relevance | path

Searched refs:try_close (Results 1 – 10 of 10) sorted by relevance

/third_party/rust/crates/tracing/tracing-core/src/
Dsubscriber.rs445 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()
Ddispatcher.rs675 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/
Dlayered.rs176 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/
Dsharded.rs303 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/
Dlog_with_trace.rs20 fn try_close(&self, _: tracing::span::Id) -> bool { in try_close() method
/third_party/rust/crates/tracing/examples/examples/sloggish/
Dsloggish_subscriber.rs275 fn try_close(&self, _id: tracing::Id) -> bool { in try_close() method
/third_party/rust/crates/tracing/tracing-subscriber/src/fmt/
Dmod.rs433 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/
DCHANGELOG.md472 - `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/
Dtrace_logger.rs401 fn try_close(&self, id: Id) -> bool { in try_close() method
/third_party/rust/crates/tracing/tracing/src/
Dspan.rs1463 subscriber.try_close(id.clone()); in drop()