Home
last modified time | relevance | path

Searched refs:is_shutdown (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/
H A Dschedule_io.rs59 is_shutdown: bool, field
149 if !waiters.is_shutdown && ready_event.ready.is_empty() { in poll_readiness()
254 waiters.is_shutdown |= shutdown; in wake0()
348 if waiters.is_shutdown { in poll_init()
479 let is_shutdown = schedule_io.waiters.get_mut().unwrap().is_shutdown; in ut_schedule_io_default() localVariable
480 assert!(!is_shutdown); in ut_schedule_io_default()
522 assert!(schedule_io.waiters.get_mut().unwrap().is_shutdown); in ut_schedule_io_shutdown()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Ddispatcher.rs19 fn is_shutdown(&self) -> bool; in is_shutdown() method
43 fn is_shutdown(&self) -> bool { in is_shutdown() method
46 Self::Http1(h1) => h1.is_shutdown(), in is_shutdown()
49 Self::Http2(h2) => h2.is_shutdown(), in is_shutdown()
119 fn is_shutdown(&self) -> bool { in is_shutdown() method
380 fn is_shutdown(&self) -> bool { in is_shutdown() method
677 let res = conn.is_shutdown(); in ut_is_shutdown()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
H A Dpool.rs234 if dispatcher.is_shutdown() { in exist_h1_conn()
250 if !dispatcher.is_shutdown() { in exist_h2_conn()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/
H A Dpool.rs82 if dispatcher.is_shutdown() { in conn()