HomeSort by relevance Sort by last modified time
    Searched defs:Endpoint (Results 1 - 4 of 4) sorted by null

  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
Endpoint.java 38 * An abstract endpoint in a Kernel that can be used for
44 public interface Endpoint
47 * Returns an ID that is unique for this endpoint within its
53 * Returns the transport specific remote address of this endpoint
54 * as a string. This may or may not be unique per endpoint depending
60 * Returns the kernel to which this endpoint belongs.
65 * Returns true if this endpoint is currently connected.
71 * by this endpoint.
76 * Closes this endpoint without flushing any of its
82 * Closes this endpoint, optionally flushing any queue
    [all...]
  /external/bluetooth/bluez/test/
simple-endpoint 42 class Endpoint(dbus.service.Object):
91 path = "/test/endpoint"
92 endpoint = Endpoint(bus, path) variable
110 endpoint.default_configuration(MP3_CONFIGURATION)
115 endpoint.default_configuration(MP3_CONFIGURATION)
120 endpoint.default_configuration(dbus.Array([]))
  /frameworks/av/media/libaah_rtp/
aah_tx_sender.h 61 struct Endpoint {
62 Endpoint();
63 Endpoint(uint32_t a, uint16_t p);
64 bool operator<(const Endpoint& other) const;
70 uint16_t registerEndpoint(const Endpoint& endpoint);
71 void unregisterEndpoint(const Endpoint& endpoint);
96 // state maintained on a per-endpoint basis
110 const Endpoint& endpoint)
    [all...]
aah_tx_sender.cpp 130 // Return the next epoch number usable for a newly instantiated endpoint.
144 // Notify the sender that a player has started sending to this endpoint.
146 uint16_t AAH_TXSender::registerEndpoint(const Endpoint& endpoint) {
149 EndpointState* eps = mEndpointMap.valueFor(endpoint);
154 mEndpointMap.add(endpoint, eps);
157 // if this is the first registered endpoint, then send a message to start
173 // Notify the sender that a player has ceased sending to this endpoint.
174 // An endpoint's state can not be deleted until all of the endpoint'
    [all...]

Completed in 66 milliseconds