Home
last modified time | relevance | path

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

/external/liburing/test/
Dopen-close.c38 static inline int try_close(struct io_uring *ring, int fd, int slot) in try_close() function
65 ret = try_close(&ring, 0, 0); in test_close_fixed()
74 ret = try_close(&ring, 1, 0); in test_close_fixed()
86 ret = try_close(&ring, 0, 2); in test_close_fixed()
92 ret = try_close(&ring, 0, 0); in test_close_fixed()
107 ret = try_close(&ring, 0, 1); in test_close_fixed()
113 ret = try_close(&ring, 0, 0); in test_close_fixed()
Dopen-direct-pick.c42 static inline int try_close(struct io_uring *ring, int slot) in try_close() function
113 ret = try_close(ring, slot); in test_openat()
/external/rust/crates/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()
/external/rust/crates/tracing-core/
DCHANGELOG.md472 - `Subscriber::drop_span` in favor of new `Subscriber::try_close` (#168)
478 - `Subscriber::try_close` method (#153)
/external/rust/crates/tracing/src/
Dspan.rs1463 subscriber.try_close(id.clone()); in drop()