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

1 2 3 4 5 6 7 8 91011>>

  /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.
DatagramSocketImpl.java 24 * The abstract superclass for datagram and multicast socket implementations.
39 * Constructs an unbound datagram socket implementation.
46 * Binds the datagram socket to the given localhost/port. Sockets must be
74 * Gets the {@code FileDescriptor} of this datagram socket, which is invalid
137 * datagram packets.
184 * Receives data and stores it in the supplied datagram packet {@code pack}.
190 * the datagram packet container to fill in the received data.
197 * Sends the given datagram packet {@code pack}. The packet contains the
201 * the datagram packet to be sent.
242 * if the datagram socket cannot be connected to th
    [all...]
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...]
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.
DatagramSocket.java 58 * Constructs a UDP datagram socket which is bound to any available port on
69 * Constructs a UDP datagram socket which is bound to the specific port
84 * Constructs a UDP datagram socket which is bound to the specific local
107 * Closes this UDP datagram socket and all possibly associated channels.
117 * Disconnects this UDP datagram socket from the remote host. This method
145 * which this UDP datagram socket is connected.
348 * a new datagram socket implementation.
365 * Constructs a new {@code DatagramSocket} using the specific datagram
462 * Connects this datagram socket to the address and port specified by {@code peer}.
495 * Connects this datagram socket to the specific {@code address} and {@code port}
    [all...]
  /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/chromium_org/net/udp/
datagram_socket.h 15 // 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 36 * sender. Incoming datagram is interpreted as a String. It is uppercased
94 "Creating datagram reflector failed", ex);
100 * Converts a given datagram packet's contents to a String.
107 * Converts a given String into a datagram packet.
116 * 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/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 */
  /frameworks/av/include/media/stagefright/foundation/
ANetworkSession.h 32 // Helper class to manage a number of live sockets (datagram and stream-based)
  /system/core/libcutils/
socket_local_server.c 89 /** Open a server-side UNIX domain datagram socket in the Linux non-filesystem
  /frameworks/av/media/libstagefright/foundation/
ANetworkSession.cpp 81 DATAGRAM,
265 || (mState == DATAGRAM && !mOutFragments.empty()));
269 if (mState == DATAGRAM) {
552 if (mState == DATAGRAM) {
558 const sp<ABuffer> &datagram = frag.mBuffer; local
562 n = send(mSocket, datagram->data(), datagram->size(), 0);
589 notifyError(true /* send */, err, "Send datagram failed.");
593 ALOGE("Send datagram failed, %d/%d retries left",
693 CHECK(mState == CONNECTED || mState == DATAGRAM);
    [all...]
  /external/chromium_org/remoting/protocol/
content_description.cc 43 { ChannelConfig::TRANSPORT_DATAGRAM, "datagram" },
135 // <event transport="datagram" version="1" />
  /external/kernel-headers/original/linux/
in.h 33 IPPROTO_UDP = 17, /* User Datagram Protocol */
35 IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
  /prebuilts/gcc/linux-x86/host/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 */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
in.h 33 IPPROTO_UDP = 17, /* User Datagram Protocol */
35 IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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...]

Completed in 592 milliseconds

1 2 3 4 5 6 7 8 91011>>