Searched refs:endpoint (Results 1 - 15 of 15) sorted by relevance

/external/qemu/
H A Dcharpipe.h23 /* create a buffering character driver for a given endpoint. The result will buffer
24 * anything that is sent to it but cannot be sent to the endpoint immediately.
25 * On the other hand, if the endpoint calls can_read() or read(), these calls
28 extern CharDriverState* qemu_chr_open_buffer( CharDriverState* endpoint );
H A Dcharpipe.c257 ** the data that is sent to a given endpoint CharDriverState
261 ** by the endpoint will be passed to the CharBuffer's corresponding
269 CharDriverState* endpoint; /* NULL if closed */ member in struct:CharBuffer
285 cbuf->endpoint = NULL;
287 if (cbuf->endpoint != NULL) {
288 qemu_chr_close(cbuf->endpoint);
289 cbuf->endpoint = NULL;
297 CharDriverState* peer = cbuf->endpoint;
348 CharDriverState* peer = cbuf->endpoint;
391 qemu_chr_add_handlers( cbuf->endpoint,
[all...]
H A Dusb-linux.c95 /* endpoint association data */
450 urb->endpoint = p->devep | 0x80;
452 urb->endpoint = p->devep;
455 ret = ioctl(s->fd, USBDEVFS_CLEAR_HALT, &urb->endpoint);
458 urb->endpoint, errno);
482 dprintf("husb: data submit. ep 0x%x len %u aurb %p\n", urb->endpoint, p->len, aurb);
596 urb->endpoint = p->devep;
803 /* get the desired configuration, interface, and endpoint descriptors
872 dprintf("usb_host: malformed endpoint type\n");
/external/kernel-headers/original/linux/
H A Dusb.h46 * struct usb_host_endpoint - host-side endpoint descriptor and queue
47 * @desc: descriptor for this endpoint, wMaxPacketSize in native byteorder
48 * @urb_list: urbs queued to this endpoint; maintained by usbcore
52 * @extra: descriptors following this endpoint in the configuration
55 * USB requests are always queued to a given endpoint, identified by a
75 struct usb_host_endpoint *endpoint; member in struct:usb_host_interface
93 * endpoint configurations. They will be in no particular order.
113 * or by a product's vendor. The (default) control endpoint is part of
174 * set of endpoint configurations. They will be in no particular order.
333 unsigned int toggle[2]; /* one bit for each endpoint
1149 __create_pipe(struct usb_device *dev, unsigned int endpoint) argument
[all...]
H A Dusbdevice_fs.h97 unsigned char endpoint; member in struct:usbdevfs_urb
131 unsigned char endpoint; member in struct:usbdevfs_urb32
/external/ppp/pppd/
H A Dlcp.h58 #define CI_EPDISC 19 /* endpoint discriminator */
88 bool neg_endpoint; /* negotiate endpoint discriminator */
96 struct epdisc endpoint; /* endpoint discriminator */ member in struct:lcp_options
H A Dlcp.c77 bool noendpoint = 0; /* don't send/accept endpoint discriminator */
178 { "endpoint", o_special, (void *) setendpoint,
184 "Don't send or accept multilink endpoint discriminator", 1 },
314 if (str_to_epdisc(&lcp_wantoptions[0].endpoint, *argv)) {
318 option_error("Can't parse '%s' as an endpoint discriminator", *argv);
328 printer(arg, "%s", epdisc_to_str(&lcp_wantoptions[0].endpoint));
676 (go->neg_endpoint? CILEN_CHAR + go->endpoint.length: 0));
753 ADDCIENDP(CI_EPDISC, go->neg_endpoint, go->endpoint.class,
754 go->endpoint.value, go->endpoint
[all...]
H A Dmultilink.c44 bool endpoint_specified; /* user gave explicit endpoint discriminator */
95 /* get a default endpoint value */
96 wo->neg_endpoint = get_default_epdisc(&wo->endpoint);
122 /* XXX should check the peer_authname and ho->endpoint
156 l += 3 * ho->endpoint.length + 8;
169 epdisc_to_str(&ho->endpoint));
466 * epdisc_to_str - make a printable string from an endpoint discriminator.
/external/protobuf/python/google/protobuf/internal/
H A Ddecoder.py190 (endpoint, pos) = local_DecodeVarint(buffer, pos)
191 endpoint += pos
192 if endpoint > end:
194 while pos < endpoint:
197 if pos > endpoint:
/external/iproute2/doc/
H A Dip-tunnels.tex90 packets to another endpoint is not hidden. If you dislike this, or if you
117 \item {\bf In 2.0} you set remote tunnel endpoint address with
121 the interfaces, namely it sets not tunnel endpoint,
124 rather than via Internet. Actual tunnel endpoint address \verb|A|
173 \verb|remote <D>| sets remote endpoint of the tunnel to IP
214 address pointing to desired endpoint. F.e.\
245 not be able to escape to another device, when route to endpoint changes.
H A Dip-cref.tex586 --- the address of the remote endpoint for pointopoint interfaces.
2381 --- set the remote endpoint of the tunnel.
2406 not be able to escape to another device when the route to endpoint changes.
2496 transmitted because there is no IP route to the remote endpoint.
/external/webkit/WebCore/rendering/
H A DRenderBlockLineLayout.cpp102 InlineIterator& endpoint = midpoints[lineMidpointState.numMidpoints - 2]; local
104 InlineIterator currpoint = endpoint;
110 if (endpoint.obj->style()->collapseWhiteSpace()) {
111 if (endpoint.obj->isText()) {
112 // Don't shave a character off the endpoint if it was from a soft hyphen.
113 RenderText* textObj = toRenderText(endpoint.obj);
114 if (endpoint.pos + 1 < textObj->textLength()) {
115 if (textObj->characters()[endpoint.pos+1] == softHyphen)
123 endpoint.pos--;
166 // need to go ahead and append a run with our endpoint
[all...]
/external/v8/src/
H A Dobjects.cc4314 int endpoint = length - kStepSize; local
4316 for (; i <= endpoint; i += kStepSize) {
/external/sqlite/dist/
H A Dsqlite3.c.orig[all...]
H A Dsqlite3.c58981 FilePoint endpoint; /* Pointer to the end of the file */ member in struct:MemJournal
[all...]

Completed in 2415 milliseconds