Lines Matching refs:out

127 mDNSexport void mDNSAddrMapIPv4toIPv6(mDNSv4Addr* in, mDNSv6Addr* out)
129 out->l[0] = 0;
130 out->l[1] = 0;
131 out->w[4] = 0;
132 out->w[5] = 0xffff;
133 out->b[12] = in->b[0];
134 out->b[13] = in->b[1];
135 out->b[14] = in->b[2];
136 out->b[15] = in->b[3];
139 mDNSexport mDNSBool mDNSAddrIPv4FromMappedIPv6(mDNSv6Addr *in, mDNSv4Addr* out)
144 out->NotAnInteger = in->l[3];
898 const mDNSu8 *const end = src + len; // Work out where the label ends
1893 // cause other applications (e.g. Safari) to connect to the wrong address. The rpc to register records filters out records
2124 if (i <= *name) break; // If label did not match, bail out
2128 if (*name == 0) break; // If no more labels to match, we failed, so bail out
2181 // If the name is one byte longer, then we fail the "if" test below, and correctly bail out.
2227 // says. Hence, the only way to copy out the data from a resource record is to use putRData.
2312 LogMsg("ERROR: putOptRData - out of space");
2385 // We need to find out what the last non-NULL byte is. If we are copying out
2461 // If we're out-of-space, return mDNSNULL
2464 LogInfo("PutResourceRecordTTLWithLimit: can't put name, out of space %##s (%s), ptr %p, limit %p", rr->name->c,
2476 // ptr[8] and ptr[9] filled in *after* we find out how much space the rdata takes
2481 LogInfo("PutResourceRecordTTLWithLimit: Ran out of space in PutResourceRecord for %##s (%s), ptr %p, limit %p", rr->name->c,
2500 if (!ptr || ptr + 10 > limit) return(mDNSNULL); // If we're out-of-space, return mDNSNULL
2514 if (!ptr || ptr+4 >= limit) return(mDNSNULL); // If we're out-of-space, return mDNSNULL
2527 if (!ptr || ptr + 4 > limit) return mDNSNULL; // If we're out-of-space, return NULL
2574 if (!ptr || ptr + 10 >= limit) return mDNSNULL; // If we're out-of-space, return mDNSNULL
2594 if (!ptr || ptr + 10 >= limit) return mDNSNULL; // If we're out-of-space, return mDNSNULL
3465 ptr = getDomainName(msg, ptr, end, &largecr->namestorage); // Will bail out correctly if ptr is NULL