HomeSort by relevance Sort by last modified time
    Searched refs:txtLen (Results 1 - 22 of 22) sorted by null

  /external/mdnsresponder/mDNSShared/
dnssd_clientlib.c 73 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;
    [all...]
dns_sd.h     [all...]
dnssd_clientshim.c 232 uint16_t txtLen,
261 if (size < txtLen)
262 size = txtLen;
279 txtRecord, txtLen, // TXT data, length
dnssd_clientstub.c 1112 uint16_t txtlen; local
    [all...]
  /external/skia/gm/
textblobshader.cpp 25 size_t txtLen = strlen(txt);
26 fGlyphs.append(p.textToGlyphs(txt, txtLen, nullptr));
27 p.textToGlyphs(txt, txtLen, fGlyphs.begin());
textblob.cpp 79 size_t txtLen = strlen(fText);
80 int glyphCount = p.textToGlyphs(fText, txtLen, nullptr);
83 p.textToGlyphs(fText, txtLen, fGlyphs.begin());
  /external/skqp/gm/
textblobshader.cpp 25 size_t txtLen = strlen(txt);
26 fGlyphs.append(p.textToGlyphs(txt, txtLen, nullptr));
27 p.textToGlyphs(txt, txtLen, fGlyphs.begin());
textblob.cpp 79 size_t txtLen = strlen(fText);
80 int glyphCount = p.textToGlyphs(fText, txtLen, nullptr);
83 p.textToGlyphs(fText, txtLen, fGlyphs.begin());
  /external/mdnsresponder/mDNSWindows/DLLStub/
DLLStub.cpp 162 uint16_t txtLen,
174 ret = func( sdRef, flags, interfaceIndex, name, regtype, domain, host, port, txtLen, txtRecord, callBack, context );
573 uint16_t txtLen,
584 ret = func( txtLen, txtRecord, key );
594 uint16_t txtLen,
604 ret = func( txtLen, txtRecord );
652 uint16_t txtLen,
664 ret = func( txtLen, txtRecord, key, valueLen );
674 uint16_t txtLen,
689 ret = func( txtLen, txtRecord, itemIndex, keyBufLen, key, valueLen, value )
    [all...]
  /system/netd/server/
MDnsSdListener.h 38 uint16_t txtLen, const unsigned char *txtRecord, void *inContext);
MDnsSdListener.cpp 159 const char *domain, const char *host, int port, int txtLen, void *txtRecord) {
162 interfaceName, serviceName, serviceType, domain, host, port, txtLen);
176 serviceType, domain, host, port, txtLen, txtRecord, &MDnsSdListenerRegisterCallback,
248 const char *hosttarget, uint16_t port, uint16_t txtLen,
264 size_t dstLength = CEIL(CEIL(txtLen * 4, 3), 4) * 4 + 1;
267 b64_ntop(txtRecord, txtLen, dst, dstLength);
270 txtLen, dst);
276 ALOGD("resolve succeeded for %d finding %s at %s:%d with txtLen %d",
277 refNumber, fullname, hosttarget, port, txtLen);
  /external/mdnsresponder/mDNSWindows/DLLX/
DNSSD.cpp 182 uint16_t txtLen = 0;
222 txtLen = realTXTRecord->GetLen();
225 err = DNSServiceRegister( &sref, flags, ifIndex, serviceNameUTF8.c_str(), regTypeUTF8.c_str(), domainUTF8.c_str(), hostUTF8.c_str(), port, txtLen, txtRecord, ( DNSServiceRegisterReply ) &RegisterReply, object );
601 uint16_t txtLen,
646 sprintf( buf, "txtLen = %d", txtLen );
649 if ( txtLen > 0 )
651 record->SetBytes( txtRecord, txtLen );
DNSSDService.cpp 510 uint16_t txtLen = 0;
590 txtLen = realTXTRecord->GetLen();
598 err = DNSServiceRegister( &subord, flags | kDNSServiceFlagsShareConnection, ifIndex, serviceNameUTF8.c_str(), regTypeUTF8.c_str(), ( domainUTF8.size() > 0 ) ? domainUTF8.c_str() : NULL, hostUTF8.c_str(), htons( port ), txtLen, txtRecord, ( DNSServiceRegisterReply ) &RegisterReply, object );
1536 uint16_t txtLen,
1610 if ( txtLen > 0 )
1614 record->SetBytes( txtRecord, txtLen );
DNSSDService.h 282 uint16_t txtLen,
  /external/mdnsresponder/Clients/
dns-sd.c 418 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)
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); }
    [all...]
  /external/skia/tests/
TextBlobTest.cpp 161 const size_t txtLen = strlen(txt);
162 const int glyphCount = p.textToGlyphs(txt, txtLen, nullptr);
168 p.textToGlyphs(txt, txtLen, buffer.glyphs);
  /external/skqp/tests/
TextBlobTest.cpp 161 const size_t txtLen = strlen(txt);
162 const int glyphCount = p.textToGlyphs(txt, txtLen, nullptr);
168 p.textToGlyphs(txt, txtLen, buffer.glyphs);
  /external/libcups/cups/
http-support.c 122 uint16_t port, uint16_t txtLen,
    [all...]
  /external/mdnsresponder/mDNSWindows/DLL.NET/
dnssd_NET.cpp 535 uint16_t txtLen,
551 if (txtLen > 0)
556 txtRecordBytes = new Byte[txtLen];
558 memcpy(p, txtRecord, txtLen);
dnssd_NET.h 366 uint16_t txtLen,
577 * if (TXTRecordContainsKey(txtLen, txtRecord, "key")) then do something
    [all...]
  /system/core/adb/
transport_mdns.cpp 180 uint16_t txtLen,
217 uint16_t /*txtLen*/,
  /external/mdnsresponder/mDNSWindows/
mDNSWin32.c 240 uint16_t txtLen,
    [all...]

Completed in 389 milliseconds