/bionic/libc/bionic/ |
D | socket.cpp | 21 int socket(int domain, int type, int protocol) { in socket() function 22 return __netdClientDispatch.socket(domain, type, protocol); in socket()
|
D | send.cpp | 31 ssize_t send(int socket, const void* buf, size_t len, int flags) { in send() argument 32 return sendto(socket, buf, len, flags, NULL, 0); in send()
|
D | recv.cpp | 32 ssize_t recv(int socket, void *buf, size_t len, int flags) { in recv() argument 33 return recvfrom(socket, buf, len, flags, NULL, 0); in recv()
|
D | __recvfrom_chk.cpp | 35 ssize_t __recvfrom_chk(int socket, void* buf, size_t len, size_t buflen, in __recvfrom_chk() argument 42 return recvfrom(socket, buf, len, flags, src_addr, addrlen); in __recvfrom_chk()
|
D | NetdClient.cpp | 49 netdClientInitFunction(netdClientHandle, "netdClientInitSocket", &__netdClientDispatch.socket); in netdClientInitImpl()
|
D | bionic_netlink.cpp | 63 fd_ = socket(PF_NETLINK, SOCK_RAW | SOCK_CLOEXEC, NETLINK_ROUTE); in SendRequest()
|
D | net_if.cpp | 48 int s = socket(AF_INET, SOCK_DGRAM|SOCK_CLOEXEC, 0); in if_indextoname() 62 int s = socket(AF_INET, SOCK_DGRAM|SOCK_CLOEXEC, 0); in if_nametoindex()
|
D | libc_logging.cpp | 462 int log_fd = TEMP_FAILURE_RETRY(socket(PF_UNIX, SOCK_DGRAM | SOCK_CLOEXEC, 0)); in __libc_open_log_socket()
|
D | system_properties.cpp | 535 const int fd = socket(AF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC, 0); in send_prop_msg()
|
/bionic/libc/private/ |
D | NetdClientDispatch.h | 28 int (*socket)(int, int, int); member
|
/bionic/tools/bionicbb/ |
D | tasks.py | 20 import socket 88 except socket.error:
|
/bionic/libc/include/sys/ |
D | socket.h | 285 __socketcall int socket(int, int, int); 322 ssize_t recv(int socket, void* buf, size_t len, int flags) { in recv() argument 323 return recvfrom(socket, buf, len, flags, NULL, 0); in recv()
|
/bionic/tests/ |
D | sys_socket_test.cpp | 37 int fd = socket(PF_UNIX, SOCK_SEQPACKET | SOCK_CLOEXEC | SOCK_NONBLOCK, 0); in ConnectFn() 64 int fd = socket(PF_UNIX, SOCK_SEQPACKET, 0); in RunTest()
|
D | ifaddrs_test.cpp | 117 int fd = socket(AF_INET, SOCK_DGRAM, 0); in CheckAddressIsInSet()
|
/bionic/linker/ |
D | debugger.cpp | 100 int s = socket(AF_LOCAL, type, 0); in socket_abstract_client()
|
/bionic/libc/dns/resolv/ |
D | res_send.c | 800 statp->_vcsock = socket(nsap->sa_family, SOCK_STREAM | SOCK_CLOEXEC, 0); in send_vc() 1101 EXT(statp).nssocks[ns] = socket(nsap->sa_family, SOCK_DGRAM | SOCK_CLOEXEC, 0); in send_dg()
|
/bionic/libc/ |
D | SYSCALLS.TXT | 20 # For example, socket() syscall on i386 actually becomes: 240 int __socket:socket(int, int, int) arm,arm64,mips,mips64,x86_64
|
D | libc.arm64.map | 900 socket;
|
D | libc.mips64.map | 900 socket;
|
D | libc.x86_64.map | 900 socket;
|
D | libc.mips.brillo.map | 958 socket;
|
D | libc.x86.brillo.map | 956 socket;
|
D | libc.mips.map | 958 socket;
|
/bionic/libc/tools/ |
D | posix-2013.txt | 973 socket
|
/bionic/libc/dns/net/ |
D | getaddrinfo.c | 878 s = socket(pai->ai_family, SOCK_DGRAM | SOCK_CLOEXEC, 0); in explore_null() 1800 sock = socket(addr->sa_family, SOCK_DGRAM | SOCK_CLOEXEC, IPPROTO_UDP); in _find_src_addr()
|