• Home
  • Raw
  • Download

Lines Matching refs:actions

108   std::unordered_map<grpc::string, std::function<bool()>> actions;  in main()  local
109 actions["empty_unary"] = in main()
111 actions["large_unary"] = in main()
113 actions["server_compressed_unary"] = std::bind( in main()
115 actions["client_compressed_unary"] = std::bind( in main()
117 actions["client_streaming"] = in main()
119 actions["server_streaming"] = in main()
121 actions["server_compressed_streaming"] = std::bind( in main()
123 actions["client_compressed_streaming"] = std::bind( in main()
125 actions["slow_consumer"] = std::bind( in main()
128 actions["half_duplex"] = in main()
130 actions["ping_pong"] = in main()
132 actions["cancel_after_begin"] = in main()
134 actions["cancel_after_first_response"] = std::bind( in main()
136 actions["timeout_on_sleeping_server"] = std::bind( in main()
138 actions["empty_stream"] = in main()
141 actions["compute_engine_creds"] = in main()
144 actions["jwt_token_creds"] = in main()
147 actions["oauth2_auth_token"] = in main()
150 actions["per_rpc_creds"] = in main()
154 actions["status_code_and_message"] = in main()
156 actions["custom_metadata"] = in main()
158 actions["unimplemented_method"] = in main()
160 actions["unimplemented_service"] = in main()
162 actions["cacheable_unary"] = in main()
164 actions["channel_soak"] = in main()
167 actions["rpc_soak"] = std::bind(&grpc::testing::InteropClient::DoRpcSoakTest, in main()
169 actions["long_lived_channel"] = in main()
173 UpdateActions(&actions); in main()
176 for (const auto& action : actions) { in main()
179 } else if (actions.find(FLAGS_test_case) != actions.end()) { in main()
180 actions.find(FLAGS_test_case)->second(); in main()
183 for (const auto& action : actions) { in main()