Searched refs:Send (Results 51 - 75 of 98) sorted by relevance

1234

/haiku/src/system/boot/loader/net/
H A DIP.cpp122 // Send
124 IPService::Send(ip_addr_t destination, uint8 protocol, ChainBuffer *buffer) function in class:IPService
126 TRACE(("IPService::Send(to: %08lx, proto: %lu, %lu bytes)\n", destination,
160 return fEthernet->Send(targetMAC, ETHERTYPE_IP, &headerBuffer);
H A DARP.cpp180 return fEthernet->Send(mac, ETHERTYPE_ARP, &headerBuffer);
H A DTCP.cpp569 status_t error = fTCPService->Send(fPort, fRemoteAddress, fRemotePort,
591 status_t error = fTCPService->Send(fPort, fRemoteAddress, fRemotePort,
628 TRACE_QUEUE("TCP: Send queue is non-empty.\n");
630 TRACE_QUEUE("TCP: Send queue is empty.\n");
784 TCPService::Send(uint16 sourcePort, ip_addr_t destinationAddress, function in class:TCPService
789 TRACE("TCPService::Send(): seq = %lu, ack = %lu\n",
812 return fIPService->Send(destinationAddress, IPPROTO_TCP, &headerBuffer);
H A DRemoteDisk.cpp277 status_t error = socket->Send(serverAddress, serverPort, request, size);
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DRequestChannel.cpp49 error = fChannel->Send(buffer, size);
63 status_t error = fChannel->Send(fBuffer, fBytesWritten);
/haiku/src/system/boot/platform/openfirmware/
H A Dnetwork.cpp44 virtual ssize_t Send(const void *buffer, size_t size);
246 OFEthernetInterface::Send(const void *buffer, size_t size) function in class:OFEthernetInterface
248 TRACE(("OFEthernetInterface::Send(%p, %lu)\n", buffer, size));
/haiku/src/add-ons/kernel/network/ppp/ipcp/
H A DProtocol.cpp231 IPCP::Send(net_buffer *packet, uint16 protocolNumber) function in class:IPCP
233 TRACE("IPCP: Send(0x%X)\n", protocolNumber);
244 ERROR("IPCP: Send() failed because of wrong state or protocol number!\n");
1394 return Send(request.ToNetBuffer(Interface().MRU())) == B_OK;
1470 return Send(packet) == B_OK;
1498 return Send(packet) == B_OK;
1527 return Send(packet) == B_OK;
1559 return Send(reply) == B_OK;
1583 return Send(packet) == B_OK;
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPStateMachine.cpp208 return LCP().Send(packet) == B_OK;
246 return LCP().Send(packet) == B_OK;
1750 return LCP().Send(request.ToNetBuffer(Interface().MRU())) == B_OK;
1782 TRACE("%s::%s: LCP().Send\n", __FILE__, __func__);
1783 return LCP().Send(packet) == B_OK;
1808 return LCP().Send(packet) == B_OK;
1844 return LCP().Send(buffer) == B_OK;
1868 return LCP().Send(reply) == B_OK;
1901 return LCP().Send(packet) == B_OK;
1923 return LCP().Send(reques
[all...]
/haiku/src/kits/network/libnetapi/
H A DNetEndpoint.cpp573 BNetEndpoint::Send(const void* buffer, size_t length, int flags) function in class:BNetEndpoint
587 BNetEndpoint::Send(BNetBuffer& buffer, int flags) function in class:BNetEndpoint
589 return Send(buffer.Data(), buffer.Size(), flags);
/haiku/headers/private/kernel/boot/net/
H A DTCP.h116 status_t Send(uint16 sourcePort, ip_addr_t destinationAddress,
/haiku/src/add-ons/kernel/file_systems/userlandfs/private/
H A DPort.cpp151 // Send
153 Port::Send(const void* message, int32 size) function in class:Port
H A DRequestPort.cpp99 RETURN_ERROR(fPort.Send(allocator->GetRequest(),
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRequest.cpp17 Request::Send(Cookie* cookie) function in class:Request
H A DFileInfo.cpp189 status_t result = request.Send();
H A DNFS4Object.cpp210 status_t result = request.Send();
H A DRPCCallbackServer.cpp317 connection->Send(reply->Stream().Buffer(),
333 connection->Send(reply->Stream().Buffer(),
H A DConnection.cpp381 ConnectionStream::Send(const void* buffer, uint32 size) function in class:ConnectionStream
415 ConnectionPacket::Send(const void* buffer, uint32 size) function in class:ConnectionPacket
/haiku/src/apps/mail/
H A DMailWindow.h98 status_t Send(bool now);
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPInterface.h231 virtual status_t Send(net_buffer *packet, uint16 protocolNumber);
236 // This must not block KPPPDevice::Send()!
/haiku/src/preferences/notifications/
H A DPrefletWin.cpp261 notification.Send();
/haiku/src/bin/
H A Dnotify.cpp184 "Send notifications to notification_server.\n"
272 status_t ret = notification.Send(fTimeout);
/haiku/src/apps/softwareupdater/
H A DCheckManager.cpp317 notification.Send();
/haiku/src/add-ons/kernel/network/ppp/ppp/
H A Dppp.cpp206 // store buffer->size in case buffer freed in KPPP_Interface->Send
207 status_t status = device->KPPP_Interface->Send(buffer, 0x0021); // IP_PROTOCOL 0x0021
210 dprintf("KPPP_Interface->Send(buffer, 0x0021 IP) fail\n");
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.cpp469 status = Send(to, from, &file);
643 // Send login name as base64
655 // Send password as base64
716 SMTPProtocol::Send(const char* to, const char* from, BPositionIO *message) function in class:SMTPProtocol
748 // Send the message data. Convert lines starting with a period to start
790 // Send data up to the CRLF, and include the period too.
817 // Send most of the buffer, except a few characters to overlap with
/haiku/src/apps/webpositive/
H A DDownloadProgressView.cpp645 success.Send();
666 success.Send();

Completed in 219 milliseconds

1234