Searched refs:hinfo (Results 1 - 18 of 18) sorted by relevance

/macosx-10.10/bind9-45.101/bind9/lib/dns/rdata/generic/
H A Dhinfo_13.c109 dns_rdata_hinfo_t *hinfo = source; local
113 REQUIRE(hinfo->common.rdtype == type);
114 REQUIRE(hinfo->common.rdclass == rdclass);
119 RETERR(uint8_tobuffer(hinfo->cpu_len, target));
120 RETERR(mem_tobuffer(target, hinfo->cpu, hinfo->cpu_len));
121 RETERR(uint8_tobuffer(hinfo->os_len, target));
122 return (mem_tobuffer(target, hinfo->os, hinfo->os_len));
127 dns_rdata_hinfo_t *hinfo local
163 dns_rdata_hinfo_t *hinfo = source; local
[all...]
/macosx-10.10/objc4-646/runtime/
H A Dobjcrt.h22 OBJC_EXPORT void _objc_load_image(HMODULE image, void *hinfo);
23 OBJC_EXPORT void _objc_unload_image(HMODULE image, void *hinfo);
H A Dobjc-os.mm174 OBJC_EXPORT void _objc_load_image(HMODULE image, header_info *hinfo)
176 prepare_load_methods(hinfo);
180 OBJC_EXPORT void _objc_unload_image(HMODULE image, header_info *hinfo)
260 // Look for hinfo from the dyld shared cache.
263 // Found an hinfo in the dyld shared cache.
290 // Didn't find an hinfo in the dyld shared cache.
335 const char *_gcForHInfo(const header_info *hinfo)
339 const char *_gcForHInfo2(const header_info *hinfo)
349 const char *_gcForHInfo(const header_info *hinfo)
351 if (_objcHeaderRequiresGC(hinfo)) {
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/chud/
H A Dchud_cpu.c54 host_basic_info_data_t hinfo; local
58 kr = host_info(host_self(), HOST_BASIC_INFO, (integer_t *)&hinfo, &count);
60 return hinfo.max_cpus;
/macosx-10.10/llvmCore-3425.0.34/lib/Support/Windows/
H A DProcess.inc64 _HEAPINFO hinfo;
65 hinfo._pentry = NULL;
69 while (_heapwalk(&hinfo) == _HEAPOK)
70 size += hinfo._size;
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_mib.c182 host_basic_info_data_t hinfo; local
196 kret = host_info((host_t)BSD_HOST, HOST_BASIC_INFO, (host_info_t)&hinfo, &count);
207 return(SYSCTL_RETURN(req, hinfo.max_cpus));
213 return(SYSCTL_RETURN(req, hinfo.avail_cpus));
219 return(SYSCTL_RETURN(req, hinfo.physical_cpu));
225 return(SYSCTL_RETURN(req, hinfo.physical_cpu_max));
231 return(SYSCTL_RETURN(req, hinfo.logical_cpu));
237 return(SYSCTL_RETURN(req, hinfo.logical_cpu_max));
H A Dkdebug.c370 host_basic_info_data_t hinfo; local
372 host_info((host_t)1 /* BSD_HOST */, HOST_BASIC_INFO, (host_info_t)&hinfo, &count);
373 assert(hinfo.logical_cpu_max > 0);
374 return hinfo.logical_cpu_max;
H A Dkern_sysctl.c395 host_basic_info_data_t hinfo; local
403 kret = host_info((host_t)BSD_HOST, HOST_BASIC_INFO, (host_info_t)&hinfo, &count);
408 size = sizeof(struct _processor_statistics_np) * (hinfo.logical_cpu_max + 2); /* One for RT Queue, One for Fair Share Queue */
/macosx-10.10/mDNSResponder-561.1.1/mDNSPosix/
H A 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))
/macosx-10.10/bind9-45.101/bind9/bin/tests/
H A Drdata_test.c128 dns_rdata_hinfo_t hinfo; local
129 result = dns_rdata_tostruct(rdata, sp = &hinfo, NULL);
390 dns_rdata_hinfo_t hinfo; local
391 result = dns_rdata_tostruct(rdata, sp = &hinfo, mctx);
681 dns_rdata_hinfo_t hinfo;
682 result = dns_rdata_fromstruct(rdata2, rdc, rdt, &hinfo, b);
/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_vfsutils.c3661 hfs_getinfo_metadata_blocks(struct hfsmount *hfsmp, struct hfsinfo_metadata *hinfo) argument
3667 bzero(hinfo, sizeof(struct hfsinfo_metadata));
3687 hinfo->extents = hfsmp->hfs_extents_cp->c_datafork->ff_blocks;
3688 hinfo->catalog = hfsmp->hfs_catalog_cp->c_datafork->ff_blocks;
3689 hinfo->allocation = hfsmp->hfs_allocation_cp->c_datafork->ff_blocks;
3690 hinfo->attribute = hfsmp->hfs_attribute_cp->c_datafork->ff_blocks;
3696 hinfo->journal = howmany(hfsmp->jnl_size, hfsmp->blockSize);
3699 hinfo->total = hinfo->extents + hinfo
[all...]
H A Dhfs.h812 extern int hfs_getinfo_metadata_blocks(struct hfsmount *hfsmp, struct hfsinfo_metadata *hinfo);
H A Dhfs_readwrite.c2644 struct hfsinfo_metadata *hinfo; local
2646 hinfo = (struct hfsinfo_metadata *)ap->a_data;
2649 error = hfs_getinfo_metadata_blocks(hfsmp, hinfo);
/macosx-10.10/xnu-2782.1.97/bsd/nfs/
H A Dnfs_vfsops.c3859 struct nfs_ephemeral_mount_harvester_info *hinfo = arg; local
3868 hinfo->mountcount++;
3875 if (hinfo->fsid.val[0] || hinfo->fsid.val[1]) {
3877 vfs_unmountbyfsid(&hinfo->fsid, 0, vfs_context_kernel());
3878 hinfo->fsid.val[0] = hinfo->fsid.val[1] = 0;
3885 hinfo->fsid.val[0] = mp->mnt_vfsstat.f_fsid.val[0];
3886 hinfo->fsid.val[1] = mp->mnt_vfsstat.f_fsid.val[1];
3909 struct nfs_ephemeral_mount_harvester_info hinfo; local
[all...]
/macosx-10.10/mDNSResponder-561.1.1/mDNSCore/
H A DDNSCommon.c2656 AuthRecord hinfo; local
2657 mDNSu8 *h = hinfo.rdatastorage.u.data;
2660 mDNS_SetupResourceRecord(&hinfo, mDNSNULL, mDNSInterface_Any, kDNSType_HINFO, 0, kDNSRecordTypeUnique, AuthRecordAny, mDNSNULL, mDNSNULL);
2661 AppendDomainLabel(&hinfo.namestorage, &m->hostlabel);
2662 AppendDomainName (&hinfo.namestorage, &authInfo->domain);
2663 hinfo.resrec.rroriginalttl = 0;
2667 hinfo.resrec.rdlength = len;
2668 hinfo.resrec.rdestimate = len;
2669 newptr = PutResourceRecordTTLWithLimit(msg, end, &msg->h.numAdditionals, &hinfo.resrec, 0, limit);
/macosx-10.10/apache-793/httpd/support/
H A Dhtcacheclean.c466 apr_finfo_t hinfo, dinfo; local
470 &hinfo, APR_FINFO_SIZE, fd)) {
511 round_up((apr_size_t)hinfo.size, round),
/macosx-10.10/xnu-2782.1.97/osfmk/vm/
H A Dvm_compressor.c437 host_basic_info_data_t hinfo; local
441 host_info((host_t)BSD_HOST, HOST_BASIC_INFO, (host_info_t)&hinfo, &count);
443 compressor_cpus = hinfo.max_cpus;
H A Dvm_pageout.c4252 host_basic_info_data_t hinfo; local
4257 host_info((host_t)BSD_HOST, HOST_BASIC_INFO, (host_info_t)&hinfo, &count);
4259 assert(hinfo.max_cpus > 0);
4261 if (vm_compressor_thread_count >= hinfo.max_cpus)
4262 vm_compressor_thread_count = hinfo.max_cpus - 1;

Completed in 350 milliseconds