HomeSort by relevance Sort by last modified time
    Searched full:datagram (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /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
122 * Gets the sender or destination IP address of this datagram packet.
124 * @return the address from where the datagram was received or to which it
132 * Gets the data of this datagram packet.
141 * Gets the length of the data stored in this datagram packet.
150 * Gets the offset of the data stored in this datagram packet.
159 * Gets the port number of the target or sender host of this datagram
179 * Sets the data buffer for this datagram packet.
192 * 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.
354 * a new datagram socket implementation.
371 * Constructs a new {@code DatagramSocket} using the specific datagram
468 * 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:__anon10619
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/base/media/libstagefright/rtsp/
ARTPConnection.h 47 // Creates a pair of UDP datagram sockets bound to adjacent ports
  /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 */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
in.h 33 IPPROTO_UDP = 17, /* User Datagram Protocol */
35 IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageChannel.java 163 * Constructor - takes a datagram packet and a stack structure Extracts the
164 * address of the other from the datagram packet and stashes away the
197 * is the incoming datagram packet.
311 * Process an incoming datagram
314 * is the incoming datagram packet.
    [all...]
UDPMessageProcessor.java 38 * Sit in a loop and handle incoming udp datagram messages. For each Datagram
109 // Create a new datagram socket.
  /bionic/libc/include/net/
ethertypes.h 101 #define ETHERTYPE_NBPVCD 0x3C00 /* 3Com NBP virtual circuit datagram (like XNS SPP) not registered */
102 #define ETHERTYPE_NBPSCD 0x3C01 /* 3Com NBP System control datagram not registered */
108 #define ETHERTYPE_NBPDG 0x3C07 /* 3Com NBP Datagram (like XNS IDP) not registered */
109 #define ETHERTYPE_NBPDGB 0x3C08 /* 3Com NBP Datagram broadcast not registered */
if_ieee1394.h 80 u_int16_t ifh_dgl; /* datagram label */

Completed in 904 milliseconds

1 2 3 4 5 6 7 8