/prebuilts/go/linux-x86/src/net/rpc/ |
server.go | 178 // Response is a header written before every RPC return. It is used internally 181 type Response struct { 185 next *Response // for free list in Server 195 freeResp *Response 351 // A value sent as a placeholder for the server's response value when the server 352 // receives an invalid request. It is never decoded by the client since the Response 358 // Encode the response header 368 log.Println("rpc: writing response:", err) 414 func (c *gobServerCodec) WriteResponse(r *Response, body interface{}) (err error) { 419 log.Println("rpc: gob error encoding response:", err [all...] |
/prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.18/ |
library-1.0.18.jar | |
/prebuilts/go/darwin-x86/src/net/http/ |
transfer.go | 25 // ErrLineTooLong is returned when reading request or response bodies 54 // transferWriter inspects the fields of a user-supplied Request or Response, 93 case *Response: 175 // (issue 17480) when the body is a pipe (perhaps waiting on the response 221 // become readable until it's seen the response headers. 374 // bodyAllowedForStatus reports whether a given response status code 396 // RFC 2616 section 10.3.5: "the response MUST NOT include other entity-headers" 404 // msg is *Request or *Response. 411 case *Response: 465 // If there is no Content-Length or chunked Transfer-Encoding on a *Response [all...] |
client_test.go | 111 func (t *recordingTransport) RoundTrip(req *Request) (resp *Response, err error) { 299 t.Fatalf("Expected a non-nil Response on CheckRedirect failure (https://golang.org/issue/3795)") 303 t.Errorf("no Location header in Response") 343 want int // response code 525 if req.Response == nil { 526 t.Error("expected non-nil Request.Response") 548 // Issue 17773: don't follow a 308 (or 307) if the response doesn't 1029 t.Fatal("Response didn't set TLS Connection State.") 1046 if got := err.Error(); !strings.Contains(got, "HTTP response to HTTPS client") { 1047 t.Fatalf("error = %q; want error indicating HTTP response to HTTPS request", got [all...] |
/prebuilts/go/linux-x86/src/net/http/ |
transfer.go | 25 // ErrLineTooLong is returned when reading request or response bodies 54 // transferWriter inspects the fields of a user-supplied Request or Response, 93 case *Response: 175 // (issue 17480) when the body is a pipe (perhaps waiting on the response 221 // become readable until it's seen the response headers. 374 // bodyAllowedForStatus reports whether a given response status code 396 // RFC 2616 section 10.3.5: "the response MUST NOT include other entity-headers" 404 // msg is *Request or *Response. 411 case *Response: 465 // If there is no Content-Length or chunked Transfer-Encoding on a *Response [all...] |
client_test.go | 111 func (t *recordingTransport) RoundTrip(req *Request) (resp *Response, err error) { 299 t.Fatalf("Expected a non-nil Response on CheckRedirect failure (https://golang.org/issue/3795)") 303 t.Errorf("no Location header in Response") 343 want int // response code 525 if req.Response == nil { 526 t.Error("expected non-nil Request.Response") 548 // Issue 17773: don't follow a 308 (or 307) if the response doesn't 1029 t.Fatal("Response didn't set TLS Connection State.") 1046 if got := err.Error(); !strings.Contains(got, "HTTP response to HTTPS client") { 1047 t.Fatalf("error = %q; want error indicating HTTP response to HTTPS request", got [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
SIPTransaction.java | 57 import javax.sip.message.Response; 840 * either by a 1xx Provisional Response for an early dialog or a 200OK 841 * Response for a committed dialog. 877 * Get the last response. This is used internally by the implementation. 880 * @return the last response received (for client transactions) or sent (for 888 * Get the JAIN interface response 890 public Response getResponse() { 891 return (Response) this.lastResponse; [all...] |
TLSMessageChannel.java | 55 import javax.sip.message.Response; 157 // Can drop this after response is sent potentially. 353 // JvB: send a 400 response for requests (except ACK) 407 // For response, this has already been recorded in the outgoing 493 SIPResponse response = sipRequest local 494 .createResponse(Response.SERVICE_UNAVAILABLE); 498 // Be a good citizen and send a decent response code back. 501 response.setHeader(retryAfter); 502 this.sendMessage(response); 517 .logError("Dropping Badly formatted response message >>> [all...] |
SIPServerTransaction.java | 61 import javax.sip.message.Response; 81 * send response+-----------+ 83 * | | Proceeding| |send response 90 * send response | |send response | 94 * send response+-----------+ send response | 130 * | |send response 132 * |send response | 135 * send response+-----------+send response [all...] |
/system/core/libutils/ |
Looper.cpp | 182 const Response& response = mResponses.itemAt(mResponseIndex++); 183 int ident = response.request.ident; 185 int fd = response.request.fd; 186 int events = response.events; 187 void* data = response.request.data; 344 // Invoke all response callbacks. 346 Response& response = mResponses.editItemAt(i); 347 if (response.request.ident == POLL_CALLBACK) [all...] |
/external/v8/src/inspector/ |
v8-debugger.cc | 332 Response V8Debugger::setScriptSource( 373 return Response::Error(toProtocolStringWithTypeCheck(message->Get())); 375 return Response::InternalError(); 400 return Response::OK(); 423 return Response::OK(); 426 return Response::InternalError(); [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Include/Library/ |
ShellLib.h | [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/ |
RealConnection.java | 27 import com.squareup.okhttp.Response; 270 Response response = tunnelConnection.readResponse().request(tunnelRequest).build(); local 271 // The response body from a CONNECT should be empty, but if it is not then we should consume 273 long contentLength = OkHeaders.contentLength(response); 281 switch (response.code()) { 294 route.getAddress().getAuthenticator(), response, route.getProxy()); 300 "Unexpected response code for CONNECT: " + response.code());
|
/prebuilts/go/darwin-x86/src/net/http/httputil/ |
persist.go | 172 // Write writes resp in response to req. To close the connection gracefully, set the 173 // Response.Close field to true. Write should be considered operational until 175 func (sc *ServerConn) Write(req *http.Request, resp *http.Response) error { 177 // Retrieve the pipeline ID of this request/response pair 359 // Read reads the next response from the wire. A valid response might be 363 func (cc *ClientConn) Read(req *http.Request) (resp *http.Response, err error) { 364 // Retrieve the pipeline ID of this request/response pair 424 // Do is convenience method that writes a request and reads a response. 425 func (cc *ClientConn) Do(req *http.Request) (*http.Response, error) [all...] |
reverseproxy_test.go | 126 // a response results in a StatusBadGateway. 360 t.Errorf("got response %v; want nil", res.Status) 556 type RoundTripperFunc func(*http.Request) (*http.Response, error) 558 func (fn RoundTripperFunc) RoundTrip(req *http.Request) (*http.Response, error) { 567 proxyHandler.Transport = RoundTripperFunc(func(req *http.Request) (*http.Response, error) { 597 rproxy.ModifyResponse = func(resp *http.Response) error {
|
/prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/ |
server.go | 30 // the response to find the original request ID. 102 func (c *serverCodec) WriteResponse(r *rpc.Response, x interface{}) error { 107 return errors.New("invalid sequence number in response")
|
/prebuilts/go/linux-x86/src/net/http/httputil/ |
persist.go | 172 // Write writes resp in response to req. To close the connection gracefully, set the 173 // Response.Close field to true. Write should be considered operational until 175 func (sc *ServerConn) Write(req *http.Request, resp *http.Response) error { 177 // Retrieve the pipeline ID of this request/response pair 359 // Read reads the next response from the wire. A valid response might be 363 func (cc *ClientConn) Read(req *http.Request) (resp *http.Response, err error) { 364 // Retrieve the pipeline ID of this request/response pair 424 // Do is convenience method that writes a request and reads a response. 425 func (cc *ClientConn) Do(req *http.Request) (*http.Response, error) [all...] |
/prebuilts/go/linux-x86/src/net/rpc/jsonrpc/ |
server.go | 30 // the response to find the original request ID. 102 func (c *serverCodec) WriteResponse(r *rpc.Response, x interface{}) error { 107 return errors.New("invalid sequence number in response")
|
/external/libbrillo/brillo/dbus/ |
exported_object_manager_unittest.cc | 124 std::unique_ptr<dbus::Response> CallHandleGetManagedObjects() { 154 auto response = CallHandleGetManagedObjects(); local 155 dbus::MessageReader reader(response.get()); 168 auto response = CallHandleGetManagedObjects(); local 169 dbus::MessageReader reader(response.get());
|
/external/pdfium/fpdfsdk/fpdfxfa/ |
cpdfxfa_context.cpp | 310 CFX_WideString CPDFXFA_Context::Response(const CFX_WideString& wsQuestion,
|
/external/pdfium/xfa/fxfa/ |
fxfa.h | 173 * Get a response from the user. 178 * @return A string containing the user's response. 180 virtual CFX_WideString Response(const CFX_WideString& wsQuestion, 205 * @param[out] wsResponse decoded response from server.
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/ |
UfsHci.h | 456 UINT16 RuL; /* Response UPIU Length */
457 UINT16 RuO; /* Response UPIU Offset */
532 // UFS 2.0 Spec Section 10.5.4 - UTP Response UPIU
551 UINT8 Response; /* Response */
769 // UFS 2.0 Spec Section 10.5.9 - UTP Task Management Response UPIU
786 UINT8 Resp; /* Response */
847 UTP_TM_RESP_UPIU TmResp; /* Task Management Response UPIU */
922 // UFS 2.0 Spec Section 10.5.11 - UTP Query Response UPIU
940 UINT8 QueryResp; /* Query Response */
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/ |
UfsPassThruHci.h | 456 UINT16 RuL; /* Response UPIU Length */
457 UINT16 RuO; /* Response UPIU Offset */
532 // UFS 2.0 Spec Section 10.5.4 - UTP Response UPIU
551 UINT8 Response; /* Response */
769 // UFS 2.0 Spec Section 10.5.9 - UTP Task Management Response UPIU
786 UINT8 Resp; /* Response */
847 UTP_TM_RESP_UPIU TmResp; /* Task Management Response UPIU */
922 // UFS 2.0 Spec Section 10.5.11 - UTP Query Response UPIU
940 UINT8 QueryResp; /* Query Response */
[all...] |
/external/libbrillo/brillo/http/ |
http_transport_curl.cc | 450 LOG(INFO) << "Response: " << connection->GetResponseStatusCode() << " (" 453 // Rewind the response data stream to the beginning so the clients can 462 std::unique_ptr<Response> resp{new Response{request_data->connection}};
|
/external/pdfium/xfa/fxfa/parser/ |
cscript_hostpseudomodel.cpp | 277 void CScript_HostPseudoModel::Response(CFXJSE_Arguments* pArguments) { 280 ThrowParamCountMismatchException(L"response"); 306 CFX_WideString wsAnswer = pNotify->GetAppProvider()->Response(
|