Lines Matching refs:clients_
30 clients_ = nullptr;
97 if (that->clients_ == nullptr) {
98 that->clients_ = new NetClient();
101 tmp->next = that->clients_;
102 that->clients_ = tmp;
105 uv_tcp_init(that->loop_, (uv_tcp_t*)&that->clients_->tcp);
106 that->clients_->tcp.data = server->data;
107 uv_accept(server, (uv_stream_t*)&that->clients_->tcp);
108 uv_read_start((uv_stream_t*)&that->clients_->tcp, EchoAlloc, AfterRead);
122 for (NetClient* i = that->clients_; i != nullptr; i = i->next) {