/third_party/grpc/src/core/lib/security/credentials/oauth2/ |
D | oauth2_credentials.h | 88 std::string debug_string() override; 118 std::string debug_string() override; 146 std::string debug_string() override;
|
D | oauth2_credentials.cc | 363 std::string grpc_oauth2_token_fetcher_credentials::debug_string() { in debug_string() function in grpc_oauth2_token_fetcher_credentials 406 std::string debug_string() override { in debug_string() function in __anon235809ae0111::grpc_compute_engine_token_fetcher_credentials 409 grpc_oauth2_token_fetcher_credentials::debug_string()); in debug_string() 482 std::string grpc_google_refresh_token_credentials::debug_string() { in debug_string() function in grpc_google_refresh_token_credentials 485 grpc_oauth2_token_fetcher_credentials::debug_string()); in debug_string() 553 std::string debug_string() override { in debug_string() function in grpc_core::__anon235809ae0211::StsTokenFetcherCredentials 557 grpc_oauth2_token_fetcher_credentials::debug_string()); in debug_string() 740 std::string grpc_access_token_credentials::debug_string() { in debug_string() function in grpc_access_token_credentials
|
/third_party/grpc/test/core/security/ |
D | credentials_test.cc | 648 strcmp(creds->debug_string().c_str(), expected_creds_debug_string) == 0); in test_compute_engine_creds_success() 670 strcmp(creds->debug_string().c_str(), expected_creds_debug_string) == 0); in test_compute_engine_creds_failure() 748 strcmp(creds->debug_string().c_str(), expected_creds_debug_string) == 0); in test_refresh_token_creds_success() 771 strcmp(creds->debug_string().c_str(), expected_creds_debug_string) == 0); in test_refresh_token_creds_failure() 1005 strcmp(creds->debug_string().c_str(), expected_creds_debug_string) == 0); in test_sts_creds_success() 1091 strcmp(creds->debug_string().c_str(), expected_creds_debug_string) == 0); in test_sts_creds_no_actor_token_success() 1126 strcmp(creds->debug_string().c_str(), expected_creds_debug_string) == 0); in test_sts_creds_load_token_failure() 1162 strcmp(creds->debug_string().c_str(), expected_creds_debug_string) == 0); in test_sts_creds_http_failure() 1234 jwt_creds->debug_string().c_str(), in test_jwt_creds_lifetime() 1246 jwt_creds->debug_string().c_str(), in test_jwt_creds_lifetime() [all …]
|
/third_party/grpc/src/core/lib/security/credentials/plugin/ |
D | plugin_credentials.cc | 46 std::string grpc_plugin_credentials::debug_string() { in debug_string() function in grpc_plugin_credentials 48 if (plugin_.debug_string != nullptr) { in debug_string() 49 debug_c_str = plugin_.debug_string(plugin_.state); in debug_string()
|
D | plugin_credentials.h | 62 std::string debug_string() override;
|
/third_party/protobuf/src/google/protobuf/compiler/ |
D | parser_unittest.cc | 2211 std::string debug_string = original_file->DebugString(); in TEST_F() local 2214 SetupParser(debug_string.c_str()); in TEST_F() 2218 ASSERT_EQ("", error_collector_.text_) << "Failed to parse:\n" << debug_string; in TEST_F() 2238 ASSERT_TRUE(actual != NULL) << "Failed to validate:\n" << debug_string; in TEST_F() 2260 std::string debug_string = original_file->DebugString(); in TEST_F() local 2263 SetupParser(debug_string.c_str()); in TEST_F() 2393 const std::string debug_string = in TEST_F() local 2398 debug_string.find(expected_comments[i]); in TEST_F() 2404 SetupParser(debug_string.c_str()); in TEST_F() 2409 << debug_string; in TEST_F() [all …]
|
/third_party/grpc/src/core/lib/security/credentials/iam/ |
D | iam_credentials.h | 42 std::string debug_string() override { return debug_string_; } in debug_string() function
|
/third_party/protobuf/src/google/protobuf/ |
D | unknown_field_set_unittest.cc | 277 const std::string debug_string = empty_message_.DebugString(); in TEST_F() local 279 EXPECT_NE(debug_string, other_debug_string); in TEST_F() 282 EXPECT_EQ(debug_string, other_message.DebugString()); in TEST_F() 287 const std::string debug_string = empty_message_.DebugString(); in TEST_F() local 292 EXPECT_EQ(debug_string, empty_message_.DebugString()); in TEST_F()
|
D | text_format.cc | 85 std::string debug_string; in DebugString() local 90 printer.PrintToString(*this, &debug_string); in DebugString() 92 return debug_string; in DebugString() 96 std::string debug_string; in ShortDebugString() local 102 printer.PrintToString(*this, &debug_string); in ShortDebugString() 104 if (!debug_string.empty() && debug_string[debug_string.size() - 1] == ' ') { in ShortDebugString() 105 debug_string.resize(debug_string.size() - 1); in ShortDebugString() 108 return debug_string; in ShortDebugString() 112 std::string debug_string; in Utf8DebugString() local 118 printer.PrintToString(*this, &debug_string); in Utf8DebugString() [all …]
|
D | text_format_unittest.cc | 213 std::string debug_string = proto_.DebugString(); in TEST_F() local 221 EXPECT_EQ(correct_string, debug_string); in TEST_F() 237 std::string debug_string = proto_.DebugString(); in TEST_F() local 258 EXPECT_EQ(correct_string, debug_string); in TEST_F()
|
/third_party/grpc/src/core/lib/security/credentials/fake/ |
D | fake_credentials.h | 80 std::string debug_string() override { return "MD only Test Credentials"; }; in debug_string() function
|
/third_party/grpc/src/core/lib/security/credentials/composite/ |
D | composite_credentials.cc | 122 std::string grpc_composite_call_credentials::debug_string() { in debug_string() function in grpc_composite_call_credentials 125 outputs.emplace_back(inner_cred->debug_string()); in debug_string()
|
D | composite_credentials.h | 96 std::string debug_string() override;
|
/third_party/grpc/src/core/lib/security/credentials/jwt/ |
D | jwt_credentials.h | 52 std::string debug_string() override { in debug_string() function
|
/third_party/grpc/src/core/lib/security/credentials/external/ |
D | external_account_credentials.h | 56 std::string debug_string() override;
|
D | external_account_credentials.cc | 190 std::string ExternalAccountCredentials::debug_string() { in debug_string() function in grpc_core::ExternalAccountCredentials 193 grpc_oauth2_token_fetcher_credentials::debug_string()); in debug_string()
|
/third_party/grpc/src/cpp/client/ |
D | secure_credentials.h | 71 std::string(c_creds_->debug_string()), "}"); in DebugString()
|
/third_party/grpc/src/core/lib/security/credentials/ |
D | credentials.h | 202 virtual std::string debug_string() { in debug_string() function
|
/third_party/grpc/test/cpp/interop/ |
D | interop_client.cc | 1094 std::string debug_string = in PerformOneSoakTestIteration() local 1097 return std::make_tuple(false, elapsed_ms, std::move(debug_string)); in PerformOneSoakTestIteration() 1130 std::string debug_string = std::get<2>(results[i]); in PerformSoakTest() local 1133 elapsed_ms, debug_string.c_str()); in PerformSoakTest()
|
/third_party/grpc/include/grpc/ |
D | grpc_security.h | 463 char* (*debug_string)(void* state); member
|
/third_party/gstreamer/gstreamer/docs/random/old/ |
D | ChangeLog.gstreamer | 10499 (the default min) and spew function:line debug_string [element] for
|