Home
last modified time | relevance | path

Searched refs:status_text (Results 1 – 15 of 15) sorted by relevance

/third_party/grpc/src/php/tests/unit_tests/
DEndToEndTest.php40 $status_text = 'xyz';
62 'details' => $status_text,
79 $this->assertSame($status_text, $status->details);
89 $status_text = 'xyz';
113 'details' => $status_text,
125 $this->assertSame($status_text, $status->details);
136 $status_text = 'status:client_server_full_response_text';
162 'details' => $status_text,
185 $this->assertSame($status_text, $status->details);
197 $status_text = 'status:client_server_full_response_text';
[all …]
DSecureEndToEndTest.php54 $status_text = 'xyz';
77 'details' => $status_text,
95 $this->assertSame($status_text, $status->details);
105 $status_text = 'xyz';
130 'details' => $status_text,
143 $this->assertSame($status_text, $status->details);
154 $status_text = 'status:client_server_full_response_text';
181 'details' => $status_text,
204 $this->assertSame($status_text, $status->details);
DCallCredentials2Test.php63 $status_text = 'xyz';
98 'details' => $status_text,
116 $this->assertSame($status_text, $status->details);
133 $status_text = 'xyz';
165 $status_text = 'xyz';
DCallCredentialsTest.php69 $status_text = 'xyz';
100 'details' => $status_text,
118 $this->assertSame($status_text, $status->details);
/third_party/glib/gio/win32/
Dgwinhttpvfs.c397 wchar_t *status_text = NULL; in _g_winhttp_response() local
409 status_text = g_malloc (status_text_len); in _g_winhttp_response()
415 status_text, in _g_winhttp_response()
419 g_free (status_text); in _g_winhttp_response()
420 status_text = NULL; in _g_winhttp_response()
426 what, status_code, status_text ? status_text : L""); in _g_winhttp_response()
428 g_free (status_text); in _g_winhttp_response()
/third_party/cef/libcef/common/net_service/
Dnet_service_util.cc75 const std::string& status_text, in MakeStatusLine() argument
81 if (status_text.empty()) { in MakeStatusLine()
87 status.append(status_text); in MakeStatusLine()
111 const std::string& status_text, in MakeResponseHeaders() argument
121 MakeStatusLine(status_code, status_text, false))); in MakeResponseHeaders()
Dnet_service_util.h42 const std::string& status_text,
52 const std::string& status_text,
/third_party/cef/libcef_dll/wrapper/
Dcef_stream_resource_handler.cc25 const CefString& status_text, in CefStreamResourceHandler() argument
30 status_text_(status_text), in CefStreamResourceHandler()
/third_party/vk-gl-cts/android/package/src/com/drawelements/deqp/execserver/
DExecServerActivity.java46 m_statusText = (TextView)findViewById(R.id.status_text); in onCreate()
/third_party/cef/include/wrapper/
Dcef_stream_resource_handler.h58 const CefString& status_text,
/third_party/openssl/crypto/ts/
Dts_rsp_verify.c476 const char *status_text = NULL; in ts_check_status_info() local
485 status_text = ts_status_text[status]; in ts_check_status_info()
487 status_text = "unknown code"; in ts_check_status_info()
513 "status code: ", status_text, in ts_check_status_info()
/third_party/cef/tests/ceftests/
Dresource_request_handler_unittest.cc29 const CefString& status_text, in NormalResourceHandler() argument
35 status_text, in NormalResourceHandler()
87 const CefString& status_text, in CallbackResourceHandler() argument
94 status_text_(status_text), in CallbackResourceHandler()
1075 const CefString& status_text, in GetResource() argument
1084 return new CallbackResourceHandler(handler_mode, status_code, status_text, in GetResource()
1089 return new NormalResourceHandler(status_code, status_text, mime_type, in GetResource()
1313 const std::string& status_text = response->GetStatusText(); in VerifyRedirectResponse() local
1314 EXPECT_TRUE(status_text == "Internal Redirect" || in VerifyRedirectResponse()
1315 status_text == "Temporary Redirect") in VerifyRedirectResponse()
[all …]
/third_party/python/Tools/scripts/
Dpatchcheck.py135 status_text, filename = line.split(maxsplit=1)
136 status = set(status_text)
/third_party/node/test/fixtures/wpt/resources/
Dtestharness.js2735 var status_text = {};
2736 status_text[Test.prototype.PASS] = "Pass";
2737 status_text[Test.prototype.FAIL] = "Fail";
2738 status_text[Test.prototype.TIMEOUT] = "Timeout";
2739 status_text[Test.prototype.NOTRUN] = "Not Run";
2744 var status = status_text[test.status];
2784 while (status_text.hasOwnProperty(i)) {
2785 if (status_number.hasOwnProperty(status_text[i])) {
2786 var status = status_text[i];
2866 escape_html(status_class(status_text[tests[i].status])) +
[all …]
/third_party/cef/libcef/browser/net_service/
Dstream_reader_url_loader.cc615 std::string status_text = in HeadersComplete() local
621 &status_text, &mime_type, &charset, in HeadersComplete()
635 status_code, status_text, mime_type, charset, content_length, in HeadersComplete()