Home | History | Annotate | Download | only in mDNSShared

Lines Matching refs:item

253 	uint8_t *item = InternalTXTRecordSearch(txtRec->datalen, txtRec->buffer, key, &keylen);
254 if (!item) return(kDNSServiceErr_NoSuchKey);
255 itemlen = (unsigned long)(1 + item[0]);
256 remainder = (unsigned long)((txtRec->buffer + txtRec->datalen) - (item + itemlen));
258 memmove(item, item + itemlen, remainder);
292 uint8_t *item = InternalTXTRecordSearch(txtLen, txtRecord, key, &keylen);
293 if (!item || item[0] <= keylen) return(NULL); // If key not found, or found with no value, return NULL
294 *valueLen = (uint8_t)(item[0] - (keylen + 1));
295 return (item + 1 + keylen + 1);
325 while (p<e && count<itemIndex) { p += 1 + p[0]; count++; } // Find requested item