/commonlibrary/rust/ylong_http/ylong_http_client/tests/ |
H A D | sdv_async_http_on_tcp.rs | 40 Path: "/data", in sdv_async_client_send_request() 58 Path: "/data", in sdv_async_client_send_request() 75 Path: "/data", in sdv_async_client_send_request() 93 Path: "/data", in sdv_async_client_send_request() 111 Path: "/data", in sdv_async_client_send_request() 139 Path: "/data", in sdv_client_send_request_repeatedly() 152 Path: "/data", in sdv_client_send_request_repeatedly() 181 Path: "/data", in sdv_client_making_multiple_connections()
|
H A D | sdv_sync_http_on_tcp.rs | 39 Path: "/data", in sdv_synchronized_client_send_request_to_tcp() 67 Path: "/data", in sdv_synchronized_client_send_request_repeatedly_to_tcp() 79 Path: "/data", in sdv_synchronized_client_send_request_repeatedly_to_tcp() 107 Path: "/data", in sdv_client_making_multiple_connections()
|
H A D | sdv_async_http_client_error.rs | 71 Path: "", in sdv_err_start_connect_timeout() 107 Path: "/data", in sdv_err_req_timeout() 130 Path: "/data", in sdv_err_req_timeout() 184 Path: "/data", in sdv_err_redirect_wrong_location() 207 Path: "/data", in sdv_err_redirect_wrong_location() 249 Path: "/data", in sdv_err_response_with_wrong_body_length() 271 Path: "/data", in sdv_err_response_with_wrong_body_length()
|
H A D | sdv_async_custom_dns_resolver.rs | 45 Path: "/data", in sdv_client_custom_dns_resolver() 70 Path: "/data", in sdv_client_custom_dns_resolver()
|
H A D | sdv_async_http_proxy.rs | 45 Path: "/data", in sdv_async_client_send_request() 75 Path: "/data", in sdv_async_client_send_request()
|
H A D | sdv_async_http_body_io.rs | 45 Path: "/data", in sdv_body_chunk_and_trailer() 71 Path: "/data", in sdv_body_chunk_and_trailer()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/fs/ |
H A D | async_dir.rs | 20 use std::path::{Path, PathBuf}; 59 pub async fn create_dir<P: AsRef<Path>>(path: P) -> io::Result<()> { 88 pub async fn create_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> { 118 pub async fn remove_dir<P: AsRef<Path>>(path: P) -> io::Result<()> { 144 pub async fn remove_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> { 171 pub async fn read_dir<P: AsRef<Path>>(path: P) -> io::Result<ReadDir> { 191 /// * Path points to a directory. 206 pub async fn remove_file<P: AsRef<Path>>(path: P) -> io::Result<()> { 237 pub async fn rename<P: AsRef<Path>, Q: AsRef<Path>>(fro [all...] |
H A D | open_options.rs | 16 use std::path::Path; 295 pub async fn open<P: AsRef<Path>>(&self, path: P) -> io::Result<File> {
|
/commonlibrary/rust/ylong_http/ylong_http_client/tests/tcp_server/ |
H A D | async_utils.rs | 22 Path: $path: expr, 53 Path: $path, 79 Path: $path, 112 Path: $path: expr, 139 Path: $path, 169 Path: $path: expr, 190 Path: $path,
|
H A D | sync_utils.rs | 21 Path: $path: expr, 50 Path: $path, 74 Path: $path, 106 Path: $path: expr, 132 Path: $path, 161 Path: $path: expr, 181 Path: $path,
|
H A D | mod.rs | 44 Path: $path: expr, 157 Path: $path: expr, 259 Path: $path: expr, 284 Path: $path: expr,
|
/commonlibrary/ets_utils/js_concurrent_module/utils/locks/ |
H A D | graph.h | 54 struct Path { struct 117 static std::string CycleAsString(Path cycle, std::string prompt = "L: ", std::string terminator = "|", in CycleAsString() 139 Path FindFirstCycle() in FindFirstCycle() 143 return Path {}; in FindFirstCycle() 150 Path cycle = RunDfsFromVertex(seedIdx); in FindFirstCycle() 155 return Path {}; in FindFirstCycle() 186 Path DfsBuildCycleInfo(DfsStack &dfsStack, DfsState state) in DfsBuildCycleInfo() 188 Path result; in DfsBuildCycleInfo() 245 Path RunDfsFromVertex(VIdx seedVertexIdx) 267 return Path {}; [all...] |
H A D | deadlock_helpers.h | 26 using DeadlockInfo = LockGraph::Path;
|
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/unix/uds/ |
H A D | datagram.rs | 16 use std::path::Path; 38 pub fn bind<P: AsRef<Path>>(path: P) -> io::Result<UnixDatagram> { in bind() 82 pub fn connect<P: AsRef<Path>>(&self, path: P) -> io::Result<()> { in connect() 203 pub fn send_to<P: AsRef<Path>>(&self, buf: &[u8], path: P) -> io::Result<usize> { in send_to()
|
H A D | socket.rs | 17 use std::path::Path; 26 pub(crate) fn bind(path: &Path) -> io::Result<net::UnixListener> { 40 pub(crate) fn connect(path: &Path) -> io::Result<net::UnixStream> { 58 pub(crate) fn data_gram_bind(path: &Path) -> io::Result<net::UnixDatagram> {
|
H A D | socket_addr.rs | 17 use std::path::Path; 26 pub(crate) fn socket_addr_trans_un(path: &Path) -> Result<(libc::sockaddr_un, libc::socklen_t)> { 98 <std::ffi::OsStr as std::convert::AsRef<Path>>::as_ref(OsStr::from_bytes(
|
/commonlibrary/rust/ylong_http/ylong_http/src/h2/hpack/ |
H A D | table.rs | 245 4..=5 => Some(Header::Path), in header_name() 304 4 => Some((Header::Path, String::from("/"))), in header() 305 5 => Some((Header::Path, String::from("/index.html"))), in header() 331 (Header::Path, "/") => Some(TableIndex::Header(4)), in index() 332 (Header::Path, "/index.html") => Some(TableIndex::Header(5)), in index() 333 (Header::Path, _) => Some(TableIndex::HeaderName(4)), in index() 409 Path, 423 Header::Path => 5, 436 Header::Path => String::from(":path"),
|
H A D | encoder.rs | 133 Header::Path, in ut_hpack_encoder() 149 Header::Path, in ut_hpack_encoder() 167 Header::Path, in ut_hpack_encoder()
|
/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/ |
H A D | mimetype.rs | 15 use std::path::Path; 89 /// use std::path::Path; 93 /// let path = Path::new("./foo/bar.pdf"); 98 pub fn from_path(path: &'a Path) -> Result<Self, HttpError> { in from_path() 791 use std::path::Path; in ut_mime_type_from_path() 796 MimeType::from_path(Path::new("./foo/bar.evy")), in ut_mime_type_from_path() 800 MimeType::from_path(Path::new("foo.*")), in ut_mime_type_from_path() 804 MimeType::from_path(Path::new("")), in ut_mime_type_from_path() 808 MimeType::from_path(Path::new(".txt")), in ut_mime_type_from_path() 812 MimeType::from_path(Path in ut_mime_type_from_path() [all...] |
/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/format/ |
H A D | encoder.rs | 823 Path, 839 /// Gets headers in the order of `Method`, `Status`, `Scheme`, `Path`, 854 None => self.next_type = PartsIterDirection::Path, in next() 856 PartsIterDirection::Path => match self.pseudo.take_path() { in next() 857 Some(value) => return Some((NameField::Path, value)), in next()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/unix/ |
H A D | datagram.rs | 18 use std::path::Path; 45 pub fn bind<P: AsRef<Path>>(path: P) -> Result<UnixDatagram> { in bind() 307 pub fn connect<P: AsRef<Path>>(&self, path: P) -> Result<()> { in connect() 347 pub async fn send_to<P: AsRef<Path>>(&self, buf: &[u8], path: P) -> Result<usize> {
|
H A D | listener.rs | 18 use std::path::Path; 44 pub fn bind<P: AsRef<Path>>(path: P) -> Result<UnixListener> { in bind()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ssl/ |
H A D | ctx.rs | 16 use std::path::Path; 172 P: AsRef<Path>, 205 P: AsRef<Path>, 222 P: AsRef<Path>, 232 P: AsRef<Path>,
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/ |
H A D | command.rs | 16 use std::path::Path; 204 pub fn current_dir<P: AsRef<Path>>(&mut self, dir: P) -> &mut PtyCommand { in current_dir() 386 /// use std::path::Path; in get_args() 393 /// assert_eq!(cmd.get_current_dir(), Some(Path::new("/bin"))) in get_args() 396 pub fn get_current_dir(&self) -> Option<&Path> { in get_args() 516 use std::path::Path; 566 assert_eq!(command.get_current_dir(), Some(Path::new("/bin"))); in ut_pty_process_basic_test()
|
/commonlibrary/rust/ylong_http/ylong_http/src/h3/ |
H A D | parts.rs | 54 NameField::Path => self.pseudo.set_path(Some(value)), in update() 94 part.update(NameField::Path, "/test".to_string()); in ut_h3_part_update()
|