Searched defs:socket (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/bionic/
H A Dsocket.cpp19 #include <sys/socket.h>
21 int socket(int domain, int type, int protocol) { function
22 return __netdClientDispatch.socket(domain, type, protocol);
H A Dsend.cpp29 #include <sys/socket.h>
31 ssize_t send(int socket, const void* buf, size_t len, int flags) { argument
32 return sendto(socket, buf, len, flags, NULL, 0);
H A Drecv.cpp30 #include <sys/socket.h>
32 ssize_t recv(int socket, void *buf, size_t len, int flags) { argument
33 return recvfrom(socket, buf, len, flags, NULL, 0);
H A D__recvfrom_chk.cpp32 #include <sys/socket.h>
35 ssize_t __recvfrom_chk(int socket, void* buf, size_t len, size_t buflen, argument
42 return recvfrom(socket, buf, len, flags, src_addr, addrlen);
/bionic/libc/private/
H A DNetdClientDispatch.h21 #include <sys/socket.h>
28 int (*socket)(int, int, int); member in struct:NetdClientDispatch
/bionic/tools/bionicbb/
H A Dtasks.py20 import socket namespace
88 except socket.error:
/bionic/libc/include/sys/
H A Dsocket.h34 #include <linux/socket.h>
37 #include <asm/socket.h>
285 __socketcall int socket(int, int, int);
322 ssize_t recv(int socket, void* buf, size_t len, int flags) { argument
323 return recvfrom(socket, buf, len, flags, NULL, 0);

Completed in 153 milliseconds