Home
last modified time | relevance | path

Searched refs:hinfo (Results 1 – 11 of 11) sorted by relevance

/external/libcups/cups/
Dtestcreds.c40 char hinfo[1024], /* String for connection credentials */ in main() local
80 httpCredentialsString(hcreds, hinfo, sizeof(hinfo)); in main()
89 printf(" String: \"%s\"\n", hinfo); in main()
/external/iptables/include/linux/netfilter/
Dxt_hashlimit.h45 struct xt_hashlimit_htable *hinfo; member
85 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member
93 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member
/external/kernel-headers/original/uapi/linux/netfilter/
Dxt_hashlimit.h46 struct xt_hashlimit_htable *hinfo; member
86 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member
94 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member
/external/vulkan-validation-layers/tests/
Dvktestbinding.cpp737 VkCommandBufferInheritanceInfo hinfo = {}; in begin() local
740 info.pInheritanceInfo = &hinfo; in begin()
741 hinfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO; in begin()
742 hinfo.pNext = NULL; in begin()
743 hinfo.renderPass = VK_NULL_HANDLE; in begin()
744 hinfo.subpass = 0; in begin()
745 hinfo.framebuffer = VK_NULL_HANDLE; in begin()
746 hinfo.occlusionQueryEnable = VK_FALSE; in begin()
747 hinfo.queryFlags = 0; in begin()
748 hinfo.pipelineStatistics = 0; in begin()
Dlayer_validation_tests.cpp1264 VkCommandBufferInheritanceInfo hinfo = {};
7567 VkCommandBufferInheritanceInfo hinfo = {}; in TEST_F() local
7568 hinfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO; in TEST_F()
7569 hinfo.renderPass = VK_NULL_HANDLE; in TEST_F()
7570 hinfo.subpass = 0; in TEST_F()
7571 hinfo.framebuffer = VK_NULL_HANDLE; in TEST_F()
7572 hinfo.occlusionQueryEnable = VK_FALSE; in TEST_F()
7573 hinfo.queryFlags = 0; in TEST_F()
7574 hinfo.pipelineStatistics = 0; in TEST_F()
7578 info.pInheritanceInfo = &hinfo; in TEST_F()
[all …]
/external/jmdns/src/javax/jmdns/impl/
DDNSRecord.java902 HostInformation hinfo = (HostInformation) other; in sameValue() local
903 if ((_cpu == null) && (hinfo._cpu != null)) { in sameValue()
906 if ((_os == null) && (hinfo._os != null)) { in sameValue()
909 return _cpu.equals(hinfo._cpu) && _os.equals(hinfo._os); in sameValue()
937 Map<String, String> hinfo = new HashMap<String, String>(2); in getServiceInfo() local
938 hinfo.put("cpu", _cpu); in getServiceInfo()
939 hinfo.put("os", _os); in getServiceInfo()
940 return new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, hinfo); in getServiceInfo()
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DProcess.inc64 _HEAPINFO hinfo;
65 hinfo._pentry = NULL;
69 while (_heapwalk(&hinfo) == _HEAPOK)
70 size += hinfo._size;
/external/mdnsresponder/mDNSPosix/
Dparselog.py216 for ip,[height,hname,hinfo] in ipList.items():
224 c.showTextAtPoint(pageRect.origin.x + 2 + typesize*25, height*typesize + 2, hinfo, len(hinfo))
/external/iptables/extensions/
Dlibxt_hashlimit.c926 .userspacesize = offsetof(struct xt_hashlimit_info, hinfo),
942 .userspacesize = offsetof(struct xt_hashlimit_mtinfo1, hinfo),
958 .userspacesize = offsetof(struct xt_hashlimit_mtinfo1, hinfo),
974 .userspacesize = offsetof(struct xt_hashlimit_mtinfo2, hinfo),
990 .userspacesize = offsetof(struct xt_hashlimit_mtinfo2, hinfo),
/external/llvm/lib/Support/Windows/
DProcess.inc85 _HEAPINFO hinfo;
86 hinfo._pentry = NULL;
90 while (_heapwalk(&hinfo) == _HEAPOK)
91 size += hinfo._size;
/external/mdnsresponder/mDNSCore/
DDNSCommon.c1981 AuthRecord hinfo; in putHINFO() local
1982 mDNSu8 *h = hinfo.rdatastorage.u.data; in putHINFO()
1985 …mDNS_SetupResourceRecord(&hinfo, mDNSNULL, mDNSInterface_Any, kDNSType_HINFO, 0, kDNSRecordTypeUni… in putHINFO()
1986 AppendDomainLabel(&hinfo.namestorage, &m->hostlabel); in putHINFO()
1987 AppendDomainName (&hinfo.namestorage, &authInfo->domain); in putHINFO()
1988 hinfo.resrec.rroriginalttl = 0; in putHINFO()
1992 hinfo.resrec.rdlength = len; in putHINFO()
1993 hinfo.resrec.rdestimate = len; in putHINFO()
1994 newptr = PutResourceRecordTTLWithLimit(msg, end, &msg->h.numAdditionals, &hinfo.resrec, 0, limit); in putHINFO()