Searched refs:buflen (Results 1 – 2 of 2) sorted by relevance
/sdk/emulator/opengl/tests/event_injector/ |
D | sockets.h | 370 int socket_recv ( int fd, void* buf, int buflen ); 371 int socket_recvfrom( int fd, void* buf, int buflen, SockAddress* from ); 373 int socket_send ( int fd, const void* buf, int buflen ); 374 int socket_send_oob( int fd, const void* buf, int buflen ); 375 int socket_sendto( int fd, const void* buf, int buflen, const SockAddress* to );
|
D | sockets.c | 968 socket_send(int fd, const void* buf, int buflen) in socket_send() argument 970 SOCKET_CALL(send(fd, buf, buflen, 0)) in socket_send() 974 socket_send_oob( int fd, const void* buf, int buflen ) in socket_send_oob() argument 976 SOCKET_CALL(send(fd, buf, buflen, MSG_OOB)); in socket_send_oob() 980 socket_sendto(int fd, const void* buf, int buflen, const SockAddress* to) in socket_sendto() argument 988 SOCKET_CALL(sendto(fd, buf, buflen, 0, sa.sa, salen)); in socket_sendto()
|