/libcore/luni/src/main/java/java/net/ |
DatagramSocketImplFactory.java | 21 * This interface defines a factory for datagram socket implementations. It is 22 * used by the class {@code DatagramSocket} to create a new datagram socket 32 * @return the new datagram socket implementation.
|
DatagramPacket.java | 21 * This class represents a datagram packet which contains data either to be sent 121 * Gets the sender or destination IP address of this datagram packet. 123 * @return the address from where the datagram was received or to which it 131 * Gets the data of this datagram packet. 140 * Gets the length of the data stored in this datagram packet. 149 * Gets the offset of the data stored in this datagram packet. 158 * Gets the port number of the target or sender host of this datagram 178 * Sets the data buffer for this datagram packet. 191 * Sets the data buffer for this datagram packet. The length of the datagram [all...] |
DatagramSocketImpl.java | 25 * The abstract superclass for datagram and multicast socket implementations. 40 * Constructs an unbound datagram socket implementation. 47 * Binds the datagram socket to the given localhost/port. Sockets must be 75 * Gets the {@code FileDescriptor} of this datagram socket, which is invalid 145 * datagram packets. 192 * Receives data and stores it in the supplied datagram packet {@code pack}. 198 * the datagram packet container to fill in the received data. 205 * Sends the given datagram packet {@code pack}. The packet contains the 209 * the datagram packet to be sent. 250 * if the datagram socket cannot be connected to th [all...] |
DatagramSocket.java | 56 * Constructs a UDP datagram socket which is bound to any available port on 67 * Constructs a UDP datagram socket which is bound to the specific port 82 * Constructs a UDP datagram socket which is bound to the specific local 105 * Closes this UDP datagram socket and all possibly associated channels. 115 * Disconnects this UDP datagram socket from the remote host. This method 143 * which this UDP datagram socket is connected. 154 * address of this UDP datagram socket. 351 * a new datagram socket implementation. 368 * Constructs a new {@code DatagramSocket} using the specific datagram 465 * Connects this datagram socket to the address and port specified by {@code peer} [all...] |
SocketOptions.java | 86 * <p>For datagram sockets, it is implementation-defined whether packets larger than 95 * <p>For datagram sockets, packets larger than this value will be discarded. 125 * This boolean option can be used to enable broadcasting on datagram sockets.
|
/libcore/luni/src/main/java/java/nio/channels/ |
DatagramChannel.java | 29 * abstraction of a datagram socket. The {@code socket} method of this class can 33 * A datagram channel is open but not connected when created with the 39 * Datagram channels are thread-safe; only one thread can read or write at the 56 * Creates an opened and not-connected datagram channel. 70 * Gets the valid operations of this channel. Datagram channels support read 83 * Returns the related datagram socket of this channel, which does not 145 * Gets a datagram from this channel. 147 * This method transfers a datagram from the channel into the target byte 148 * buffer. If this channel is in blocking mode, it waits for the datagram 150 * non-blocking mode and no datagram is available, it returns {@code null [all...] |
/external/chromium/net/udp/ |
datagram_socket.h | 13 // A datagram socket is an interface to a protocol which exchanges
|
/external/tcpdump/ |
ipx.h | 13 #define IPX_SKT_NWLINK_DGM 0x0553 /* NWLink datagram, may contain SMB */
|
ipproto.h | 67 #define IPPROTO_UDP 17 /* user datagram protocol */ 70 #define IPPROTO_DCCP 33 /* datagram congestion control protocol */
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldAndroidDatagramTest.java | 34 * sender. Incoming datagram is interpreted as a String. It is uppercased 92 "Creating datagram reflector failed", ex); 98 * Converts a given datagram packet's contents to a String. 105 * Converts a given String into a datagram packet. 114 * Implements the main part of the Datagram test.
|
/external/nist-sip/java/gov/nist/core/net/ |
NetworkLayer.java | 135 * Constructs a datagram socket and binds it to any available port on the local host machine. 138 * @return the datagram socket 143 * Creates a datagram socket, bound to the specified local address. 148 * @return the datagram socket
|
/external/quake/quake/src/QW/server/ |
sv_send.c | 327 SZ_Write (&client->datagram, sv.multicast.data, sv.multicast.cursize); 580 // add the client specific data to the datagram 588 // copy the accumulated multicast datagram 590 if (client->datagram.overflowed) 591 Con_Printf ("WARNING: datagram overflowed for %s\n", client->name); 593 SZ_Write (&msg, client->datagram.data, client->datagram.cursize); 594 SZ_Clear (&client->datagram); 606 // send the datagram 666 if (sv.datagram.overflowed [all...] |
server.h | 68 sizebuf_t datagram; member in struct:__anon13104 146 // the datagram is written to after every frame, but only cleared 148 sizebuf_t datagram; member in struct:client_s 158 qboolean send_message; // set on frames a datagram arived on
|
/external/quake/quake/src/WinQuake/ |
net_bsd.cpp | 46 "Datagram",
|
net_win.cpp | 46 "Datagram",
|
sv_main.cpp | 84 if (sv.datagram.cursize > MAX_DATAGRAM-16) 86 MSG_WriteByte (&sv.datagram, svc_particle); 87 MSG_WriteCoord (&sv.datagram, org[0]); 88 MSG_WriteCoord (&sv.datagram, org[1]); 89 MSG_WriteCoord (&sv.datagram, org[2]); 97 MSG_WriteChar (&sv.datagram, v); 99 MSG_WriteByte (&sv.datagram, count); 100 MSG_WriteByte (&sv.datagram, color); 135 if (sv.datagram.cursize > MAX_DATAGRAM-16) 161 MSG_WriteByte (&sv.datagram, svc_sound) [all...] |
net_dos.cpp | 46 "Datagram",
|
/frameworks/av/media/libstagefright/wifi-display/ |
ANetworkSession.cpp | 61 DATAGRAM, 220 || (mState == DATAGRAM && !mOutDatagrams.empty())); 224 if (mState == DATAGRAM) { 403 if (mState == DATAGRAM) { 408 const sp<ABuffer> &datagram = *mOutDatagrams.begin(); local 412 n = send(mSocket, datagram->data(), datagram->size(), 0); 431 notifyError(true /* send */, err, "Send datagram failed."); 489 CHECK(mState == CONNECTED || mState == DATAGRAM); 491 if (mState == DATAGRAM) { 494 sp<ABuffer> datagram = new ABuffer(size); local [all...] |
ANetworkSession.h | 32 // Helper class to manage a number of live sockets (datagram and stream-based)
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/ |
UdpConnector.java | 44 * A straight forward datagram socket-based UDP connector 59 * potentially queue one datagram.
|
/external/mdnsresponder/mDNSPosix/ |
mDNSUNP.h | 80 /* 2. the destination addres of the received datagram (from the IP_RECVDSTADDR socket option, and */ 81 /* 3. the index of the interface on which the datagram was received (the IP_RECVIF socket option).' */
|
/frameworks/av/media/libstagefright/rtsp/ |
ARTPConnection.h | 47 // Creates a pair of UDP datagram sockets bound to adjacent ports
|
/external/libppp/src/ |
proto.h | 42 #define PROTO_COMPD 0x00fd /* Compressed datagram */
|
/system/core/libcutils/ |
socket_local_server.c | 89 /** Open a server-side UNIX domain datagram socket in the Linux non-filesystem
|
/external/kernel-headers/original/linux/ |
in.h | 33 IPPROTO_UDP = 17, /* User Datagram Protocol */ 35 IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
|