Searched refs:sendto (Results 1 - 25 of 30) sorted by relevance

12

/haiku/headers/private/drivers/
H A Dksocket.h22 #define ksendto sendto
46 #define ksendto sendto
74 #define ksendto (gSocket->sendto)
/haiku/src/add-ons/kernel/file_systems/nfs/
H A Dksocket.h22 #define ksendto sendto
49 #define ksendto (gSocket->sendto)
87 #define ksendto (gSocket->sendto)
/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dksocket.h22 #define ksendto sendto
44 #define ksendto sendto
72 #define ksendto (gSocket->sendto)
/haiku/src/kits/network/libnetapi/
H A DDatagramSocket.cpp95 ssize_t bytesSent = sendto(fSocket, buffer, size, 0, address,
140 bytesSent = sendto(Socket(), buffer, size, 0, fPeer, fPeer.Length());
H A DNetEndpoint.cpp604 ssize_t bytesSent = sendto(fSocket, buffer, length, flags,
/haiku/src/bin/network/
H A Dwakeonlan.cpp50 result = sendto(sock, buffer, sizeof(buffer), 0,
/haiku/src/add-ons/kernel/debugger/netconsole/
H A Dnetconsole.cpp68 return sendto(gSocket, message, length, 0,
/haiku/src/tests/system/network/ipv6/
H A Draw_client.cpp51 int status = sendto(fd, buffer, length, 0, (sockaddr *) &saddr,
55 perror("sendto");
H A Dudp_client.cpp58 int status = sendto(fd, buffer, length, 0, (sockaddr *) &saddr,
62 perror("sendto");
H A Dmulticast_sender.cpp80 int status = sendto(fd, buffer, length, 0, (sockaddr *) &saddr,
84 perror("sendto");
/haiku/src/tests/system/network/
H A Dudp_client.c33 status = sendto(sockFD, sendbuf, status, 0,
36 printf("sendto(): %lx (%s)\n", status, strerror(status));
H A Dudp_echo.c42 status = sendto(sockFD, buf, len, 0,
45 printf("sendto(): %x (%s)\n", errno, strerror(errno));
73 status = sendto(sockFD, buf, len, 0,
76 printf("sendto(): %s\n", strerror(errno));
115 status = sendto(sockFD, buf, status, 0,
118 printf("sendto(): %x (%s)\n", errno, strerror(errno));
H A Dunix_dgram_test.cpp215 status = sendto(sock, "test1", 5, 0, (struct sockaddr*)&addr1, sizeof(addr1));
217 REPORT_ERROR("sendto() failed: %s\n", strerror(errno));
253 status = sendto(sock2, "test3", 5, 0, (struct sockaddr*)&addr1, sizeof(addr1));
255 REPORT_ERROR("sendto() succeeded unexpectedly\n");
259 REPORT_ERROR("sendto() failed with unexpected error: %s\n", strerror(errno));
379 status = sendto(sock_client, "t", 1, 0, (struct sockaddr*)&addr, sizeof(addr));
381 REPORT_ERROR("sendto() failed: %s\n", strerror(errno));
449 status = sendto(sock, "test", 4, 0, (struct sockaddr*)&addr1, sizeof(addr1));
459 status = sendto(sock1, "test", 4, 0, (struct sockaddr*)&addr, sizeof(addr));
471 status = sendto(sock
[all...]
/haiku/src/tests/kits/net/
H A Dlink_echo.cpp52 if (sendto(fd, buffer, length, 0, server, server.Length()) < 0) {
53 fprintf(stderr, "%s: sendto(): %s\n", kProgramName,
99 if (sendto(fd, buffer, bytesRead, 0, client, client.Length()) < 0) {
100 fprintf(stderr, "%s: sendto(): %s\n", kProgramName,
/haiku/src/bin/debug/strace/
H A Dnetwork.cpp114 Syscall *sendto = get_syscall("_kern_sendto"); local
115 sendto->GetParameter("flags")->SetHandler(new FlagsTypeHandler(kRecvFlags));
/haiku/src/tests/kits/bluetooth/l2capClient/
H A Dl2capClient.cpp87 len = sendto(sock, string, strlen(string) + 1 /*\0*/, 0,
/haiku/headers/private/net/
H A Dnet_stack_interface.h48 ssize_t (*sendto)(net_socket* socket, const void* data, size_t length, member in struct:net_stack_interface_module_info
/haiku/src/tests/system/network/icmp/
H A Dbig_datagram.cpp143 int bytesSent = sendto(sockfd, datagram, size, 0, ai->ai_addr,
/haiku/src/preferences/time/
H A Dntp.cpp152 if (sendto(connection, reinterpret_cast<char*>(&message),
/haiku/headers/posix/sys/
H A Dsocket.h183 ssize_t sendto(int socket, const void *message, size_t length, int flags,
/haiku/src/tools/remote_disk_server/
H A Dremote_disk_server.cpp284 ssize_t bytesSent = sendto(fSocket, reply, size, 0,
/haiku/src/system/libnetwork/
H A Dsocket.cpp290 sendto(int socket, const void *data, size_t length, int flags, function
/haiku/src/tests/system/network/multicast/
H A Dmulticat.c151 if (sendto(sock, buffer, red + 1, 0, (struct sockaddr *) &saddr,
/haiku/src/add-ons/kernel/drivers/disk/virtual/remote_disk/
H A DRemoteDisk.cpp403 bytesSent = sendto(fSocket, request, size, 0,
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_send.c942 if (sendto(s, buf, buflen, 0, nsap, nsaplen) !=
944 Aerror(statp, stderr, "sendto", errno, nsap, nsaplen);
954 if (sendto(s, buf, buflen, 0, nsap, nsaplen) != (ssize_t)buflen)
956 Aerror(statp, stderr, "sendto", errno, nsap, nsaplen);

Completed in 234 milliseconds

12