Home
last modified time | relevance | path

Searched refs:encode_body (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/conn/
H A Dhttp1.rs40 let mut encode_body = Some(request.body_mut()); in request() localVariable
42 while encode_part.is_some() || encode_body.is_some() { in request()
56 if let Some(body) = encode_body.as_mut() { in request()
62 encode_body = None; in request()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/conn/
H A Dhttp1.rs121 encode_body(conn, body, buf).await?; in encode_various_body()
125 encode_body(conn, body, buf).await?; in encode_various_body()
129 encode_body(conn, body, buf).await?; in encode_various_body()
223 async fn encode_body<S, T>( in encode_body() function