Home | History | Annotate | Download | only in libmedia

Lines Matching full:endpoint

296     status_t setRetransmitEndpoint(const struct sockaddr_in* endpoint)
302 if (NULL != endpoint) {
303 data.writeInt32(sizeof(*endpoint));
304 data.write(endpoint, sizeof(*endpoint));
325 status_t getRetransmitEndpoint(struct sockaddr_in* endpoint)
337 data.read(endpoint, sizeof(*endpoint));
512 struct sockaddr_in endpoint;
514 if (amt == sizeof(endpoint)) {
515 data.read(&endpoint, sizeof(struct sockaddr_in));
516 reply->writeInt32(setRetransmitEndpoint(&endpoint));
526 struct sockaddr_in endpoint;
527 status_t res = getRetransmitEndpoint(&endpoint);
530 reply->write(&endpoint, sizeof(endpoint));