Lines Matching full:rref
1570 DNSRecordRef rref = cbh->ipc_hdr.client_context.context;
1590 rref->AppCallback(rref->sdr, rref, cbh->cb_flags, cbh->cb_err, rref->AppContext);
1594 rref->AppCallback(rref->sdr, rref, 0, kDNSServiceErr_Unknown, rref->AppContext);
1634 DNSRecordRef rref = NULL;
1674 rref
1675 if (!rref) { free(hdr); return kDNSServiceErr_NoMemory; }
1676 rref->AppContext = context;
1677 rref->AppCallback = callBack;
1678 rref->record_index = sdRef->max_index++;
1679 rref->sdr = sdRef;
1680 rref->recnext = NULL;
1681 *RecordRef = rref;
1682 hdr->client_context.context = rref;
1683 hdr->reg_index = rref->record_index;
1687 *p = rref;
1707 DNSRecordRef rref;
1739 rref = malloc(sizeof(DNSRecord));
1740 if (!rref) { free(hdr); return kDNSServiceErr_NoMemory; }
1741 rref->AppContext = NULL;
1742 rref->AppCallback = NULL;
1743 rref->record_index = sdRef->max_index++;
1744 rref->sdr = sdRef;
1745 rref->recnext = NULL;
1746 *RecordRef = rref;
1747 hdr->reg_index = rref->record_index;
1751 *p = rref;