| 92 | return init(std::unique_ptr<rtc::Thread>(rtc::Thread::Create()), name); |
| 93 | } |
| 94 | static Thread create_network(const std::string &name) { |
| 95 | return init(std::unique_ptr<rtc::Thread>(rtc::Thread::CreateWithSocketServer()), name); |
| 96 | } |
| 97 | |
| 98 | static Thread init(Thread value, const std::string &name) { |
| 99 | value->SetName(name, nullptr); |
nothing calls this directly
no outgoing calls
no test coverage detected