Searched refs:txtLen (Results 1 - 10 of 10) sorted by relevance

/external/mdnsresponder/mDNSShared/
H A Ddnssd_clientlib.c73 uint16_t txtLen,
80 uint8_t *e = p + txtLen;
274 uint16_t txtLen,
280 return (InternalTXTRecordSearch(txtLen, txtRecord, key, &keylen) ? 1 : 0);
285 uint16_t txtLen,
292 uint8_t *item = InternalTXTRecordSearch(txtLen, txtRecord, key, &keylen);
300 uint16_t txtLen,
306 uint8_t *e = p + txtLen;
313 uint16_t txtLen,
324 uint8_t *e = p + txtLen;
71 InternalTXTRecordSearch( uint16_t txtLen, const void *txtRecord, const char *key, unsigned long *keylen ) argument
272 TXTRecordContainsKey( uint16_t txtLen, const void *txtRecord, const char *key ) argument
283 TXTRecordGetValuePtr( uint16_t txtLen, const void *txtRecord, const char *key, uint8_t *valueLen ) argument
298 TXTRecordGetCount( uint16_t txtLen, const void *txtRecord ) argument
311 TXTRecordGetItemAtIndex( uint16_t txtLen, const void *txtRecord, uint16_t itemIndex, uint16_t keyBufLen, char *key, uint8_t *valueLen, const void **value ) argument
[all...]
H A Ddns_sd.h996 * txtLen: The length of the txtRecord, in bytes. Must be zero if the txtRecord is NULL.
1000 * Passing NULL for the txtRecord is allowed as a synonym for txtLen=1, txtRecord="",
1034 uint16_t txtLen,
1304 * txtLen: The length of the txt record, in bytes.
1336 uint16_t txtLen,
2236 * if (TXTRecordContainsKey(txtLen, txtRecord, "key")) then do something
2237 * val1ptr = TXTRecordGetValuePtr(txtLen, txtRecord, "key1", &len1);
2238 * val2ptr = TXTRecordGetValuePtr(txtLen, txtRecord, "key2", &len2);
2264 * txtLen: The size of the received TXT Record.
2276 uint16_t txtLen,
[all...]
H A Ddnssd_clientshim.c232 uint16_t txtLen,
261 if (size < txtLen)
262 size = txtLen;
279 txtRecord, txtLen, // TXT data, length
222 DNSServiceRegister( DNSServiceRef *sdRef, DNSServiceFlags flags, uint32_t interfaceIndex, const char *name, const char *regtype, const char *domain, const char *host, uint16_t notAnIntPort, uint16_t txtLen, const void *txtRecord, DNSServiceRegisterReply callback, void *context ) argument
H A Ddnssd_clientstub.c1474 uint16_t txtLen,
1501 len += 2 * sizeof(uint16_t); // port, txtLen
1502 len += txtLen;
1516 put_uint16(txtLen, &ptr);
1517 put_rdata(txtLen, txtRecord, &ptr);
1464 DNSServiceRegister( DNSServiceRef *sdRef, DNSServiceFlags flags, uint32_t interfaceIndex, const char *name, const char *regtype, const char *domain, const char *host, uint16_t PortInNetworkByteOrder, uint16_t txtLen, const void *txtRecord, DNSServiceRegisterReply callBack, void *context ) argument
/external/skia/gm/
H A Dtextblobshader.cpp24 size_t txtLen = strlen(txt); local
25 fGlyphs.append(p.textToGlyphs(txt, txtLen, nullptr));
26 p.textToGlyphs(txt, txtLen, fGlyphs.begin());
H A Dtextblob.cpp78 size_t txtLen = strlen(fText); variable
79 int glyphCount = p.textToGlyphs(fText, txtLen, nullptr);
82 p.textToGlyphs(fText, txtLen, fGlyphs.begin());
/external/avahi/avahi-compat-libdns_sd/
H A Ddns_sd.h624 * txtLen: The length of the txtRecord, in bytes. Must be zero if the txtRecord is NULL.
628 * Passing NULL for the txtRecord is allowed as a synonym for txtLen=1, txtRecord="",
662 uint16_t txtLen,
927 * txtLen: The length of the txt record, in bytes.
959 uint16_t txtLen,
1528 * if (TXTRecordContainsKey(txtLen, txtRecord, "key")) then do something
1529 * val1ptr = TXTRecordGetValuePtr(txtLen, txtRecord, "key1", &len1);
1530 * val2ptr = TXTRecordGetValuePtr(txtLen, txtRecord, "key2", &len2);
1556 * txtLen: The size of the received TXT Record.
1568 uint16_t txtLen,
[all...]
H A Dcompat.c1092 uint16_t txtLen,
1110 txtLen = 1;
1119 if (txtLen > 0)
1120 if (avahi_string_list_parse(txtRecord, txtLen, &txt) < 0)
1083 DNSServiceRegister( DNSServiceRef *ret_sdref, DNSServiceFlags flags, uint32_t interface, const char *name, const char *regtype, const char *domain, const char *host, uint16_t port, uint16_t txtLen, const void *txtRecord, DNSServiceRegisterReply callback, void *context) argument
/external/mdnsresponder/Clients/
H A Ddns-sd.c418 const char *fullname, const char *hosttarget, uint16_t opaqueport, uint16_t txtLen, const unsigned char *txt, void *context)
427 const unsigned char *max = txt + txtLen;
513 static void ShowTXTRecord(uint16_t txtLen, const unsigned char *txtRecord) argument
516 const unsigned char *max = txtRecord + txtLen;
548 const char *fullname, const char *hosttarget, uint16_t opaqueport, uint16_t txtLen, const unsigned char *txtRecord, void *context)
566 if (txtLen > 1) { printf("\n"); ShowTXTRecord(txtLen, txtRecord); }
417 zonedata_resolve(DNSServiceRef sdref, const DNSServiceFlags flags, uint32_t ifIndex, DNSServiceErrorType errorCode, const char *fullname, const char *hosttarget, uint16_t opaqueport, uint16_t txtLen, const unsigned char *txt, void *context) argument
547 resolve_reply(DNSServiceRef sdref, const DNSServiceFlags flags, uint32_t ifIndex, DNSServiceErrorType errorCode, const char *fullname, const char *hosttarget, uint16_t opaqueport, uint16_t txtLen, const unsigned char *txtRecord, void *context) argument
/external/skia/tests/
H A DTextBlobTest.cpp161 const size_t txtLen = strlen(txt); local
162 const int glyphCount = p.textToGlyphs(txt, txtLen, nullptr);
168 p.textToGlyphs(txt, txtLen, buffer.glyphs);

Completed in 316 milliseconds