Home | History | Annotate | Download | only in jni

Lines Matching refs:clients

201 	svs.clients = (client_s*) Hunk_AllocName (svs.maxclientslimit*sizeof(client_t), "clients");
300 Sends text to all active clients
314 if (svs.clients[i].active && svs.clients[i].spawned)
316 MSG_WriteByte (&svs.clients[i].message, svc_print);
317 MSG_WriteString (&svs.clients[i].message, string);
387 // send notification to all clients
388 for (i=0, client = svs.clients ; i<svs.maxclients ; i++, client++)
393 MSG_WriteByte (&client->message, host_client - svs.clients);
396 MSG_WriteByte (&client->message, host_client - svs.clients);
399 MSG_WriteByte (&client->message, host_client - svs.clients);
433 for (i=0, host_client = svs.clients ; i<svs.maxclients ; i++, host_client++)
454 // make sure all the clients know we're disconnecting
461 Con_Printf("Host_ShutdownServer: NET_SendToAll failed for %u clients\n", count);
463 for (i=0, host_client = svs.clients ; i<svs.maxclients ; i++, host_client++)
471 memset (svs.clients, 0, svs.maxclientslimit*sizeof(client_t));
585 // check for new clients
600 // send all messages to the clients
614 // check for new clients
625 // send all messages to the clients
768 if (svs.clients[i].active)
772 clients %2i msec\n", c, m/10);
773 LOGI("serverprofile: %2i clients %2i.%1i msec, acc = %2i.%1i msec\n", c, m/10, m%10, m_acc/10, m_acc%10);