| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/rbug/ |
| rbug_connection.c | 32 int socket; member in struct:rbug_connection 39 * Create a rbug connection from a socket created with u_socket. 42 * A new allocated connection using socket as communication path 45 rbug_from_socket(int socket) 48 c->socket = socket; 53 * Free a connection, also closes socket. 58 u_socket_close(c->socket); 80 ret = u_socket_peek(c->socket, &header, sizeof(header)); 94 ret = u_socket_recv(c->socket, ptr, length - read) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/rbug/ |
| rbug_connection.c | 32 int socket; member in struct:rbug_connection 39 * Create a rbug connection from a socket created with u_socket. 42 * A new allocated connection using socket as communication path 45 rbug_from_socket(int socket) 48 c->socket = socket; 53 * Free a connection, also closes socket. 58 u_socket_close(c->socket); 80 ret = u_socket_peek(c->socket, &header, sizeof(header)); 94 ret = u_socket_recv(c->socket, ptr, length - read) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/vulkan/overlay-layer/ |
| overlay.cpp | 713 int socket = os_socket_accept(instance_data->params.control); local 714 if (socket == -1) { 716 fprintf(stderr, "ERROR on socket: %s\n", strerror(errno)); 720 if (socket >= 0) { 721 os_socket_block(socket, false); 722 instance_data->control_client = socket; 762 * socket, there's a good chance that there's still more data to be
|