HomeSort by relevance Sort by last modified time
    Searched refs:RoundTrip (Results 1 - 25 of 40) sorted by null

1 2

  /system/keymaster/tests/
android_keymaster_messages_test.cpp 66 TEST(RoundTrip, EmptyKeymasterResponse) {
75 TEST(RoundTrip, EmptyKeymasterResponseError) {
84 TEST(RoundTrip, SupportedByAlgorithmRequest) {
94 TEST(RoundTrip, SupportedByAlgorithmAndPurposeRequest) {
106 TEST(RoundTrip, SupportedResponse) {
130 TEST(RoundTrip, GenerateKeyRequest) {
139 TEST(RoundTrip, GenerateKeyResponse) {
154 TEST(RoundTrip, GenerateKeyResponseTestError) {
170 TEST(RoundTrip, GetKeyCharacteristicsRequest) {
183 TEST(RoundTrip, GetKeyCharacteristicsResponse)
    [all...]
  /bionic/tests/
iconv_test.cpp 291 static void RoundTrip(const char* dst_enc, const char* expected_bytes, size_t n) {
335 RoundTrip("ascii//TRANSLIT", "$??", 3);
339 RoundTrip("utf8", "\x24\xe2\x82\xac\xf0\x90\x90\xb7", 8);
343 RoundTrip("utf16be", "\x00\x24" "\x20\xac" "\xd8\x01\xdc\x37", 8);
347 RoundTrip("utf16le", "\x24\x00" "\xac\x20" "\x01\xd8\x37\xdc", 8);
351 RoundTrip("utf32be", "\x00\x00\x00\x24" "\x00\x00\x20\xac" "\x00\x01\x04\x37", 12);
355 RoundTrip("utf32le", "\x24\x00\x00\x00" "\xac\x20\x00\x00" "\x37\x04\x01\x00", 12);
359 RoundTrip("wchar_t", "\x24\x00\x00\x00" "\xac\x20\x00\x00" "\x37\x04\x01\x00", 12);
  /prebuilts/go/darwin-x86/src/net/http/httptrace/
example_test.go 25 _, err := http.DefaultTransport.RoundTrip(req)
trace.go 89 // Transport.RoundTrip.
  /prebuilts/go/linux-x86/src/net/http/httptrace/
example_test.go 25 _, err := http.DefaultTransport.RoundTrip(req)
trace.go 89 // Transport.RoundTrip.
  /external/pdfium/third_party/lcms/src/
cmsgmt.c 430 cmsFloat32Number RoundTrip[cmsMAXCHANNELS];
436 cmsDoTransform(bp->hRoundTrip, In, RoundTrip, 1);
440 Sum += RoundTrip[i];
483 // Setup a roundtrip on perceptual intent in output profile for TAC estimation
  /prebuilts/go/darwin-x86/src/net/http/
client.go 118 // RoundTrip executes a single HTTP transaction, returning
121 // RoundTrip should not attempt to interpret the response. In
122 // particular, RoundTrip must return err == nil if it obtained
125 // response. Similarly, RoundTrip should not attempt to
129 // RoundTrip should not modify the request, except for
130 // consuming and closing the Request's Body. RoundTrip may
135 // RoundTrip must always close the body, including on errors,
137 // goroutine even after RoundTrip returns. This means that
142 RoundTrip(*Request) (*Response, error)
252 resp, err = rt.RoundTrip(req
    [all...]
filetransport.go 34 func (t fileTransport) RoundTrip(req *Request) (resp *Response, err error) {
http_test.go 94 "net/http.(*Transport).RoundTrip": true,
transport_test.go 744 res, err := tr.RoundTrip(req)
766 t.Errorf("%d. Accept-Encoding = %q; want %q (it was mutated, in violation of RoundTrip contract)", i, g, e)
    [all...]
transport.go 80 // the RoundTrip method should not have a Method of "CONNECT", as Go's
321 // from roundTrip.
346 // RoundTrip implements the RoundTripper interface.
350 func (t *Transport) RoundTrip(req *Request) (*Response, error) {
380 if resp, err := altRT.RoundTrip(req); err != ErrSkipAltProtocol {
397 // treq gets modified by roundTrip, so we need to recreate for each retry.
420 resp, err = pconn.alt.RoundTrip(req)
422 resp, err = pconn.roundTrip(treq)
453 // error from roundTrip.
511 // If rt.RoundTrip returns ErrSkipAltProtocol, the Transport wil
    [all...]
clientserver_test.go 812 t.Errorf("%d. RoundTrip = %v", i, err)
875 t.Errorf("%d. RoundTrip = %v", i, err)
918 t.Fatalf("RoundTrip = %v", err)
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
client.go 118 // RoundTrip executes a single HTTP transaction, returning
121 // RoundTrip should not attempt to interpret the response. In
122 // particular, RoundTrip must return err == nil if it obtained
125 // response. Similarly, RoundTrip should not attempt to
129 // RoundTrip should not modify the request, except for
130 // consuming and closing the Request's Body. RoundTrip may
135 // RoundTrip must always close the body, including on errors,
137 // goroutine even after RoundTrip returns. This means that
142 RoundTrip(*Request) (*Response, error)
252 resp, err = rt.RoundTrip(req
    [all...]
filetransport.go 34 func (t fileTransport) RoundTrip(req *Request) (resp *Response, err error) {
http_test.go 94 "net/http.(*Transport).RoundTrip": true,
transport_test.go 744 res, err := tr.RoundTrip(req)
766 t.Errorf("%d. Accept-Encoding = %q; want %q (it was mutated, in violation of RoundTrip contract)", i, g, e)
    [all...]
transport.go 80 // the RoundTrip method should not have a Method of "CONNECT", as Go's
321 // from roundTrip.
346 // RoundTrip implements the RoundTripper interface.
350 func (t *Transport) RoundTrip(req *Request) (*Response, error) {
380 if resp, err := altRT.RoundTrip(req); err != ErrSkipAltProtocol {
397 // treq gets modified by roundTrip, so we need to recreate for each retry.
420 resp, err = pconn.alt.RoundTrip(req)
422 resp, err = pconn.roundTrip(treq)
453 // error from roundTrip.
511 // If rt.RoundTrip returns ErrSkipAltProtocol, the Transport wil
    [all...]
clientserver_test.go 812 t.Errorf("%d. RoundTrip = %v", i, err)
875 t.Errorf("%d. RoundTrip = %v", i, err)
918 t.Fatalf("RoundTrip = %v", err)
    [all...]
  /prebuilts/go/darwin-x86/misc/linkcheck/
linkcheck.go 127 res, err := http.DefaultTransport.RoundTrip(req)
  /prebuilts/go/linux-x86/misc/linkcheck/
linkcheck.go 127 res, err := http.DefaultTransport.RoundTrip(req)
  /prebuilts/go/darwin-x86/src/net/http/httputil/
reverseproxy_test.go 565 func (fn RoundTripperFunc) RoundTrip(req *http.Request) (*http.Response, error) {
679 func (t *staticTransport) RoundTrip(r *http.Request) (*http.Response, error) {
769 func (fn roundTripperFunc) RoundTrip(req *http.Request) (*http.Response, error) {
dump.go 126 _, err := t.RoundTrip(reqSend)
  /prebuilts/go/linux-x86/src/net/http/httputil/
reverseproxy_test.go 565 func (fn RoundTripperFunc) RoundTrip(req *http.Request) (*http.Response, error) {
679 func (t *staticTransport) RoundTrip(r *http.Request) (*http.Response, error) {
769 func (fn roundTripperFunc) RoundTrip(req *http.Request) (*http.Response, error) {
  /external/webrtc/webrtc/base/
stringencode_unittest.cc 441 TEST(BoolTest, RoundTrip) {

Completed in 542 milliseconds

1 2