/external/avahi/avahi-daemon/ |
H A D | avahi-daemon.conf | 49 publish-hinfo=no
|
/external/iptables/include/linux/netfilter/ |
H A D | xt_hashlimit.h | 43 struct xt_hashlimit_htable *hinfo; member in struct:xt_hashlimit_info 69 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member in struct:xt_hashlimit_mtinfo1
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
H A D | xt_hashlimit.h | 44 struct xt_hashlimit_htable *hinfo; member in struct:xt_hashlimit_info 70 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member in struct:xt_hashlimit_mtinfo1
|
/external/avahi/avahi-core/ |
H A D | rr.c | 164 avahi_free(r->data.hinfo.cpu); 165 avahi_free(r->data.hinfo.os); 277 snprintf(t = buf, sizeof(buf), "\"%s\" \"%s\"", r->data.hinfo.cpu, r->data.hinfo.os); 386 !strcmp(a->data.hinfo.cpu, b->data.hinfo.cpu) && 387 !strcmp(a->data.hinfo.os, b->data.hinfo.os); 447 if (!(copy->data.hinfo.os = avahi_strdup(r->data.hinfo [all...] |
H A D | dns-test.c | 78 r->data.hinfo.cpu = avahi_strdup("FOO"); 79 r->data.hinfo.os = avahi_strdup("BAR");
|
H A D | rr.h | 92 } hinfo; /**< Data for HINFO records */ member in union:AvahiRecord::__anon539
|
H A D | dns.c | 559 r->data.hinfo.cpu = avahi_strdup(buf); 564 r->data.hinfo.os = avahi_strdup(buf); 735 if (!avahi_dns_packet_append_string(p, r->data.hinfo.cpu) || 736 !avahi_dns_packet_append_string(p, r->data.hinfo.os))
|
H A D | server.c | 1157 r->data.hinfo.cpu = avahi_strdup(avahi_strup(utsname.machine)); 1158 r->data.hinfo.os = avahi_strdup(avahi_strup(utsname.sysname)); 1160 avahi_log_info("Registering HINFO record with values '%s'/'%s'.", r->data.hinfo.cpu, r->data.hinfo.os);
|
/external/mdnsresponder/mDNSPosix/ |
H A D | parselog.py | 216 for ip,[height,hname,hinfo] in ipList.items(): 224 c.showTextAtPoint(pageRect.origin.x + 2 + typesize*25, height*typesize + 2, hinfo, len(hinfo))
|
/external/vulkan-validation-layers/tests/ |
H A D | vktestbinding.cpp | 818 VkCommandBufferInheritanceInfo hinfo = {}; local 821 info.pInheritanceInfo = &hinfo; 822 hinfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO; 823 hinfo.pNext = NULL; 824 hinfo.renderPass = VK_NULL_HANDLE; 825 hinfo.subpass = 0; 826 hinfo.framebuffer = VK_NULL_HANDLE; 827 hinfo.occlusionQueryEnable = VK_FALSE; 828 hinfo.queryFlags = 0; 829 hinfo [all...] |
H A D | layer_validation_tests.cpp | 561 VkCommandBufferInheritanceInfo hinfo = {};
|
/external/jmdns/src/javax/jmdns/impl/ |
H A D | DNSRecord.java | 902 HostInformation hinfo = (HostInformation) other; 903 if ((_cpu == null) && (hinfo._cpu != null)) { 906 if ((_os == null) && (hinfo._os != null)) { 909 return _cpu.equals(hinfo._cpu) && _os.equals(hinfo._os); 937 Map<String, String> hinfo = new HashMap<String, String>(2); 938 hinfo.put("cpu", _cpu); 939 hinfo.put("os", _os); 940 return new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, hinfo);
|
/external/iptables/extensions/ |
H A D | libxt_hashlimit.c | 681 .userspacesize = offsetof(struct xt_hashlimit_info, hinfo), 697 .userspacesize = offsetof(struct xt_hashlimit_mtinfo1, hinfo), 713 .userspacesize = offsetof(struct xt_hashlimit_mtinfo1, hinfo),
|
/external/mdnsresponder/mDNSCore/ |
H A D | DNSCommon.c | 1981 AuthRecord hinfo; local 1982 mDNSu8 *h = hinfo.rdatastorage.u.data; 1985 mDNS_SetupResourceRecord(&hinfo, mDNSNULL, mDNSInterface_Any, kDNSType_HINFO, 0, kDNSRecordTypeUnique, AuthRecordAny, mDNSNULL, mDNSNULL); 1986 AppendDomainLabel(&hinfo.namestorage, &m->hostlabel); 1987 AppendDomainName (&hinfo.namestorage, &authInfo->domain); 1988 hinfo.resrec.rroriginalttl = 0; 1992 hinfo.resrec.rdlength = len; 1993 hinfo.resrec.rdestimate = len; 1994 newptr = PutResourceRecordTTLWithLimit(msg, end, &msg->h.numAdditionals, &hinfo.resrec, 0, limit);
|