| 2057 | }; |
| 2058 | |
| 2059 | static void* TestRetryBackoffBthread(void* void_args) { |
| 2060 | auto args = static_cast<TestRetryBackoffInfo*>(void_args); |
| 2061 | args->channel_test->TestRetryBackoff(args->async, args->short_connection, |
| 2062 | args->fixed_backoff, false); |
| 2063 | return NULL; |
| 2064 | } |
| 2065 | |
| 2066 | void TestRetryBackoff(bool async, bool short_connection, bool fixed_backoff, |
| 2067 | bool retry_backoff_in_pthread) { |
nothing calls this directly
no test coverage detected