Home
last modified time | relevance | path

Searched defs:Response (Results 1 – 25 of 648) sorted by relevance

12345678910>>...26

/aosp_15_r20/prebuilts/go/linux-x86/src/net/http/
Dresponse.go35 type Response struct { struct
36 Status string // e.g. "200 OK"
37 StatusCode int // e.g. 200
38 Proto string // e.g. "HTTP/1.0"
39 ProtoMajor int // e.g. 1
40 ProtoMinor int // e.g. 0
51 Header Header
72 Body io.ReadCloser
78 ContentLength int64
82 TransferEncoding []string
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/axum-core/src/response/
Dinto_response.rs128 fn into_response(self) -> Response; in into_response()
132 fn into_response(self) -> Response { in into_response()
140 fn into_response(self) -> Response { in into_response()
146 fn into_response(self) -> Response { in into_response()
156 fn into_response(self) -> Response { in into_response()
164 impl<B> IntoResponse for Response<B> implementation
169 fn into_response(self) -> Response { in into_response()
175 fn into_response(self) -> Response { in into_response()
181 fn into_response(self) -> Response { in into_response()
187 fn into_response(self) -> Response { in into_response()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/web/
Dapi.go100 type Response struct { struct
101 URL string // redacted
102 Status string
103 StatusCode int
104 Header map[string][]string
105 Body io.ReadCloser // Either the original body or &errorDetail.
107 fileErr error
108 errorDetail errorDetailBuffer
114 func (r *Response) Err() error {
130 func (r *Response) formatErrorDetail() string {
/aosp_15_r20/external/rust/android-crates-io/crates/maybe-async/examples/
Dservice_client.rs6 type Response = String; typedef
16 async fn request(method: Method, url: Url, data: String) -> Response; in request()
18 async fn post(url: Url, data: String) -> Response { in post()
22 async fn delete(url: Url, data: String) -> Response { in delete()
35 fn request(method: Method, url: Url, data: String) -> Response { in request()
45 async fn request(method: Method, url: Url, data: String) -> Response { in request()
56 async fn create_bucket(name: String) -> Response { in create_bucket()
62 async fn delete_bucket(name: String) -> Response { in delete_bucket()
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/server/
Dservice.rs12 type Response; typedef
25 type Response = M2; typedef
39 type Response; typedef
56 type Response = M2; typedef
71 type Response; typedef
84 type Response = M2; typedef
98 type Response; typedef
115 type Response = M2; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/http/src/
Dresponse.rs179 pub struct Response<T> { struct
184 /// Component parts of an HTTP `Response` argument
213 impl Response<()> { impl
235 impl<T> Response<T> { implementation
484 impl<T: Default> Default for Response<T> { implementation
491 impl<T: fmt::Debug> fmt::Debug for Response<T> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/tungstenite/src/handshake/
Dserver.rs30 pub type Response = HttpResponse<()>; typedef
84 pub fn create_response(request: &Request) -> Result<Response> { in create_response()
162 response: Response, in on_request()
163 ) -> StdResult<Response, ErrorResponse>; in on_request()
173 response: Response, in on_request()
174 ) -> StdResult<Response, ErrorResponse> { in on_request()
187 response: Response, in on_request()
188 ) -> StdResult<Response, ErrorResponse> { in on_request()
/aosp_15_r20/external/rust/android-crates-io/crates/tower/src/util/
Dmod.rs546 fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F> in map_result() argument
550 F: FnOnce(Result<Self::Response, Self::Error>) -> Result<Response, Error> + Clone, in map_result()
873 fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F> in then() argument
877 F: FnOnce(Result<Self::Response, Self::Error>) -> Fut + Clone, in then()
947 fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F> in map_future() argument
997 fn boxed(self) -> BoxService<Request, Self::Response, Self::Error> in boxed()
1046 fn boxed_clone(self) -> BoxCloneService<Request, Self::Response, Self::Error> in boxed_clone()
Dboxed_clone.rs69 S: Service<T, Response = U, Error = E> + Clone + Send + 'static, in new() argument
82 S: Service<T, Response = U, Error = E> + Clone + Send + 'static, in layer() argument
90 type Response = U; typedef
115 dyn CloneService<R, Response = Self::Response, Error = Self::Error, Future = Self::Future> in clone_box() argument
126 … ) -> Box<dyn CloneService<R, Response = T::Response, Error = T::Error, Future = T::Future> + Send> in clone_box() argument
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/
Dresponse.rs5 pub struct Response<T> { struct
11 impl<T> Response<T> { impl
/aosp_15_r20/external/uwb/src/rust/uwb_core/src/session/
H A Duwb_session.rs36 pub(super) enum Response { enum
178 async fn initialize(&mut self, params: AppConfigParams) -> Result<Response> { in initialize()
192 async fn deinitialize(&mut self) -> Result<Response> { in deinitialize()
197 async fn start_ranging(&mut self) -> Result<Response> { in start_ranging()
241 async fn stop_ranging(&mut self) -> Result<Response> { in stop_ranging()
261 async fn reconfigure(&mut self, params: AppConfigParams) -> Result<Response> { in reconfigure()
298 ) -> Result<Response> { in update_controller_multicast_list()
383 async fn params(&mut self) -> Result<Response> { in params()
/aosp_15_r20/external/libbrillo/brillo/dbus/
H A Ddbus_object.h249 const base::Callback<void(std::unique_ptr<Response>, Args...)>& handler) { in AddMethodHandler()
261 void (*handler)(std::unique_ptr<Response>, Args...)) { in AddMethodHandler()
277 void(Class::*handler)(std::unique_ptr<Response>, Args...)) { in AddMethodHandler()
292 void(Class::*handler)(std::unique_ptr<Response>, Args...) const) { in AddMethodHandler()
301 inline void AddMethodHandlerWithMessage( in AddMethodHandlerWithMessage()
316 void (*handler)(std::unique_ptr<Response>, ::dbus::Message*, Args...)) { in AddMethodHandlerWithMessage()
332 void (Class::*handler)(std::unique_ptr<Response>, in AddMethodHandlerWithMessage()
349 void (Class::*handler)(std::unique_ptr<Response>, in AddMethodHandlerWithMessage()
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/transport/server/
Dmod.rs362 S: Service<Request<Body>, Response = Response<BoxBody>, Error = Infallible> in add_service() argument
383 S: Service<Request<Body>, Response = Response<BoxBody>, Error = Infallible> in add_optional_service() argument
497 L::Service: Service<Request<Body>, Response = Response<ResBody>> + Clone + Send + 'static, in serve_with_shutdown() argument
572 S: Service<Request<Body>, Response = Response<BoxBody>, Error = Infallible> in add_service() argument
591 S: Service<Request<Body>, Response = Response<BoxBody>, Error = Infallible> in add_optional_service() argument
617 L::Service: Service<Request<Body>, Response = Response<ResBody>> + Clone + Send + 'static, in serve() argument
647 L::Service: Service<Request<Body>, Response = Response<ResBody>> + Clone + Send + 'static, in serve_with_shutdown() argument
676 L::Service: Service<Request<Body>, Response = Response<ResBody>> + Clone + Send + 'static, in serve_with_incoming() argument
711 L::Service: Service<Request<Body>, Response = Response<ResBody>> + Clone + Send + 'static, in serve_with_incoming_shutdown() argument
726 L::Service: Service<Request<Body>, Response = Response<ResBody>> + Clone + Send + 'static, in into_service() argument
[all …]
/aosp_15_r20/external/crosvm/media/libvda/src/decode/
H A Devent.rs20 pub enum Response { enum
30 impl Response { impl
31 pub(crate) fn new(res: bindings::vda_result_t) -> Response { in new()
36 impl Display for Response { implementation
/aosp_15_r20/external/pigweed/pw_rpc/pwpb/public/pw_rpc/pwpb/
H A Dtest_method_context.h125 using Response = internal::Response<kMethod>; variable
197 using Response = typename Base::Response; variable
242 using Response = typename Base::Response; variable
280 using Response = typename Base::Response; variable
322 using Response = typename Base::Response; variable
/aosp_15_r20/external/pigweed/pw_rpc/nanopb/public/pw_rpc/nanopb/
H A Dtest_method_context.h120 using Response = internal::Response<kMethod>; variable
191 using Response = typename Base::Response; variable
236 using Response = typename Base::Response; variable
274 using Response = typename Base::Response; variable
316 using Response = typename Base::Response; variable
/aosp_15_r20/hardware/ril/librilutils/proto/
H A Dsap-api.proto135 enum Response { enum
186 enum Response { enum
204 enum Response { enum
225 enum Response { enum
242 enum Response { enum
273 enum Response { enum
298 enum Response { enum
/aosp_15_r20/external/tensorflow/tensorflow/core/profiler/rpc/client/
H A Dremote_profiler_session_manager.h39 struct Response { struct
41 std::unique_ptr<ProfileResponse> profile_response; argument
53 std::vector<Response> WaitForCompletion(); argument
/aosp_15_r20/external/ot-br-posix/third_party/Simple-web-server/repo/
H A Dclient_http.hpp95 class Response { class in SimpleWeb::ClientBase
112Response(std::size_t max_response_streambuf_size, const std::shared_ptr<Connection> &connection_) … in Response() function in SimpleWeb::ClientBase::Response
116 Response(const Response &response) noexcept in Response() function in SimpleWeb::ClientBase::Response
237std::function<void(std::shared_ptr<Response>, const error_code &)> &&request_callback_) { in request()
291std::function<void(std::shared_ptr<Response>, const error_code &)> &&request_callback_) { in request()
299std::function<void(std::shared_ptr<Response>, const error_code &)> &&request_callback_) { in request()
306 …void request(const std::string &method, std::function<void(std::shared_ptr<Response>, const error_… in request()
314std::function<void(std::shared_ptr<Response>, const error_code &)> &&request_callback_) { in request()
372std::function<void(std::shared_ptr<Response>, const error_code &)> &&request_callback_) { in request()
/aosp_15_r20/prebuilts/go/linux-x86/src/net/rpc/
Dserver.go179 type Response struct { struct
180 ServiceMethod string // echoes that of the Request
181 Seq uint64 // echoes that of the request
182 Error string // error, if any.
183 next *Response // for free list in Server
658 WriteResponse(*Response, any) error
/aosp_15_r20/external/rust/android-crates-io/crates/tungstenite/src/
Dclient.rs49 ) -> Result<(WebSocket<MaybeTlsStream<TcpStream>>, Response)> { in connect_with_config() argument
53 ) -> Result<(WebSocket<MaybeTlsStream<TcpStream>>, Response)> { in connect_with_config() argument
122 ) -> Result<(WebSocket<MaybeTlsStream<TcpStream>>, Response)> { in connect() argument
158 ) -> StdResult<(WebSocket<Stream>, Response), HandshakeError<ClientHandshake<Stream>>> in client_with_config() argument
174 ) -> StdResult<(WebSocket<Stream>, Response), HandshakeError<ClientHandshake<Stream>>> in client() argument
/aosp_15_r20/packages/modules/RemoteKeyProvisioning/app/tests/util/src/com/android/rkpdapp/testutil/
DFakeRkpServer.java73 public enum Response { enum in FakeRkpServer
93 Response(int code, String description) { in Response() method in FakeRkpServer.Response
98 Response(String base64Body) { in Response() method in FakeRkpServer.Response
103 Response(int code, String description, byte[] body, String mime) { in Response() method in FakeRkpServer.Response
/aosp_15_r20/external/rust/android-crates-io/crates/tower/src/util/boxed/
Dunsync.rs31 S: Service<T, Response = U, Error = E> + 'static, in new() argument
43 S: Service<T, Response = U, Error = E> + 'static, in layer() argument
51 type Response = U; typedef
75 type Response = S::Response; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/middleware/
Dmap_request.rs365 fn into_map_request_result(self) -> Result<Request<B>, Response>; in into_map_request_result() argument
372 fn into_map_request_result(self) -> Result<Request<B>, Response> { in into_map_request_result() argument
378 fn into_map_request_result(self) -> Result<Request<B>, Response> { in into_map_request_result() argument
396 async fn handler(headers: HeaderMap) -> Response { in works()
420 async fn handler(_headers: HeaderMap) -> Response { in works_for_short_circutting()
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/transport/service/
Drouter.rs34 S: Service<Request<Body>, Response = Response<BoxBody>, Error = Infallible> in add_service() argument
56 S: Service<Request<Body>, Response = Response<BoxBody>, Error = Infallible> in new() argument
71 S: Service<Request<Body>, Response = Response<BoxBody>, Error = Infallible> in add_service() argument
107 type Response = Response<BoxBody>; typedef

12345678910>>...26