/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
KernelAdapter.java | 39 import com.jme3.network.kernel.Endpoint; 53 * to the supplied message dispatcher and new endpoint 77 private Map<Endpoint, MessageProtocol> messageBuffers = new ConcurrentHashMap<Endpoint,MessageProtocol>(); 104 public void broadcast( Filter<? super Endpoint> filter, ByteBuffer data, boolean reliable, 118 protected void reportError( Endpoint p, Object context, Exception e ) 122 log.log( Level.SEVERE, "Unhandled error, endpoint:" + p + ", context:" + context, e ); 124 // In lieu of other options, at least close the endpoint 128 protected HostedConnection getConnection( Endpoint p ) 133 protected void connectionClosed( Endpoint p [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/ |
Kernel.java | 50 * more easily process the envelopes and endpoint events. 68 * kernel that match the specified endpoint filter.. 75 public void broadcast( Filter<? super Endpoint> filter, ByteBuffer data, boolean reliable, 90 * Removes and returnsn one endpoint event from the event queue or 91 * null if there are no endpoint events.
|
Envelope.java | 44 private Endpoint source; 53 public Envelope( Endpoint source, byte[] data, boolean reliable ) 60 public Endpoint getSource()
|
AbstractKernel.java | 58 * Contains the pending endpoint events waiting for the caller 103 * Removes and returnsn one endpoint event from the event queue or 104 * null if there are no endpoint events.
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/ |
UdpEndpoint.java | 35 import com.jme3.network.kernel.Endpoint; 46 * Endpoint implementation that encapsulates the 53 public class UdpEndpoint implements Endpoint 94 throw new KernelException( "Error closing endpoint for socket:" + socket, e ); 118 throw new KernelException( "Endpoint is not connected:" + this );
|
/external/bluetooth/bluez/doc/ |
media-api.txt | 11 Methods void RegisterEndpoint(object endpoint, dict properties) 23 UUID of the profile which the endpoint 29 endpoint implements. The values should 43 void UnregisterEndpoint(object endpoint) 77 unregisters the endpoint. An endpoint can use it to do 79 endpoint, because when this method gets called it has
|
/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([]))
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/ |
NioEndpoint.java | 35 import com.jme3.network.kernel.Endpoint; 45 * Endpoint implementation that encapsulates the 52 public class NioEndpoint implements Endpoint 97 throw new KernelException( "Error closing endpoint for socket:" + socket, e ); 123 // We create a ByteBuffer per endpoint since we 124 // use it to track the data sent to each endpoint 172 throw new KernelException( "Endpoint has been closed:" + socket );
|
SelectorKernel.java | 115 public void broadcast( Filter<? super Endpoint> filter, ByteBuffer data, boolean reliable, 134 // Give it the data... but let each endpoint track their 147 // Note: we purposely do NOT put the key in the endpoint. 154 // Enqueue an endpoint event for the listeners 165 // Enqueue an endpoint event for the listeners 184 //log.log( Level.INFO, "Closing endpoint:{0}.", p ); 231 * the endpoint -> key mapping internally. 318 // And now create a new endpoint 328 //log.log( Level.INFO, "Endpoint already closed:{0}.", p ); 331 log.log( Level.FINE, "Endpoint keys size:{0}", endpointKeys.size() ) [all...] |
/external/guava/guava/src/com/google/common/collect/ |
GeneralRange.java | 64 * Returns everything above the endpoint relative to the specified comparator, with the specified 65 * endpoint behavior. 67 static <T> GeneralRange<T> downTo(Comparator<? super T> comparator, @Nullable T endpoint, 69 return new GeneralRange<T>(comparator, true, endpoint, boundType, false, null, OPEN); 73 * Returns everything below the endpoint relative to the specified comparator, with the specified 74 * endpoint behavior. 76 static <T> GeneralRange<T> upTo(Comparator<? super T> comparator, @Nullable T endpoint, 78 return new GeneralRange<T>(comparator, false, null, OPEN, true, endpoint, boundType); 83 * specified endpoint behavior.
|
/external/kernel-headers/original/linux/ |
msm_audio.h | 94 * SND endpoint. On input, the .id field contains the number of the 95 * endpoint, and on exit it contains the SND index, while .name contains 96 * the description of the endpoint.
|
/cts/tests/tests/webkitsecurity/assets/ |
innerHTML-selection-crash.html | 1 <p>This tests that calling innerHTML doesn't crash when the selection endpoint is inside a text field's shadow DOM tree.</p>
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/ |
CHANGELOG.txt | 14 * Increased size of example endpoint input field and added note about
|
/external/chromium/chrome/browser/ui/cocoa/download/ |
download_shelf_view.mm | 44 NSPoint endPoint = 49 toPoint:endPoint
|
/external/chromium/net/base/ |
ip_endpoint.h | 16 // An IPEndPoint represents the address of a transport endpoint: 24 IPEndPoint(const IPEndPoint& endpoint);
|
ip_endpoint.cc | 25 IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) { 26 address_ = endpoint.address_; 27 port_ = endpoint.port_;
|
net_util_win.cc | 113 IPEndPoint endpoint; local 114 if (endpoint.FromSockAddr(address->Address.lpSockaddr, 117 networks->push_back(NetworkInterface(name, endpoint.address()));
|
/development/samples/USB/MissileLauncher/src/com/android/missilelauncher/ |
MissileLauncherActivity.java | 121 // device should have one endpoint 123 Log.e(TAG, "could not find endpoint"); 126 // endpoint should be of type interrupt 129 Log.e(TAG, "endpoint is not interrupt type"); 157 // Send command via a control request on endpoint zero 222 // queue a request on the interrupt endpoint
|
/external/ipsec-tools/src/racoon/doc/ |
README.gssapi | 37 GSS endpoint attribute will be specified in the first SA sent. 38 However, if the initiator does specify a GSS endpoint attribute, 39 racoon will always respond with its own GSS endpoint name 64 insert the (variable-length) GSS endpoint name attribute. 85 the config file must be used, as Windows 2000 expects the GSS endpoint 87 because the spec describes the GSS endpoint name sent by W2K as
|
/external/libusb-compat/libusb/ |
core.c | 359 if (iface->endpoint) { 362 clear_endpoint_descriptor(iface->endpoint + i); 363 free(iface->endpoint); 420 dest->endpoint = malloc(alloc_size); 421 if (!dest->endpoint) 423 memset(dest->endpoint, 0, alloc_size); 426 int r = copy_endpoint_descriptor(dest->endpoint + i, &src->endpoint[i]); 736 usbi_dbg("endpoint %x", ep); 751 usbi_dbg("endpoint %x size %d timeout %d", ep, size, timeout) [all...] |
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
PathOpenVG.cpp | 205 void Path::addQuadCurveTo(const FloatPoint& controlPoint, const FloatPoint& endPoint) 208 const VGfloat pathData[] = { controlPoint.x(), controlPoint.y(), endPoint.x(), endPoint.y() }; 214 m_path->m_currentPoint = endPoint; 217 void Path::addBezierCurveTo(const FloatPoint& controlPoint1, const FloatPoint& controlPoint2, const FloatPoint& endPoint) 220 const VGfloat pathData[] = { controlPoint1.x(), controlPoint1.y(), controlPoint2.x(), controlPoint2.y(), endPoint.x(), endPoint.y() }; 226 m_path->m_currentPoint = endPoint; 259 FloatPoint endPoint = FloatPoint(point1.x() + v21.width() * rate, 280 radius, radius, 0, endPoint.x(), endPoint.y( [all...] |
/external/libusb/libusb/ |
descriptor.c | 71 static void clear_endpoint(struct libusb_endpoint_descriptor *endpoint) 73 if (endpoint->extra) 74 free((unsigned char *) endpoint->extra); 78 struct libusb_endpoint_descriptor *endpoint, unsigned char *buffer, 103 usbi_parse_descriptor(buffer, "bbbbwbbb", endpoint, host_endian); 105 usbi_parse_descriptor(buffer, "bbbbwb", endpoint, host_endian); 139 endpoint->extra = NULL; 140 endpoint->extra_length = 0; 145 endpoint->extra = extra; 147 endpoint->extra_length = 0 272 struct libusb_endpoint_descriptor *endpoint; local [all...] |
/external/kernel-headers/original/linux/usb/ |
functionfs.h | 19 /* Descriptor of an non-audio endpoint */ 132 /* Endpoint ioctls */ 139 * THIS returns how many bytes are "unclaimed" in the endpoint fifo 147 /* resets endpoint halt+toggle; used to implement set_interface. 162 * Returns real bEndpointAddress of an endpoint. If function is not
|
/frameworks/base/services/jni/ |
com_android_server_UsbHostManager.cpp | 89 struct usb_endpoint_descriptor *endpoint = (struct usb_endpoint_descriptor *)desc; local 92 endpointValues.add(endpoint->bEndpointAddress); 93 endpointValues.add(endpoint->bmAttributes); 94 endpointValues.add(__le16_to_cpu(endpoint->wMaxPacketSize)); 95 endpointValues.add(endpoint->bInterval);
|
/external/chromium/net/socket/ |
tcp_server_socket_unittest.cc | 47 IPEndPoint endpoint; local 48 EXPECT_TRUE(endpoint.FromSockAddr( 50 return endpoint;
|