Home | History | Annotate | Download | only in mDNSShared

Lines Matching refs:rref

1560 	DNSRecordRef rref = cbh->ipc_hdr.client_context.context;
1580 rref->AppCallback(rref->sdr, rref, cbh->cb_flags, cbh->cb_err, rref->AppContext);
1584 rref->AppCallback(rref->sdr, rref, 0, kDNSServiceErr_Unknown, rref->AppContext);
1624 DNSRecordRef rref = NULL;
1664 rref = malloc(sizeof(DNSRecord));
1665 if (!rref) { free(hdr); return kDNSServiceErr_NoMemory; }
1666 rref->AppContext = context;
1667 rref->AppCallback = callBack;
1668 rref->record_index = sdRef->max_index++;
1669 rref->sdr = sdRef;
1670 rref->recnext = NULL;
1671 *RecordRef = rref;
1672 hdr->client_context.context = rref;
1673 hdr->reg_index = rref->record_index;
1677 *p = rref;
1697 DNSRecordRef rref;
1729 rref = malloc(sizeof(DNSRecord));
1730 if (!rref) { free(hdr); return kDNSServiceErr_NoMemory; }
1731 rref->AppContext = NULL;
1732 rref->AppCallback = NULL;
1733 rref->record_index = sdRef->max_index++;
1734 rref->sdr = sdRef;
1735 rref->recnext = NULL;
1736 *RecordRef = rref;
1737 hdr->reg_index = rref->record_index;
1741 *p = rref;