Searched defs:UDPSocket (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/net/udp/
H A Dudp_socket.h18 // UDPSocket
37 typedef UDPSocketWin UDPSocket; typedef in namespace:net
39 typedef UDPSocketLibevent UDPSocket;
/external/chromium_org/ppapi/cpp/
H A Dudp_socket.h21 /// The <code>UDPSocket</code> class provides UDP socket operations.
28 class UDPSocket : public Resource { class in namespace:pp
30 /// Default constructor for creating an is_null() <code>UDPSocket</code>
32 UDPSocket();
34 /// A constructor used to create a <code>UDPSocket</code> object.
38 explicit UDPSocket(const InstanceHandle& instance);
44 UDPSocket(PassRef, PP_Resource resource);
46 /// The copy constructor for <code>UDPSocket</code>.
48 /// @param[in] other A reference to another <code>UDPSocket</code>.
49 UDPSocket(cons
[all...]
H A Dudp_socket.cc23 UDPSocket::UDPSocket() { function in class:pp::UDPSocket
26 UDPSocket::UDPSocket(const InstanceHandle& instance) { function in class:pp::UDPSocket
33 UDPSocket::UDPSocket(PassRef, PP_Resource resource) function in class:pp::UDPSocket
37 UDPSocket::UDPSocket(const UDPSocket& other) : Resource(other) { function in class:pp::UDPSocket
40 UDPSocket
[all...]
/external/chromium_org/extensions/browser/api/socket/
H A Dudp_socket.h16 class UDPSocket : public Socket { class in namespace:extensions
18 explicit UDPSocket(const std::string& owner_extension_id);
19 virtual ~UDPSocket();
66 net::UDPSocket socket_;
80 class ResumableUDPSocket : public UDPSocket {
H A Dudp_socket.cc29 UDPSocket::UDPSocket(const std::string& owner_extension_id) function in class:extensions::UDPSocket
36 UDPSocket::~UDPSocket() { Disconnect(); }
38 void UDPSocket::Connect(const std::string& address,
59 int UDPSocket::Bind(const std::string& address, int port) {
70 void UDPSocket::Disconnect() {
79 void UDPSocket::Read(int count, const ReadCompletionCallback& callback) {
107 &UDPSocket::OnReadComplete, base::Unretained(this), io_buffer));
114 int UDPSocket
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_udp_socket.cc16 REGISTER_TEST_CASE(UDPSocket); variable
58 bool udp_socket_is_available = pp::UDPSocket::IsAvailable();
100 std::string TestUDPSocket::SetBroadcastOptions(pp::UDPSocket* socket) {
117 std::string TestUDPSocket::BindUDPSocket(pp::UDPSocket* socket,
127 pp::UDPSocket* socket,
150 std::string TestUDPSocket::ReadSocket(pp::UDPSocket* socket,
167 std::string TestUDPSocket::PassMessage(pp::UDPSocket* target,
168 pp::UDPSocket* source,
189 pp::UDPSocket server_socket(instance_), client_socket(instance_);
213 pp::UDPSocket server
[all...]
/external/mdnsresponder/mDNSCore/
H A DmDNSEmbeddedAPI.h445 typedef struct UDPSocket_struct UDPSocket; typedef in typeref:struct:UDPSocket_struct
1538 UDPSocket *LocalSocket;
1912 UDPSocket *NATMcastRecvskt; // For receiving NAT-PMP AddrReply multicasts from router on port 5350
1921 UDPSocket *SSDPSocket; // For SSDP request/response
1938 UDPSocket *SPSSocket;
2546 mDNSInterfaceID InterfaceID, UDPSocket *src, const mDNSAddr *dst, mDNSIPPort dstport);
2628 extern UDPSocket *mDNSPlatformUDPSocket(mDNS *const m, const mDNSIPPort requestedport);
2629 extern void mDNSPlatformUDPClose(UDPSocket *sock);

Completed in 148 milliseconds