Home | History | Annotate | Download | only in android

Lines Matching defs:endpoint

257  ** 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 */
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,
400 charbuffer_init( CharBuffer* cbuf, CharDriverState* endpoint )
406 cbuf->endpoint = endpoint;
421 qemu_chr_open_buffer( CharDriverState* endpoint )
426 if (endpoint == NULL)
430 if (cbuf->endpoint == NULL)
437 charbuffer_init(cbuf, endpoint);
466 if (cb->endpoint != NULL)