├── .gitignore ├── CMakeLists.txt ├── duct-tape ├── CMakeLists.txt ├── README.md ├── defines │ ├── advisory_pageout.h │ ├── config_dtrace.h │ ├── cputypes.h │ ├── debug.h │ ├── fast_tas.h │ ├── kdebug.h │ ├── mach_assert.h │ ├── mach_counters.h │ ├── mach_debug.h │ ├── mach_ipc_debug.h │ ├── mach_ipc_test.h │ ├── mach_ldebug.h │ ├── mach_machine_routines.h │ ├── mach_pagemap.h │ ├── mach_rt.h │ ├── mach_vm_debug.h │ ├── mig_debug.h │ ├── norma_task.h │ ├── norma_vm.h │ ├── platforms.h │ ├── sys │ │ └── kdebug_private.h │ ├── task_swapper.h │ ├── time_stamp.h │ ├── vm_cpm.h │ ├── xpr_debug.h │ ├── zone_alias_addr.h │ └── zone_debug.h ├── include │ └── darlingserver │ │ ├── duct-tape.h │ │ └── duct-tape │ │ ├── hooks.h │ │ └── types.h ├── internal-include │ └── darlingserver │ │ └── duct-tape │ │ ├── condvar.h │ │ ├── hooks.internal.h │ │ ├── kqchan.h │ │ ├── locks.h │ │ ├── log.h │ │ ├── memory.h │ │ ├── processor.h │ │ ├── psynch.h │ │ ├── semaphore.h │ │ ├── simple_lock.h │ │ ├── stubs.h │ │ ├── task.h │ │ └── thread.h ├── pthread │ ├── kern │ ├── kern_init.c │ ├── kern_internal.h │ ├── kern_support.c │ ├── kern_synch.c │ ├── kern_trace.h │ ├── private │ ├── pthread-Info.plist │ ├── pthread │ │ ├── qos.h │ │ └── qos_private.h │ ├── synch_internal.h │ ├── sys │ │ ├── _pthread │ │ │ ├── _pthread_attr_t.h │ │ │ ├── _pthread_cond_t.h │ │ │ ├── _pthread_condattr_t.h │ │ │ ├── _pthread_key_t.h │ │ │ ├── _pthread_mutex_t.h │ │ │ ├── _pthread_mutexattr_t.h │ │ │ ├── _pthread_once_t.h │ │ │ ├── _pthread_rwlock_t.h │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ ├── _pthread_t.h │ │ │ └── _pthread_types.h │ │ ├── qos.h │ │ └── qos_private.h │ └── workqueue_internal.h ├── src │ ├── condvar.c │ ├── debug.c │ ├── host.c │ ├── init.c │ ├── kqchan.c │ ├── locks.c │ ├── memory.c │ ├── misc.c │ ├── processor.c │ ├── psynch.c │ ├── semaphore.c │ ├── stubs.c │ ├── task.c │ ├── thread.c │ ├── timer.c │ └── traps.c └── xnu │ ├── APPLE_LICENSE │ ├── EXTERNAL_HEADERS │ ├── AssertMacros.h │ ├── Availability.h │ ├── AvailabilityInternal.h │ ├── AvailabilityMacros.h │ ├── Info.plist │ ├── Makefile │ ├── acpi │ │ ├── Acpi.h │ │ └── Acpi_v1.h │ ├── architecture │ │ ├── Makefile │ │ ├── arm │ │ │ └── Makefile │ │ ├── byte_order.h │ │ └── i386 │ │ │ ├── Makefile │ │ │ ├── asm_help.h │ │ │ ├── cpu.h │ │ │ ├── desc.h │ │ │ ├── io.h │ │ │ ├── pio.h │ │ │ ├── reg_help.h │ │ │ ├── sel.h │ │ │ ├── table.h │ │ │ └── tss.h │ ├── corecrypto │ │ ├── cc.h │ │ ├── cc_config.h │ │ ├── cc_error.h │ │ ├── cc_fault_canary.h │ │ ├── cc_macros.h │ │ ├── cc_priv.h │ │ ├── cc_runtime_config.h │ │ ├── ccaes.h │ │ ├── ccasn1.h │ │ ├── ccchacha20poly1305.h │ │ ├── cccmac.h │ │ ├── ccdes.h │ │ ├── ccdigest.h │ │ ├── ccdigest_priv.h │ │ ├── ccdrbg.h │ │ ├── ccdrbg_impl.h │ │ ├── cchmac.h │ │ ├── cckprng.h │ │ ├── ccmd4.h │ │ ├── ccmode.h │ │ ├── ccmode_impl.h │ │ ├── ccmode_siv.h │ │ ├── ccmode_siv_hmac.h │ │ ├── ccn.h │ │ ├── ccpad.h │ │ ├── ccrng.h │ │ ├── ccrsa.h │ │ ├── ccsha1.h │ │ ├── ccsha2.h │ │ ├── cczp.h │ │ └── fipspost_trace.h │ ├── coretrust │ │ └── CTEvaluate.h │ ├── img4 │ │ ├── api.h │ │ ├── chip.h │ │ ├── firmware.h │ │ ├── image.h │ │ ├── nonce.h │ │ ├── object.h │ │ └── runtime.h │ ├── mach-o │ │ ├── Makefile │ │ ├── arm │ │ │ └── reloc.h │ │ ├── arm64 │ │ │ └── reloc.h │ │ ├── fat.h │ │ ├── fixup-chains.h │ │ ├── loader.h │ │ ├── nlist.h │ │ ├── reloc.h │ │ ├── stab.h │ │ └── x86_64 │ │ │ └── reloc.h │ ├── ptrauth.h │ ├── stdarg.h │ ├── stdatomic.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ └── sys │ │ ├── Makefile │ │ └── _pthread │ │ ├── Makefile │ │ └── _pthread_types.h │ ├── bsd │ ├── Makefile │ ├── arm │ │ ├── Makefile │ │ ├── _limits.h │ │ ├── _mcontext.h │ │ ├── _param.h │ │ ├── _types.h │ │ ├── disklabel.h │ │ ├── endian.h │ │ ├── fasttrap_isa.h │ │ ├── limits.h │ │ ├── param.h │ │ ├── profile.h │ │ ├── psl.h │ │ ├── ptrace.h │ │ ├── reg.h │ │ ├── signal.h │ │ ├── types.h │ │ └── vmparam.h │ ├── bsm │ │ ├── Makefile │ │ ├── audit.h │ │ ├── audit_domain.h │ │ ├── audit_errno.h │ │ ├── audit_fcntl.h │ │ ├── audit_internal.h │ │ ├── audit_kernel.h │ │ ├── audit_kevents.h │ │ ├── audit_record.h │ │ └── audit_socket_type.h │ ├── crypto │ │ ├── Makefile │ │ ├── aes.h │ │ ├── aesxts.h │ │ ├── des.h │ │ ├── sha1.h │ │ └── sha2.h │ ├── dev │ │ ├── Makefile │ │ ├── busvar.h │ │ ├── dtrace │ │ │ ├── Makefile │ │ │ ├── blist.h │ │ │ ├── dtrace_xoroshiro128_plus.h │ │ │ └── systrace.h │ │ ├── i386 │ │ │ └── fasttrap_regset.h │ │ ├── kmreg_com.h │ │ ├── ldd.h │ │ ├── memdev.h │ │ ├── random │ │ │ ├── Makefile │ │ │ └── randomdev.h │ │ └── vn │ │ │ └── shadow.h │ ├── i386 │ │ ├── Makefile │ │ ├── _limits.h │ │ ├── _mcontext.h │ │ ├── _param.h │ │ ├── _types.h │ │ ├── dis_tables.h │ │ ├── disklabel.h │ │ ├── endian.h │ │ ├── fasttrap_isa.h │ │ ├── limits.h │ │ ├── param.h │ │ ├── profile.h │ │ ├── psl.h │ │ ├── ptrace.h │ │ ├── reg.h │ │ ├── signal.h │ │ ├── types.h │ │ └── vmparam.h │ ├── kern │ │ ├── ast.h │ │ ├── chunklist.h │ │ ├── kpi_mbuf_internal.h │ │ ├── mach_fat.h │ │ ├── mach_loader.h │ │ ├── makesyscalls.sh │ │ ├── syscalls.master │ │ └── tty_dev.h │ ├── libkern │ │ ├── copyio.h │ │ └── libkern.h │ ├── machine │ │ ├── Makefile │ │ ├── _limits.h │ │ ├── _mcontext.h │ │ ├── _param.h │ │ ├── _types.h │ │ ├── byte_order.h │ │ ├── cons.h │ │ ├── dis_tables.h │ │ ├── disklabel.h │ │ ├── endian.h │ │ ├── exec.h │ │ ├── fasttrap_isa.h │ │ ├── limits.h │ │ ├── machine_types.modulemap │ │ ├── param.h │ │ ├── profile.h │ │ ├── psl.h │ │ ├── ptrace.h │ │ ├── reg.h │ │ ├── signal.h │ │ ├── smp.h │ │ ├── types.h │ │ └── vmparam.h │ ├── miscfs │ │ ├── Makefile │ │ ├── bindfs │ │ │ ├── Makefile │ │ │ └── bindfs.h │ │ ├── devfs │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── devfs.h │ │ │ ├── devfs_proto.h │ │ │ ├── devfsdefs.h │ │ │ ├── fdesc.h │ │ │ └── reproto.sh │ │ ├── fifofs │ │ │ ├── Makefile │ │ │ └── fifo.h │ │ ├── mockfs │ │ │ ├── mockfs.h │ │ │ ├── mockfs_fsnode.h │ │ │ └── mockfs_vnops.h │ │ ├── nullfs │ │ │ ├── Makefile │ │ │ └── nullfs.h │ │ ├── routefs │ │ │ ├── Makefile │ │ │ └── routefs.h │ │ ├── specfs │ │ │ ├── Makefile │ │ │ └── specdev.h │ │ └── union │ │ │ ├── Makefile │ │ │ └── union.h │ ├── net │ │ ├── Makefile │ │ ├── altq │ │ │ ├── Makefile │ │ │ ├── altq.h │ │ │ ├── altq_cbq.h │ │ │ ├── altq_fairq.h │ │ │ ├── altq_hfsc.h │ │ │ ├── altq_priq.h │ │ │ └── altq_qfq.h │ │ ├── bpf.h │ │ ├── bpf_compat.h │ │ ├── bpfdesc.h │ │ ├── bridgestp.h │ │ ├── cc.h │ │ ├── classq │ │ │ ├── Makefile │ │ │ ├── classq.h │ │ │ ├── classq_blue.h │ │ │ ├── classq_fq_codel.h │ │ │ ├── classq_red.h │ │ │ ├── classq_rio.h │ │ │ ├── classq_sfb.h │ │ │ └── if_classq.h │ │ ├── content_filter.h │ │ ├── content_filter_crypto.h │ │ ├── contiki-conf.h │ │ ├── contiki-default-conf.h │ │ ├── contiki-lib.h │ │ ├── contiki-net.h │ │ ├── contiki-version.h │ │ ├── contiki.h │ │ ├── devtimer.h │ │ ├── dlil.h │ │ ├── ether_if_module.h │ │ ├── etherdefs.h │ │ ├── ethernet.h │ │ ├── firewire.h │ │ ├── flowadv.h │ │ ├── flowhash.h │ │ ├── frame802154.h │ │ ├── ieee8023ad.h │ │ ├── if.h │ │ ├── if_6lowpan_var.h │ │ ├── if_arp.h │ │ ├── if_bond_internal.h │ │ ├── if_bond_var.h │ │ ├── if_bridgevar.h │ │ ├── if_dl.h │ │ ├── if_ether.h │ │ ├── if_fake_var.h │ │ ├── if_gif.h │ │ ├── if_ipsec.h │ │ ├── if_llatbl.h │ │ ├── if_llc.h │ │ ├── if_llreach.h │ │ ├── if_media.h │ │ ├── if_mib.h │ │ ├── if_pflog.h │ │ ├── if_ports_used.h │ │ ├── if_ppp.h │ │ ├── if_types.h │ │ ├── if_utun.h │ │ ├── if_var.h │ │ ├── if_vlan_var.h │ │ ├── init.h │ │ ├── iptap.h │ │ ├── kext_net.h │ │ ├── kpi_interface.h │ │ ├── kpi_interfacefilter.h │ │ ├── kpi_protocol.h │ │ ├── lacp.h │ │ ├── linkaddr.h │ │ ├── multi_layer_pkt_log.h │ │ ├── multicast_list.h │ │ ├── nat464_utils.h │ │ ├── ndrv.h │ │ ├── ndrv_var.h │ │ ├── necp.h │ │ ├── net_api_stats.h │ │ ├── net_kev.h │ │ ├── net_log_common.h │ │ ├── net_osdep.h │ │ ├── net_perf.h │ │ ├── net_str_id.h │ │ ├── netsrc.h │ │ ├── network_agent.h │ │ ├── ntstat.h │ │ ├── nwk_wq.h │ │ ├── packet_mangler.h │ │ ├── pf_pbuf.h │ │ ├── pfkeyv2.h │ │ ├── pfvar.h │ │ ├── pktap.h │ │ ├── pktsched │ │ │ ├── Makefile │ │ │ ├── pktsched.h │ │ │ ├── pktsched_cbq.h │ │ │ ├── pktsched_fairq.h │ │ │ ├── pktsched_fq_codel.h │ │ │ ├── pktsched_hfsc.h │ │ │ ├── pktsched_netem.h │ │ │ ├── pktsched_priq.h │ │ │ └── pktsched_rmclass.h │ │ ├── ppp_comp.h │ │ ├── ppp_defs.h │ │ ├── radix.h │ │ ├── raw_cb.h │ │ ├── restricted_in_port.h │ │ ├── route.h │ │ ├── sixxlowpan.h │ │ └── zlib.h │ ├── netinet │ │ ├── Makefile │ │ ├── bootp.h │ │ ├── dhcp.h │ │ ├── dhcp_options.h │ │ ├── flow_divert.h │ │ ├── flow_divert_proto.h │ │ ├── icmp6.h │ │ ├── icmp_var.h │ │ ├── if_ether.h │ │ ├── if_tun.h │ │ ├── igmp.h │ │ ├── igmp_var.h │ │ ├── in.h │ │ ├── in_arp.h │ │ ├── in_gif.h │ │ ├── in_pcb.h │ │ ├── in_stat.h │ │ ├── in_systm.h │ │ ├── in_tclass.h │ │ ├── in_var.h │ │ ├── ip.h │ │ ├── ip6.h │ │ ├── ip_compat.h │ │ ├── ip_dummynet.h │ │ ├── ip_ecn.h │ │ ├── ip_encap.h │ │ ├── ip_flowid.h │ │ ├── ip_icmp.h │ │ ├── ip_var.h │ │ ├── isakmp.h │ │ ├── kpi_ipfilter.h │ │ ├── kpi_ipfilter_var.h │ │ ├── mp_pcb.h │ │ ├── mptcp.h │ │ ├── mptcp_opt.h │ │ ├── mptcp_seq.h │ │ ├── mptcp_timer.h │ │ ├── mptcp_var.h │ │ ├── tcp.h │ │ ├── tcp_cache.h │ │ ├── tcp_cc.h │ │ ├── tcp_debug.h │ │ ├── tcp_fsm.h │ │ ├── tcp_log.h │ │ ├── tcp_seq.h │ │ ├── tcp_timer.h │ │ ├── tcp_var.h │ │ ├── tcpip.h │ │ ├── udp.h │ │ └── udp_var.h │ ├── netinet6 │ │ ├── Makefile │ │ ├── ah.h │ │ ├── ah6.h │ │ ├── esp.h │ │ ├── esp6.h │ │ ├── esp_chachapoly.h │ │ ├── esp_rijndael.h │ │ ├── icmp6.h │ │ ├── in6.h │ │ ├── in6_gif.h │ │ ├── in6_ifattach.h │ │ ├── in6_pcb.h │ │ ├── in6_var.h │ │ ├── ip6.h │ │ ├── ip6_ecn.h │ │ ├── ip6_var.h │ │ ├── ip6protosw.h │ │ ├── ipcomp.h │ │ ├── ipsec.h │ │ ├── ipsec6.h │ │ ├── mld6.h │ │ ├── mld6_var.h │ │ ├── nd6.h │ │ ├── nd6_var.h │ │ ├── raw_ip6.h │ │ ├── scope6_var.h │ │ ├── tcp6_var.h │ │ └── udp6_var.h │ ├── netkey │ │ ├── Makefile │ │ ├── key.h │ │ ├── key_debug.h │ │ ├── key_var.h │ │ ├── keydb.h │ │ ├── keysock.h │ │ └── keyv2.h │ ├── nfs │ │ ├── Makefile │ │ ├── gss │ │ │ └── gss_krb5_mech.h │ │ ├── krpc.h │ │ ├── nfs.h │ │ ├── nfs_conf.h │ │ ├── nfs_gss.h │ │ ├── nfs_ioctl.h │ │ ├── nfs_lock.h │ │ ├── nfsdiskless.h │ │ ├── nfsm_subs.h │ │ ├── nfsmount.h │ │ ├── nfsnode.h │ │ ├── nfsproto.h │ │ ├── nfsrvcache.h │ │ ├── rpcv2.h │ │ └── xdr_subs.h │ ├── pthread │ │ ├── Makefile │ │ ├── bsdthread_private.h │ │ ├── priority_private.h │ │ ├── workqueue_internal.h │ │ ├── workqueue_syscalls.h │ │ └── workqueue_trace.h │ ├── security │ │ ├── Makefile │ │ └── audit │ │ │ ├── Makefile │ │ │ ├── audit.h │ │ │ ├── audit_bsd.h │ │ │ ├── audit_ioctl.h │ │ │ └── audit_private.h │ ├── sys │ │ ├── Makefile │ │ ├── _endian.h │ │ ├── _select.h │ │ ├── _structs.h │ │ ├── _types.h │ │ ├── _types │ │ │ ├── Makefile │ │ │ ├── _blkcnt_t.h │ │ │ ├── _blksize_t.h │ │ │ ├── _caddr_t.h │ │ │ ├── _clock_t.h │ │ │ ├── _ct_rune_t.h │ │ │ ├── _dev_t.h │ │ │ ├── _errno_t.h │ │ │ ├── _fd_clr.h │ │ │ ├── _fd_copy.h │ │ │ ├── _fd_def.h │ │ │ ├── _fd_isset.h │ │ │ ├── _fd_set.h │ │ │ ├── _fd_setsize.h │ │ │ ├── _fd_zero.h │ │ │ ├── _filesec_t.h │ │ │ ├── _fsblkcnt_t.h │ │ │ ├── _fsfilcnt_t.h │ │ │ ├── _fsid_t.h │ │ │ ├── _fsobj_id_t.h │ │ │ ├── _gid_t.h │ │ │ ├── _guid_t.h │ │ │ ├── _id_t.h │ │ │ ├── _in_addr_t.h │ │ │ ├── _in_port_t.h │ │ │ ├── _ino64_t.h │ │ │ ├── _ino_t.h │ │ │ ├── _int16_t.h │ │ │ ├── _int32_t.h │ │ │ ├── _int64_t.h │ │ │ ├── _int8_t.h │ │ │ ├── _intptr_t.h │ │ │ ├── _iovec_t.h │ │ │ ├── _key_t.h │ │ │ ├── _mach_port_t.h │ │ │ ├── _mbstate_t.h │ │ │ ├── _mode_t.h │ │ │ ├── _nlink_t.h │ │ │ ├── _null.h │ │ │ ├── _o_dsync.h │ │ │ ├── _o_sync.h │ │ │ ├── _off_t.h │ │ │ ├── _offsetof.h │ │ │ ├── _os_inline.h │ │ │ ├── _pid_t.h │ │ │ ├── _posix_vdisable.h │ │ │ ├── _ptrdiff_t.h │ │ │ ├── _rsize_t.h │ │ │ ├── _rune_t.h │ │ │ ├── _s_ifmt.h │ │ │ ├── _sa_family_t.h │ │ │ ├── _seek_set.h │ │ │ ├── _sigaltstack.h │ │ │ ├── _sigset_t.h │ │ │ ├── _size_t.h │ │ │ ├── _socklen_t.h │ │ │ ├── _ssize_t.h │ │ │ ├── _suseconds_t.h │ │ │ ├── _time_t.h │ │ │ ├── _timespec.h │ │ │ ├── _timeval.h │ │ │ ├── _timeval32.h │ │ │ ├── _timeval64.h │ │ │ ├── _u_char.h │ │ │ ├── _u_int.h │ │ │ ├── _u_int16_t.h │ │ │ ├── _u_int32_t.h │ │ │ ├── _u_int64_t.h │ │ │ ├── _u_int8_t.h │ │ │ ├── _u_short.h │ │ │ ├── _ucontext.h │ │ │ ├── _ucontext64.h │ │ │ ├── _uid_t.h │ │ │ ├── _uintptr_t.h │ │ │ ├── _useconds_t.h │ │ │ ├── _user32_itimerval.h │ │ │ ├── _user32_ntptimeval.h │ │ │ ├── _user32_timespec.h │ │ │ ├── _user32_timeval.h │ │ │ ├── _user32_timex.h │ │ │ ├── _user64_itimerval.h │ │ │ ├── _user64_ntptimeval.h │ │ │ ├── _user64_timespec.h │ │ │ ├── _user64_timeval.h │ │ │ ├── _user64_timex.h │ │ │ ├── _user_timespec.h │ │ │ ├── _user_timeval.h │ │ │ ├── _uuid_t.h │ │ │ ├── _va_list.h │ │ │ ├── _wchar_t.h │ │ │ └── _wint_t.h │ │ ├── acct.h │ │ ├── aio.h │ │ ├── aio_kern.h │ │ ├── appleapiopts.h │ │ ├── attr.h │ │ ├── bitstring.h │ │ ├── bsdtask_info.h │ │ ├── buf.h │ │ ├── buf_internal.h │ │ ├── cdefs.h │ │ ├── clonefile.h │ │ ├── coalition.h │ │ ├── codedir_internal.h │ │ ├── codesign.h │ │ ├── commpage.h │ │ ├── conf.h │ │ ├── content_protection.h │ │ ├── cprotect.h │ │ ├── csr.h │ │ ├── decmpfs.h │ │ ├── dir.h │ │ ├── dirent.h │ │ ├── dis_tables.h │ │ ├── disk.h │ │ ├── disklabel.h │ │ ├── disktab.h │ │ ├── dkstat.h │ │ ├── dmap.h │ │ ├── doc_tombstone.h │ │ ├── domain.h │ │ ├── dtrace.h │ │ ├── dtrace_glue.h │ │ ├── dtrace_impl.h │ │ ├── dtrace_ptss.h │ │ ├── errno.h │ │ ├── ev.h │ │ ├── event.h │ │ ├── eventhandler.h │ │ ├── eventvar.h │ │ ├── exec.h │ │ ├── fasttrap.h │ │ ├── fasttrap_impl.h │ │ ├── fasttrap_isa.h │ │ ├── fbt.h │ │ ├── fcntl.h │ │ ├── file.h │ │ ├── file_internal.h │ │ ├── filedesc.h │ │ ├── fileport.h │ │ ├── filio.h │ │ ├── fsctl.h │ │ ├── fsevents.h │ │ ├── fsgetpath.h │ │ ├── fslog.h │ │ ├── gmon.h │ │ ├── guarded.h │ │ ├── imageboot.h │ │ ├── imgact.h │ │ ├── imgsrc.h │ │ ├── ioccom.h │ │ ├── ioctl.h │ │ ├── ioctl_compat.h │ │ ├── ipc.h │ │ ├── ipcs.h │ │ ├── kas_info.h │ │ ├── kasl.h │ │ ├── kauth.h │ │ ├── kdebug.h │ │ ├── kdebug_kernel.h │ │ ├── kdebug_signpost.h │ │ ├── kern_control.h │ │ ├── kern_event.h │ │ ├── kern_memorystatus.h │ │ ├── kern_memorystatus_freeze.h │ │ ├── kern_memorystatus_notify.h │ │ ├── kern_overrides.h │ │ ├── kern_sysctl.h │ │ ├── kernel.h │ │ ├── kernel_types.h │ │ ├── kpi_mbuf.h │ │ ├── kpi_private.h │ │ ├── kpi_socket.h │ │ ├── kpi_socketfilter.h │ │ ├── ktrace.h │ │ ├── lctx.h │ │ ├── linker_set.h │ │ ├── loadable_fs.h │ │ ├── lock.h │ │ ├── lockf.h │ │ ├── lockstat.h │ │ ├── log_data.h │ │ ├── mach_swapon.h │ │ ├── make_posix_availability.sh │ │ ├── make_symbol_aliasing.sh │ │ ├── malloc.h │ │ ├── mbuf.h │ │ ├── mcache.h │ │ ├── md5.h │ │ ├── memory_maintenance.h │ │ ├── mman.h │ │ ├── monotonic.h │ │ ├── mount.h │ │ ├── mount_internal.h │ │ ├── msg.h │ │ ├── msgbuf.h │ │ ├── munge.h │ │ ├── namei.h │ │ ├── netboot.h │ │ ├── netport.h │ │ ├── param.h │ │ ├── paths.h │ │ ├── persona.h │ │ ├── pgo.h │ │ ├── pipe.h │ │ ├── poll.h │ │ ├── posix_sem.h │ │ ├── posix_shm.h │ │ ├── priv.h │ │ ├── proc.h │ │ ├── proc_info.h │ │ ├── proc_internal.h │ │ ├── proc_require.h │ │ ├── proc_uuid_policy.h │ │ ├── process_policy.h │ │ ├── protosw.h │ │ ├── pthread_internal.h │ │ ├── pthread_shims.h │ │ ├── ptrace.h │ │ ├── queue.h │ │ ├── quota.h │ │ ├── random.h │ │ ├── reason.h │ │ ├── reboot.h │ │ ├── resource.h │ │ ├── resourcevar.h │ │ ├── sbuf.h │ │ ├── sdt.h │ │ ├── sdt_impl.h │ │ ├── select.h │ │ ├── sem.h │ │ ├── sem_internal.h │ │ ├── semaphore.h │ │ ├── sfi.h │ │ ├── shm.h │ │ ├── shm_internal.h │ │ ├── signal.h │ │ ├── signalvar.h │ │ ├── snapshot.h │ │ ├── socket.h │ │ ├── socketvar.h │ │ ├── sockio.h │ │ ├── spawn.h │ │ ├── spawn_internal.h │ │ ├── stackshot.h │ │ ├── stat.h │ │ ├── stdio.h │ │ ├── subr_prf.h │ │ ├── sys__types.modulemap │ │ ├── sys_cdefs.modulemap │ │ ├── sys_domain.h │ │ ├── sys_types.modulemap │ │ ├── sysctl.h │ │ ├── sysent.h │ │ ├── syslimits.h │ │ ├── syslog.h │ │ ├── systm.h │ │ ├── systrace_args.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timeb.h │ │ ├── times.h │ │ ├── timex.h │ │ ├── tprintf.h │ │ ├── trace.h │ │ ├── tree.h │ │ ├── tty.h │ │ ├── ttychars.h │ │ ├── ttycom.h │ │ ├── ttydefaults.h │ │ ├── ttydev.h │ │ ├── types.h │ │ ├── ubc.h │ │ ├── ubc_internal.h │ │ ├── ucontext.h │ │ ├── ucred.h │ │ ├── uio.h │ │ ├── uio_internal.h │ │ ├── ulock.h │ │ ├── un.h │ │ ├── unicode.h │ │ ├── unistd.h │ │ ├── unpcb.h │ │ ├── user.h │ │ ├── utfconv.h │ │ ├── utsname.h │ │ ├── ux_exception.h │ │ ├── vadvise.h │ │ ├── vcmd.h │ │ ├── vfs_context.h │ │ ├── vlimit.h │ │ ├── vm.h │ │ ├── vmmeter.h │ │ ├── vmparam.h │ │ ├── vnioctl.h │ │ ├── vnode.h │ │ ├── vnode_if.h │ │ ├── vnode_internal.h │ │ ├── vsock.h │ │ ├── vsock_domain.h │ │ ├── vsock_transport.h │ │ ├── vstat.h │ │ ├── wait.h │ │ ├── work_interval.h │ │ └── xattr.h │ ├── sys_private │ │ ├── Makefile │ │ └── kdebug_private.h │ ├── uuid │ │ ├── Makefile │ │ └── uuid.h │ ├── vfs │ │ ├── Makefile │ │ ├── vfs_disk_conditioner.h │ │ ├── vfs_io_compression_stats.h │ │ ├── vfs_support.h │ │ ├── vfs_unicode_data.h │ │ ├── vfs_utfconvdata.h │ │ ├── vnode_if.sh │ │ └── vnode_if.src │ └── vm │ │ ├── Makefile │ │ ├── vm_pager.h │ │ └── vnode_pager.h │ ├── iokit │ ├── DriverKit │ │ ├── IOKitKeys.h │ │ ├── IORPC.h │ │ ├── IOReturn.h │ │ ├── IOTypes.h │ │ └── Makefile │ ├── Examples │ │ └── drvGenericInterruptController │ │ │ └── GenericInterruptController.h │ ├── IOKit │ │ ├── AppleKeyStoreInterface.h │ │ ├── IOBSD.h │ │ ├── IOBufferMemoryDescriptor.h │ │ ├── IOCPU.h │ │ ├── IOCatalogue.h │ │ ├── IOCommand.h │ │ ├── IOCommandGate.h │ │ ├── IOCommandPool.h │ │ ├── IOCommandQueue.h │ │ ├── IOConditionLock.h │ │ ├── IODMACommand.h │ │ ├── IODMAController.h │ │ ├── IODMAEventSource.h │ │ ├── IODataQueue.h │ │ ├── IODataQueueShared.h │ │ ├── IODeviceMemory.h │ │ ├── IODeviceTreeSupport.h │ │ ├── IOEventSource.h │ │ ├── IOFilterInterruptEventSource.h │ │ ├── IOHibernatePrivate.h │ │ ├── IOInterleavedMemoryDescriptor.h │ │ ├── IOInterruptAccounting.h │ │ ├── IOInterruptAccountingPrivate.h │ │ ├── IOInterruptController.h │ │ ├── IOInterruptEventSource.h │ │ ├── IOInterrupts.h │ │ ├── IOKernelReportStructs.h │ │ ├── IOKernelReporters.h │ │ ├── IOKitDebug.h │ │ ├── IOKitDiagnosticsUserClient.h │ │ ├── IOKitKeys.h │ │ ├── IOKitKeysPrivate.h │ │ ├── IOKitServer.h │ │ ├── IOLib.h │ │ ├── IOLocks.h │ │ ├── IOLocksPrivate.h │ │ ├── IOMapper.h │ │ ├── IOMemoryCursor.h │ │ ├── IOMemoryDescriptor.h │ │ ├── IOMessage.h │ │ ├── IOMultiMemoryDescriptor.h │ │ ├── IONVRAM.h │ │ ├── IONotifier.h │ │ ├── IOPMGR.h │ │ ├── IOPlatformActions.h │ │ ├── IOPlatformExpert.h │ │ ├── IOPolledInterface.h │ │ ├── IORPC.h │ │ ├── IORangeAllocator.h │ │ ├── IORegistryEntry.h │ │ ├── IOReportMacros.h │ │ ├── IOReportTypes.h │ │ ├── IOReturn.h │ │ ├── IOService.h │ │ ├── IOServicePM.h │ │ ├── IOSharedDataQueue.h │ │ ├── IOSharedLock.h │ │ ├── IOStatistics.h │ │ ├── IOStatisticsPrivate.h │ │ ├── IOSubMemoryDescriptor.h │ │ ├── IOSyncer.h │ │ ├── IOTimeStamp.h │ │ ├── IOTimerEventSource.h │ │ ├── IOTypes.h │ │ ├── IOUserClient.h │ │ ├── IOUserServer.h │ │ ├── IOWorkLoop.h │ │ ├── Makefile │ │ ├── OSMessageNotification.h │ │ ├── PassthruInterruptController.h │ │ ├── assert.h │ │ ├── machine │ │ │ └── Makefile │ │ ├── nvram │ │ │ ├── IONVRAMController.h │ │ │ └── Makefile │ │ ├── perfcontrol │ │ │ ├── IOPerfControl.h │ │ │ └── Makefile │ │ ├── platform │ │ │ ├── AppleMacIO.h │ │ │ ├── AppleMacIODevice.h │ │ │ ├── AppleNMI.h │ │ │ ├── ApplePlatformExpert.h │ │ │ ├── IOPlatformIO.h │ │ │ └── Makefile │ │ ├── power │ │ │ ├── IOPwrController.h │ │ │ └── Makefile │ │ ├── pwr_mgt │ │ │ ├── IOPM.h │ │ │ ├── IOPMLibDefs.h │ │ │ ├── IOPMPowerSource.h │ │ │ ├── IOPMPowerSourceList.h │ │ │ ├── IOPMPrivate.h │ │ │ ├── IOPMinformee.h │ │ │ ├── IOPMinformeeList.h │ │ │ ├── IOPMlog.h │ │ │ ├── IOPMpowerState.h │ │ │ ├── IOPowerConnection.h │ │ │ ├── Makefile │ │ │ └── RootDomain.h │ │ ├── rtc │ │ │ ├── IORTCController.h │ │ │ └── Makefile │ │ ├── system.h │ │ └── system_management │ │ │ ├── IOWatchDogTimer.h │ │ │ └── Makefile │ ├── IOKitUser │ │ ├── IOBlockStorageDevice.h │ │ ├── IOBufferMemoryDescriptor.h │ │ ├── IODataQueueDispatchSource.h │ │ ├── IODispatchQueue.h │ │ ├── IODispatchSource.h │ │ ├── IOInterruptDispatchSource.h │ │ ├── IOMemoryDescriptor.h │ │ ├── IOMemoryMap.h │ │ ├── IOService.h │ │ ├── IOTimerDispatchSource.h │ │ ├── IOUserServer.h │ │ ├── Makefile │ │ ├── OSAction.h │ │ ├── OSArray.h │ │ ├── OSBoolean.h │ │ ├── OSCollection.h │ │ ├── OSContainer.h │ │ ├── OSData.h │ │ ├── OSDictionary.h │ │ ├── OSNumber.h │ │ ├── OSObject.h │ │ ├── OSSerialization.h │ │ └── OSString.h │ ├── Kernel │ │ ├── IOHibernateInternal.h │ │ ├── IOKitKernelInternal.h │ │ ├── IOPMPowerStateQueue.h │ │ ├── IOPMrootDomainInternal.h │ │ ├── IOReporterDefs.h │ │ ├── IOServicePMPrivate.h │ │ ├── IOServicePrivate.h │ │ ├── RootDomainUserClient.h │ │ ├── printPlist │ │ └── x86_64 │ │ │ └── IOAsmSupport.s │ ├── Makefile │ ├── System │ │ ├── IODataQueueDispatchSourceShared.h │ │ └── Makefile │ └── bsddev │ │ ├── DINetBootHook.h │ │ └── IOKitBSDInit.h │ ├── libkern │ ├── Makefile │ ├── c++ │ │ └── priority_queue.cpp │ ├── firehose │ │ ├── Makefile │ │ ├── chunk_private.h │ │ ├── firehose_types_private.h │ │ ├── ioctl_private.h │ │ ├── private.h │ │ └── tracepoint_private.h │ ├── gen │ │ └── OSAtomicOperations.c │ ├── kxld │ │ ├── Makefile │ │ ├── kxld_array.h │ │ ├── kxld_demangle.h │ │ ├── kxld_dict.h │ │ ├── kxld_kext.h │ │ ├── kxld_object.h │ │ ├── kxld_reloc.h │ │ ├── kxld_sect.h │ │ ├── kxld_seg.h │ │ ├── kxld_splitinfolc.h │ │ ├── kxld_srcversion.h │ │ ├── kxld_sym.h │ │ ├── kxld_symtab.h │ │ ├── kxld_util.h │ │ ├── kxld_uuid.h │ │ ├── kxld_versionmin.h │ │ ├── kxld_vtable.h │ │ └── tests │ │ │ ├── kxld_test.h │ │ │ └── loadtest.py │ ├── libkern │ │ ├── Block.h │ │ ├── Block_private.h │ │ ├── Makefile │ │ ├── OSAtomic.h │ │ ├── OSBase.h │ │ ├── OSByteOrder.h │ │ ├── OSCrossEndian.h │ │ ├── OSDebug.h │ │ ├── OSKextLib.h │ │ ├── OSKextLibPrivate.h │ │ ├── OSMalloc.h │ │ ├── OSReturn.h │ │ ├── OSRuntime.h │ │ ├── OSSerializeBinary.h │ │ ├── OSTypes.h │ │ ├── _OSByteOrder.h │ │ ├── arm │ │ │ ├── Makefile │ │ │ └── OSByteOrder.h │ │ ├── c++ │ │ │ ├── Makefile │ │ │ ├── OSAllocation.h │ │ │ ├── OSArray.h │ │ │ ├── OSBoolean.h │ │ │ ├── OSBoundedArray.h │ │ │ ├── OSBoundedArrayRef.h │ │ │ ├── OSBoundedPtr.h │ │ │ ├── OSBoundedPtrFwd.h │ │ │ ├── OSCPPDebug.h │ │ │ ├── OSCollection.h │ │ │ ├── OSCollectionIterator.h │ │ │ ├── OSContainers.h │ │ │ ├── OSData.h │ │ │ ├── OSDictionary.h │ │ │ ├── OSEndianTypes.h │ │ │ ├── OSIterator.h │ │ │ ├── OSKext.h │ │ │ ├── OSLib.h │ │ │ ├── OSMetaClass.h │ │ │ ├── OSNumber.h │ │ │ ├── OSObject.h │ │ │ ├── OSOrderedSet.h │ │ │ ├── OSPtr.h │ │ │ ├── OSSerialize.h │ │ │ ├── OSSet.h │ │ │ ├── OSSharedPtr.h │ │ │ ├── OSString.h │ │ │ ├── OSSymbol.h │ │ │ ├── OSUnserialize.h │ │ │ ├── bounded_array.h │ │ │ ├── bounded_array_ref.h │ │ │ ├── bounded_ptr.h │ │ │ ├── bounded_ptr_fwd.h │ │ │ ├── intrusive_shared_ptr.h │ │ │ └── safe_allocation.h │ │ ├── coretrust │ │ │ ├── Makefile │ │ │ └── coretrust.h │ │ ├── crc.h │ │ ├── crypto │ │ │ ├── Makefile │ │ │ ├── aes.h │ │ │ ├── aesxts.h │ │ │ ├── chacha20poly1305.h │ │ │ ├── crypto_internal.h │ │ │ ├── des.h │ │ │ ├── md5.h │ │ │ ├── rand.h │ │ │ ├── register_crypto.h │ │ │ ├── rsa.h │ │ │ ├── sha1.h │ │ │ └── sha2.h │ │ ├── i386 │ │ │ ├── Makefile │ │ │ ├── OSByteOrder.h │ │ │ └── _OSByteOrder.h │ │ ├── img4 │ │ │ ├── Makefile │ │ │ └── interface.h │ │ ├── kernel_mach_header.h │ │ ├── kext_panic_report.h │ │ ├── kext_request_keys.h │ │ ├── kxld.h │ │ ├── kxld_types.h │ │ ├── locks.h │ │ ├── machine │ │ │ ├── Makefile │ │ │ └── OSByteOrder.h │ │ ├── mkext.h │ │ ├── prelink.h │ │ ├── ptrauth_utils.h │ │ ├── section_keywords.h │ │ ├── stack_protector.h │ │ ├── sysctl.h │ │ ├── tree.h │ │ ├── version.h.template │ │ ├── zconf.h │ │ └── zlib.h │ ├── os │ │ ├── Makefile │ │ ├── atomic.h │ │ ├── atomic_private.h │ │ ├── atomic_private_arch.h │ │ ├── atomic_private_impl.h │ │ ├── base.h │ │ ├── base_private.h │ │ ├── cpp_util.h │ │ ├── firehose.h │ │ ├── hash.h │ │ ├── log.h │ │ ├── log_encode.h │ │ ├── log_encode_types.h │ │ ├── log_mem.h │ │ ├── log_private.h │ │ ├── object.h │ │ ├── overflow.h │ │ ├── ptrtools.h │ │ ├── reason_private.h │ │ ├── refcnt.c │ │ ├── refcnt.h │ │ ├── refcnt_internal.h │ │ ├── trace.h │ │ └── trace_internal.h │ └── zlib │ │ ├── README │ │ ├── crc32.h │ │ ├── deflate.h │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.h │ │ ├── inftrees.h │ │ ├── trees.h │ │ └── zutil.h │ ├── osfmk │ ├── Makefile │ ├── UserNotification │ │ ├── KUNCUserNotifications.c │ │ ├── KUNCUserNotifications.h │ │ ├── Makefile │ │ ├── UNDReply.defs │ │ ├── UNDRequest.defs │ │ ├── UNDTypes.defs │ │ └── UNDTypes.h │ ├── arm │ │ ├── Makefile │ │ ├── WKdmCompress_new.s │ │ ├── WKdmData_new.s │ │ ├── WKdmDecompress_new.s │ │ ├── arch.h │ │ ├── arm_init.c │ │ ├── arm_timer.c │ │ ├── arm_vm_init.c │ │ ├── asm.h │ │ ├── atomic.h │ │ ├── bcopy.s │ │ ├── bsd_arm.c │ │ ├── bzero.s │ │ ├── caches.c │ │ ├── caches_asm.s │ │ ├── caches_internal.h │ │ ├── commpage │ │ │ ├── commpage.c │ │ │ ├── commpage.h │ │ │ ├── commpage_asm.s │ │ │ └── commpage_sigs.h │ │ ├── counter.c │ │ ├── cpu.c │ │ ├── cpu_affinity.h │ │ ├── cpu_capabilities.h │ │ ├── cpu_common.c │ │ ├── cpu_data.h │ │ ├── cpu_data_internal.h │ │ ├── cpu_internal.h │ │ ├── cpu_number.h │ │ ├── cpu_x86_64_capabilities.h │ │ ├── cpuid.c │ │ ├── cpuid.h │ │ ├── cpuid_internal.h │ │ ├── cswitch.s │ │ ├── data.s │ │ ├── dbgwrap.c │ │ ├── dbgwrap.h │ │ ├── dwarf_unwind.h │ │ ├── exception.h │ │ ├── genassym.c │ │ ├── globals_asm.h │ │ ├── hw_lock_types.h │ │ ├── io_map.c │ │ ├── io_map_entries.h │ │ ├── kpc_arm.c │ │ ├── lock.h │ │ ├── locks.h │ │ ├── locks_arm.c │ │ ├── locore.s │ │ ├── loose_ends.c │ │ ├── lowglobals.h │ │ ├── lowmem_vectors.c │ │ ├── lz4_decode_armv7NEON.s │ │ ├── lz4_encode_armv7.s │ │ ├── machdep_call.c │ │ ├── machdep_call.h │ │ ├── machine_cpu.h │ │ ├── machine_cpuid.c │ │ ├── machine_cpuid.h │ │ ├── machine_kpc.h │ │ ├── machine_routines.c │ │ ├── machine_routines.h │ │ ├── machine_routines_apple.c │ │ ├── machine_routines_asm.s │ │ ├── machine_routines_common.c │ │ ├── machine_task.c │ │ ├── machlimits.h │ │ ├── machparam.h │ │ ├── memory_types.h │ │ ├── misc_protos.h │ │ ├── model_dep.c │ │ ├── monotonic.h │ │ ├── monotonic_arm.c │ │ ├── pal_routines.c │ │ ├── pal_routines.h │ │ ├── pcb.c │ │ ├── pmap.c │ │ ├── pmap.h │ │ ├── pmap_public.h │ │ ├── proc_reg.h │ │ ├── rtclock.c │ │ ├── rtclock.h │ │ ├── sched_param.h │ │ ├── setjmp.h │ │ ├── simple_lock.h │ │ ├── smp.h │ │ ├── start.s │ │ ├── status.c │ │ ├── status_shared.c │ │ ├── strlcpy.c │ │ ├── strlen.s │ │ ├── strncmp.s │ │ ├── strncpy.c │ │ ├── strnlen.s │ │ ├── task.h │ │ ├── thread.h │ │ ├── tlb.h │ │ ├── trap.c │ │ ├── trap.h │ │ ├── trustcache.c │ │ └── vm_tuning.h │ ├── arm64 │ │ ├── Makefile │ │ ├── WKdmCompress_16k.s │ │ ├── WKdmCompress_4k.s │ │ ├── WKdmData.s │ │ ├── WKdmDecompress_16k.s │ │ ├── WKdmDecompress_4k.s │ │ ├── alternate_debugger.c │ │ ├── alternate_debugger.h │ │ ├── alternate_debugger_asm.s │ │ ├── amcc_rorgn.h │ │ ├── arm_vm_init.c │ │ ├── asm.h │ │ ├── bcopy.s │ │ ├── bsd_arm64.c │ │ ├── bzero.s │ │ ├── caches_asm.s │ │ ├── copyio.c │ │ ├── corecrypto │ │ │ ├── arm64_isa_compatibility.h │ │ │ └── sha256_compress_arm64.s │ │ ├── cpu.c │ │ ├── cswitch.s │ │ ├── dbgwrap.c │ │ ├── dwarf_unwind.h │ │ ├── exception_asm.h │ │ ├── genassym.c │ │ ├── gxf_exceptions.s │ │ ├── hibernate_arm64.c │ │ ├── hibernate_ppl_hmac.c │ │ ├── hibernate_ppl_hmac.h │ │ ├── hibernate_restore.c │ │ ├── instructions.h │ │ ├── kpc.c │ │ ├── locore.s │ │ ├── loose_ends.c │ │ ├── lowglobals.h │ │ ├── lowmem_vectors.c │ │ ├── lz4_decode_arm64.s │ │ ├── lz4_encode_arm64.s │ │ ├── machine_cpuid.h │ │ ├── machine_kpc.h │ │ ├── machine_machdep.h │ │ ├── machine_remote_time.c │ │ ├── machine_remote_time.h │ │ ├── machine_routines.c │ │ ├── machine_routines_asm.h │ │ ├── machine_routines_asm.s │ │ ├── machine_task.c │ │ ├── memcmp_zero.s │ │ ├── monotonic.h │ │ ├── monotonic_arm64.c │ │ ├── pac_asm.h │ │ ├── pal_hibernate.h │ │ ├── pcb.c │ │ ├── pgtrace.c │ │ ├── pgtrace.h │ │ ├── pgtrace_decoder.c │ │ ├── pgtrace_decoder.h │ │ ├── pinst.s │ │ ├── platform_tests.c │ │ ├── platform_tests_asm.s │ │ ├── proc_reg.h │ │ ├── sleh.c │ │ ├── smccc_asm.h │ │ ├── start.s │ │ ├── status.c │ │ ├── strncmp.s │ │ ├── strnlen.s │ │ └── tlb.h │ ├── atm │ │ ├── Makefile │ │ ├── atm_internal.h │ │ ├── atm_notification.defs │ │ ├── atm_types.defs │ │ └── atm_types.h │ ├── bank │ │ ├── Makefile │ │ ├── bank.c │ │ ├── bank_internal.h │ │ └── bank_types.h │ ├── conf │ │ ├── Makefile │ │ ├── Makefile.arm │ │ ├── Makefile.arm64 │ │ ├── Makefile.template │ │ ├── Makefile.x86_64 │ │ ├── copyright │ │ ├── copyright.cmu │ │ ├── copyright.osf │ │ ├── files │ │ ├── files.arm │ │ ├── files.arm64 │ │ └── files.x86_64 │ ├── corpses │ │ ├── Makefile │ │ ├── corpse.c │ │ └── task_corpse.h │ ├── default_pager │ │ ├── Makefile │ │ └── default_pager_types.h │ ├── device │ │ ├── Makefile │ │ ├── device.defs │ │ ├── device_init.c │ │ ├── device_port.h │ │ ├── device_types.defs │ │ ├── device_types.h │ │ ├── iokit_rpc.c │ │ └── subrs.c │ ├── gssd │ │ ├── Makefile │ │ ├── gssd_mach.defs │ │ └── gssd_mach_types.h │ ├── i386 │ │ ├── AT386 │ │ │ └── model_dep.c │ │ ├── Diagnostics.c │ │ ├── Diagnostics.h │ │ ├── Makefile │ │ ├── acpi.c │ │ ├── acpi.h │ │ ├── apic.h │ │ ├── arch_types.h │ │ ├── asm.h │ │ ├── asm64.h │ │ ├── atomic.h │ │ ├── bit_routines.h │ │ ├── bsd_i386.c │ │ ├── bsd_i386_native.c │ │ ├── commpage │ │ │ ├── commpage.c │ │ │ ├── commpage.h │ │ │ ├── commpage_asm.s │ │ │ └── fifo_queues.s │ │ ├── cpu.c │ │ ├── cpu_affinity.h │ │ ├── cpu_capabilities.h │ │ ├── cpu_data.h │ │ ├── cpu_number.h │ │ ├── cpu_threads.c │ │ ├── cpu_threads.h │ │ ├── cpu_topology.c │ │ ├── cpu_topology.h │ │ ├── cpuid.c │ │ ├── cpuid.h │ │ ├── eflags.h │ │ ├── endian.h │ │ ├── exec.h │ │ ├── fp_simd.s │ │ ├── fpu.c │ │ ├── fpu.h │ │ ├── gdt.c │ │ ├── genassym.c │ │ ├── hibernate_i386.c │ │ ├── hibernate_restore.c │ │ ├── hpet.c │ │ ├── hpet.h │ │ ├── hw_defs.h │ │ ├── hw_lock_types.h │ │ ├── i386_init.c │ │ ├── i386_lock.s │ │ ├── i386_lowmem.h │ │ ├── i386_timer.c │ │ ├── i386_vm_init.c │ │ ├── io_map.c │ │ ├── io_map_entries.h │ │ ├── io_port.h │ │ ├── iopb.h │ │ ├── ktss.c │ │ ├── lapic.c │ │ ├── lapic.h │ │ ├── lapic_native.c │ │ ├── ldt.c │ │ ├── lock.h │ │ ├── locks.h │ │ ├── locks_i386.c │ │ ├── locks_i386_inlines.h │ │ ├── locks_i386_opt.c │ │ ├── machdep_call.c │ │ ├── machdep_call.h │ │ ├── machine_check.c │ │ ├── machine_check.h │ │ ├── machine_cpu.h │ │ ├── machine_routines.c │ │ ├── machine_routines.h │ │ ├── machine_rpc.h │ │ ├── machine_task.c │ │ ├── machlimits.h │ │ ├── machparam.h │ │ ├── memory_types.h │ │ ├── misc_protos.h │ │ ├── mp.c │ │ ├── mp.h │ │ ├── mp_desc.c │ │ ├── mp_desc.h │ │ ├── mp_events.h │ │ ├── mp_native.c │ │ ├── mtrr.c │ │ ├── mtrr.h │ │ ├── pal_hibernate.h │ │ ├── pal_lock_asm.h │ │ ├── pal_native.h │ │ ├── pal_routines.c │ │ ├── pal_routines.h │ │ ├── pal_rtclock_asm.h │ │ ├── panic_hooks.c │ │ ├── panic_hooks.h │ │ ├── panic_notify.c │ │ ├── panic_notify.h │ │ ├── pcb.c │ │ ├── pcb_native.c │ │ ├── phys.c │ │ ├── pio.h │ │ ├── pmCPU.c │ │ ├── pmCPU.h │ │ ├── pmap.h │ │ ├── pmap_common.c │ │ ├── pmap_internal.h │ │ ├── pmap_pcid.h │ │ ├── pmap_x86_common.c │ │ ├── postcode.h │ │ ├── proc_reg.h │ │ ├── rtclock.c │ │ ├── rtclock_asm.h │ │ ├── rtclock_asm_native.h │ │ ├── rtclock_native.c │ │ ├── rtclock_protos.h │ │ ├── sched_param.h │ │ ├── seg.h │ │ ├── serial_io.h │ │ ├── setjmp.h │ │ ├── simple_lock.h │ │ ├── smp.h │ │ ├── stab.h │ │ ├── task.h │ │ ├── thread.h │ │ ├── trap.c │ │ ├── trap.h │ │ ├── trap_native.c │ │ ├── tsc.c │ │ ├── tsc.h │ │ ├── tss.h │ │ ├── ucode.c │ │ ├── ucode.h │ │ ├── user_ldt.c │ │ ├── user_ldt.h │ │ ├── vm_tuning.h │ │ ├── vmx.h │ │ ├── vmx │ │ │ ├── vmx_asm.h │ │ │ ├── vmx_cpu.c │ │ │ ├── vmx_cpu.h │ │ │ ├── vmx_shims.c │ │ │ └── vmx_shims.h │ │ ├── x86_hypercall.c │ │ └── x86_hypercall.h │ ├── ipc │ │ ├── Makefile │ │ ├── flipc.c │ │ ├── flipc.h │ │ ├── ipc_entry.c │ │ ├── ipc_entry.h │ │ ├── ipc_eventlink.c │ │ ├── ipc_eventlink.h │ │ ├── ipc_hash.c │ │ ├── ipc_hash.h │ │ ├── ipc_importance.c │ │ ├── ipc_importance.h │ │ ├── ipc_init.c │ │ ├── ipc_init.h │ │ ├── ipc_kmsg.c │ │ ├── ipc_kmsg.h │ │ ├── ipc_machdep.h │ │ ├── ipc_mqueue.c │ │ ├── ipc_mqueue.h │ │ ├── ipc_notify.c │ │ ├── ipc_notify.h │ │ ├── ipc_object.c │ │ ├── ipc_object.h │ │ ├── ipc_port.c │ │ ├── ipc_port.h │ │ ├── ipc_pset.c │ │ ├── ipc_pset.h │ │ ├── ipc_right.c │ │ ├── ipc_right.h │ │ ├── ipc_space.c │ │ ├── ipc_space.h │ │ ├── ipc_table.c │ │ ├── ipc_table.h │ │ ├── ipc_types.h │ │ ├── ipc_voucher.c │ │ ├── ipc_voucher.h │ │ ├── mach_debug.c │ │ ├── mach_kernelrpc.c │ │ ├── mach_msg.c │ │ ├── mach_port.c │ │ ├── mig_log.c │ │ └── port.h │ ├── kdp │ │ ├── Makefile │ │ ├── kdp.c │ │ ├── kdp.h │ │ ├── kdp_callout.h │ │ ├── kdp_core.c │ │ ├── kdp_core.h │ │ ├── kdp_dyld.h │ │ ├── kdp_en_debugger.h │ │ ├── kdp_internal.h │ │ ├── kdp_private.h │ │ ├── kdp_protocol.h │ │ ├── kdp_serial.c │ │ ├── kdp_serial.h │ │ ├── kdp_udp.c │ │ ├── kdp_udp.h │ │ ├── ml │ │ │ ├── arm │ │ │ │ ├── kdp_machdep.c │ │ │ │ └── kdp_vm.c │ │ │ ├── i386 │ │ │ │ ├── kdp_x86_common.c │ │ │ │ └── kdp_x86_common.h │ │ │ └── x86_64 │ │ │ │ ├── kdp_machdep.c │ │ │ │ └── kdp_vm.c │ │ ├── processor_core.c │ │ └── processor_core.h │ ├── kern │ │ ├── Makefile │ │ ├── affinity.c │ │ ├── affinity.h │ │ ├── arcade.c │ │ ├── arcade.h │ │ ├── arithmetic_128.h │ │ ├── assert.h │ │ ├── ast.c │ │ ├── ast.h │ │ ├── audit_sessionport.c │ │ ├── audit_sessionport.h │ │ ├── backtrace.c │ │ ├── backtrace.h │ │ ├── bits.h │ │ ├── block_hint.h │ │ ├── bsd_kern.c │ │ ├── btlog.c │ │ ├── btlog.h │ │ ├── build_config.c │ │ ├── build_config.h │ │ ├── cambria_layout.h │ │ ├── circle_queue.h │ │ ├── clock.c │ │ ├── clock.h │ │ ├── clock_oldops.c │ │ ├── coalition.c │ │ ├── coalition.h │ │ ├── copyout_shim.c │ │ ├── copyout_shim.h │ │ ├── counter.h │ │ ├── counter_common.c │ │ ├── cpu_data.h │ │ ├── cpu_number.h │ │ ├── cpu_quiesce.c │ │ ├── cpu_quiesce.h │ │ ├── cs_blobs.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── ecc.h │ │ ├── ecc_logging.c │ │ ├── energy_perf.c │ │ ├── energy_perf.h │ │ ├── exc_guard.h │ │ ├── exc_resource.h │ │ ├── exception.c │ │ ├── exception.h │ │ ├── extmod_statistics.c │ │ ├── extmod_statistics.h │ │ ├── gzalloc.c │ │ ├── hibernate.c │ │ ├── host.c │ │ ├── host.h │ │ ├── host_notify.c │ │ ├── host_notify.h │ │ ├── host_statistics.h │ │ ├── hv_io_notifier.c │ │ ├── hv_io_notifier.h │ │ ├── hv_support.h │ │ ├── hv_support_kext.c │ │ ├── hv_support_kext.h │ │ ├── hvg_hypercall.h │ │ ├── ipc_clock.c │ │ ├── ipc_host.c │ │ ├── ipc_host.h │ │ ├── ipc_kobject.c │ │ ├── ipc_kobject.h │ │ ├── ipc_mig.c │ │ ├── ipc_mig.h │ │ ├── ipc_misc.c │ │ ├── ipc_misc.h │ │ ├── ipc_sync.c │ │ ├── ipc_sync.h │ │ ├── ipc_tt.c │ │ ├── ipc_tt.h │ │ ├── kalloc.c │ │ ├── kalloc.h │ │ ├── kcdata.h │ │ ├── kern_cdata.c │ │ ├── kern_cdata.h │ │ ├── kern_monotonic.c │ │ ├── kern_stackshot.c │ │ ├── kern_types.h │ │ ├── kext_alloc.c │ │ ├── kext_alloc.h │ │ ├── kmod.c │ │ ├── kpc.h │ │ ├── kpc_common.c │ │ ├── kpc_thread.c │ │ ├── ktrace_background_notify.c │ │ ├── ledger.c │ │ ├── ledger.h │ │ ├── lock.h │ │ ├── lock_group.h │ │ ├── lock_stat.h │ │ ├── locks.c │ │ ├── locks.h │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── mach_filter.h │ │ ├── mach_node.c │ │ ├── mach_node.h │ │ ├── mach_node_link.h │ │ ├── mach_param.h │ │ ├── machine.c │ │ ├── machine.h │ │ ├── macro_help.h │ │ ├── memset_s.c │ │ ├── misc_protos.h │ │ ├── mk_sp.c │ │ ├── mk_timer.c │ │ ├── mk_timer.h │ │ ├── monotonic.h │ │ ├── mpqueue.h │ │ ├── mpsc_queue.c │ │ ├── mpsc_queue.h │ │ ├── page_decrypt.c │ │ ├── page_decrypt.h │ │ ├── percpu.h │ │ ├── pms.h │ │ ├── policy_internal.h │ │ ├── printf.c │ │ ├── priority.c │ │ ├── priority_queue.h │ │ ├── processor.c │ │ ├── processor.h │ │ ├── queue.h │ │ ├── remote_time.c │ │ ├── remote_time.h │ │ ├── restartable.c │ │ ├── restartable.h │ │ ├── sched.h │ │ ├── sched_amp.c │ │ ├── sched_amp_common.c │ │ ├── sched_amp_common.h │ │ ├── sched_average.c │ │ ├── sched_clutch.c │ │ ├── sched_clutch.h │ │ ├── sched_clutch.md │ │ ├── sched_dualq.c │ │ ├── sched_grrr.c │ │ ├── sched_multiq.c │ │ ├── sched_prim.c │ │ ├── sched_prim.h │ │ ├── sched_proto.c │ │ ├── sched_traditional.c │ │ ├── sched_urgency.h │ │ ├── sfi.c │ │ ├── sfi.h │ │ ├── simple_lock.h │ │ ├── smp.h │ │ ├── spl.c │ │ ├── spl.h │ │ ├── stack.c │ │ ├── startup.c │ │ ├── startup.h │ │ ├── suid_cred.c │ │ ├── suid_cred.h │ │ ├── sync_lock.c │ │ ├── sync_lock.h │ │ ├── sync_sema.c │ │ ├── sync_sema.h │ │ ├── syscall_emulation.c │ │ ├── syscall_subr.c │ │ ├── syscall_subr.h │ │ ├── syscall_sw.c │ │ ├── syscall_sw.h │ │ ├── sysdiagnose.c │ │ ├── task.c │ │ ├── task.h │ │ ├── task_ident.c │ │ ├── task_ident.h │ │ ├── task_policy.c │ │ ├── telemetry.c │ │ ├── telemetry.h │ │ ├── test_lock.c │ │ ├── test_mpsc_queue.c │ │ ├── thread.c │ │ ├── thread.h │ │ ├── thread_act.c │ │ ├── thread_call.c │ │ ├── thread_call.h │ │ ├── thread_group.c │ │ ├── thread_group.h │ │ ├── thread_kernel_state.h │ │ ├── thread_policy.c │ │ ├── timer.c │ │ ├── timer.h │ │ ├── timer_call.c │ │ ├── timer_call.h │ │ ├── timer_queue.h │ │ ├── tlock.c │ │ ├── trustcache.h │ │ ├── turnstile.c │ │ ├── turnstile.h │ │ ├── ux_handler.c │ │ ├── ux_handler.h │ │ ├── waitq.c │ │ ├── waitq.h │ │ ├── work_interval.c │ │ ├── work_interval.h │ │ ├── zalloc.c │ │ ├── zalloc.h │ │ └── zalloc_internal.h │ ├── kextd │ │ ├── Makefile │ │ └── kextd_mach.defs │ ├── kperf │ │ ├── Makefile │ │ ├── action.c │ │ ├── action.h │ │ ├── ast.h │ │ ├── buffer.h │ │ ├── callstack.c │ │ ├── callstack.h │ │ ├── context.h │ │ ├── kdebug_trigger.c │ │ ├── kdebug_trigger.h │ │ ├── kperf.c │ │ ├── kperf.h │ │ ├── kperf_kpc.c │ │ ├── kperf_kpc.h │ │ ├── kperfbsd.c │ │ ├── kperfbsd.h │ │ ├── kptimer.c │ │ ├── kptimer.h │ │ ├── lazy.c │ │ ├── lazy.h │ │ ├── meminfo.c │ │ ├── meminfo.h │ │ ├── pet.c │ │ ├── pet.h │ │ ├── sample.h │ │ ├── task_samplers.c │ │ ├── task_samplers.h │ │ ├── thread_samplers.c │ │ └── thread_samplers.h │ ├── libsa │ │ ├── Makefile │ │ ├── arm │ │ │ └── types.h │ │ ├── i386 │ │ │ └── types.h │ │ ├── machine │ │ │ └── types.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ │ └── timers.h │ │ └── types.h │ ├── lockd │ │ ├── Makefile │ │ ├── lockd_mach.defs │ │ └── lockd_mach_types.h │ ├── mach │ │ ├── Makefile │ │ ├── arcade_register.defs │ │ ├── arcade_upcall.defs │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── _structs.h │ │ │ ├── boolean.h │ │ │ ├── exception.h │ │ │ ├── kern_return.h │ │ │ ├── ndr_def.h │ │ │ ├── processor_info.h │ │ │ ├── rpc.h │ │ │ ├── sdt_isa.h │ │ │ ├── syscall_sw.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── traps.h │ │ │ ├── vm_param.h │ │ │ └── vm_types.h │ │ ├── arm64 │ │ │ └── Makefile │ │ ├── audit_triggers.defs │ │ ├── audit_triggers_types.h │ │ ├── boolean.h │ │ ├── bootstrap.h │ │ ├── clock.defs │ │ ├── clock_priv.defs │ │ ├── clock_reply.defs │ │ ├── clock_types.defs │ │ ├── clock_types.h │ │ ├── coalition.h │ │ ├── coalition_notification.defs │ │ ├── dyld_kernel.h │ │ ├── dyld_kernel_fixups.h │ │ ├── error.h │ │ ├── events_info.h │ │ ├── exc.defs │ │ ├── exception.h │ │ ├── exception_types.h │ │ ├── fairplayd_notification.defs │ │ ├── host_info.h │ │ ├── host_notify.h │ │ ├── host_notify_reply.defs │ │ ├── host_priv.defs │ │ ├── host_reboot.h │ │ ├── host_security.defs │ │ ├── host_special_ports.h │ │ ├── i386 │ │ │ ├── Makefile │ │ │ ├── _structs.h │ │ │ ├── boolean.h │ │ │ ├── exception.h │ │ │ ├── fp_reg.h │ │ │ ├── kern_return.h │ │ │ ├── ndr_def.h │ │ │ ├── processor_info.h │ │ │ ├── rpc.h │ │ │ ├── sdt_isa.h │ │ │ ├── syscall_sw.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── vm_param.h │ │ │ └── vm_types.h │ │ ├── iocompressionstats_notification.defs │ │ ├── kern_return.h │ │ ├── kmod.h │ │ ├── ktrace_background.defs │ │ ├── ledger.defs │ │ ├── lock_set.defs │ │ ├── mach.h │ │ ├── mach_eventlink.defs │ │ ├── mach_eventlink_types.h │ │ ├── mach_exc.defs │ │ ├── mach_host.defs │ │ ├── mach_interface.h │ │ ├── mach_notify.defs │ │ ├── mach_param.h │ │ ├── mach_port.defs │ │ ├── mach_syscalls.h │ │ ├── mach_time.h │ │ ├── mach_traps.h │ │ ├── mach_types.defs │ │ ├── mach_types.h │ │ ├── mach_vm.defs │ │ ├── mach_voucher.defs │ │ ├── mach_voucher_attr_control.defs │ │ ├── mach_voucher_types.h │ │ ├── machine.h │ │ ├── machine │ │ │ ├── Makefile │ │ │ ├── _structs.h │ │ │ ├── asm.h │ │ │ ├── boolean.h │ │ │ ├── exception.h │ │ │ ├── kern_return.h │ │ │ ├── machine_types.defs │ │ │ ├── ndr_def.h │ │ │ ├── processor_info.h │ │ │ ├── rpc.h │ │ │ ├── sdt.h │ │ │ ├── sdt_isa.h │ │ │ ├── syscall_sw.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── vm_param.h │ │ │ └── vm_types.h │ │ ├── memory_entry.defs │ │ ├── memory_object.defs │ │ ├── memory_object.h │ │ ├── memory_object_control.defs │ │ ├── memory_object_default.defs │ │ ├── memory_object_types.h │ │ ├── message.h │ │ ├── mig.h │ │ ├── mig_errors.h │ │ ├── mig_log.h │ │ ├── mig_strncpy_zerofill_support.h │ │ ├── mig_voucher_support.h │ │ ├── mk_timer.h │ │ ├── mk_traps.h │ │ ├── msg_type.h │ │ ├── ndr.h │ │ ├── notify.defs │ │ ├── notify.h │ │ ├── policy.h │ │ ├── port.h │ │ ├── processor.defs │ │ ├── processor_info.h │ │ ├── processor_set.defs │ │ ├── prof.defs │ │ ├── prof_types.h │ │ ├── resource_monitors.h │ │ ├── resource_notify.defs │ │ ├── restartable.defs │ │ ├── rpc.h │ │ ├── sdt.h │ │ ├── semaphore.defs │ │ ├── semaphore.h │ │ ├── sfi_class.h │ │ ├── shared_memory_server.h │ │ ├── shared_region.h │ │ ├── std_types.defs │ │ ├── std_types.h │ │ ├── sync.defs │ │ ├── sync_policy.h │ │ ├── syscall_sw.h │ │ ├── sysdiagnose_notification.defs │ │ ├── task.defs │ │ ├── task_access.defs │ │ ├── task_info.h │ │ ├── task_inspect.h │ │ ├── task_ledger.h │ │ ├── task_policy.h │ │ ├── task_special_ports.h │ │ ├── telemetry_notification.defs │ │ ├── thread_act.defs │ │ ├── thread_info.h │ │ ├── thread_policy.h │ │ ├── thread_special_ports.h │ │ ├── thread_status.h │ │ ├── thread_switch.h │ │ ├── time_value.h │ │ ├── upl.defs │ │ ├── vfs_nspace.defs │ │ ├── vm32_map.defs │ │ ├── vm_attributes.h │ │ ├── vm_behavior.h │ │ ├── vm_inherit.h │ │ ├── vm_map.defs │ │ ├── vm_param.h │ │ ├── vm_prot.h │ │ ├── vm_purgable.h │ │ ├── vm_region.h │ │ ├── vm_statistics.h │ │ ├── vm_sync.h │ │ └── vm_types.h │ ├── mach_debug │ │ ├── Makefile │ │ ├── hash_info.h │ │ ├── ipc_info.h │ │ ├── lockgroup_info.h │ │ ├── mach_debug.h │ │ ├── mach_debug_types.defs │ │ ├── mach_debug_types.h │ │ ├── page_info.h │ │ ├── vm_info.h │ │ └── zone_info.h │ ├── machine │ │ ├── Makefile │ │ ├── asm.h │ │ ├── atomic.h │ │ ├── commpage.h │ │ ├── config.h │ │ ├── cpu_affinity.h │ │ ├── cpu_capabilities.h │ │ ├── cpu_data.h │ │ ├── cpu_number.h │ │ ├── endian.h │ │ ├── io_map_entries.h │ │ ├── lock.h │ │ ├── locks.h │ │ ├── lowglobals.h │ │ ├── machine_cpu.h │ │ ├── machine_cpuid.h │ │ ├── machine_kpc.h │ │ ├── machine_remote_time.h │ │ ├── machine_routines.h │ │ ├── machine_rpc.h │ │ ├── machlimits.h │ │ ├── machparam.h │ │ ├── memory_types.h │ │ ├── monotonic.h │ │ ├── pal_hibernate.h │ │ ├── pal_routines.h │ │ ├── pmap.h │ │ ├── sched_param.h │ │ ├── setjmp.h │ │ ├── simple_lock.h │ │ ├── smp.h │ │ ├── task.h │ │ ├── thread.h │ │ ├── trap.h │ │ └── vm_tuning.h │ ├── prng │ │ ├── Makefile │ │ ├── entropy.c │ │ ├── entropy.h │ │ ├── prng_random.c │ │ └── random.h │ ├── vm │ │ ├── Makefile │ │ ├── WKdm_new.h │ │ ├── bsd_vm.c │ │ ├── cpm.h │ │ ├── device_vm.c │ │ ├── lz4.c │ │ ├── lz4.h │ │ ├── lz4_assembly_select.h │ │ ├── lz4_constants.h │ │ ├── memory_object.c │ │ ├── memory_object.h │ │ ├── memory_types.h │ │ ├── pmap.h │ │ ├── vm32_user.c │ │ ├── vm_apple_protect.c │ │ ├── vm_compressor.c │ │ ├── vm_compressor.h │ │ ├── vm_compressor_algorithms.c │ │ ├── vm_compressor_algorithms.h │ │ ├── vm_compressor_backing_store.c │ │ ├── vm_compressor_backing_store.h │ │ ├── vm_compressor_pager.c │ │ ├── vm_compressor_pager.h │ │ ├── vm_debug.c │ │ ├── vm_debug.h │ │ ├── vm_external.h │ │ ├── vm_fault.c │ │ ├── vm_fault.h │ │ ├── vm_fourk_pager.c │ │ ├── vm_init.c │ │ ├── vm_init.h │ │ ├── vm_kern.c │ │ ├── vm_kern.h │ │ ├── vm_map.c │ │ ├── vm_map.h │ │ ├── vm_map_store.c │ │ ├── vm_map_store.h │ │ ├── vm_map_store_ll.c │ │ ├── vm_map_store_ll.h │ │ ├── vm_map_store_rb.c │ │ ├── vm_map_store_rb.h │ │ ├── vm_object.c │ │ ├── vm_object.h │ │ ├── vm_options.h │ │ ├── vm_page.h │ │ ├── vm_pageout.c │ │ ├── vm_pageout.h │ │ ├── vm_phantom_cache.c │ │ ├── vm_phantom_cache.h │ │ ├── vm_protos.h │ │ ├── vm_purgeable.c │ │ ├── vm_purgeable_internal.h │ │ ├── vm_resident.c │ │ ├── vm_shared_region.c │ │ ├── vm_shared_region.h │ │ ├── vm_shared_region_pager.c │ │ ├── vm_swapfile_pager.c │ │ ├── vm_tests.c │ │ └── vm_user.c │ ├── voucher │ │ ├── Makefile │ │ ├── ipc_pthread_priority.c │ │ ├── ipc_pthread_priority_internal.h │ │ └── ipc_pthread_priority_types.h │ └── x86_64 │ │ ├── Makefile │ │ ├── WKdmCompress_new.s │ │ ├── WKdmData_new.s │ │ ├── WKdmDecompress_new.s │ │ ├── bcopy.s │ │ ├── boot_pt.c │ │ ├── bzero.s │ │ ├── copyio.c │ │ ├── counter.c │ │ ├── cswitch.s │ │ ├── dwarf_unwind.h │ │ ├── idt64.s │ │ ├── idt_table.h │ │ ├── kpc_x86.c │ │ ├── locore.s │ │ ├── loose_ends.c │ │ ├── lowglobals.h │ │ ├── lowmem_vectors.c │ │ ├── lz4_decode_x86_64.s │ │ ├── machine_kpc.h │ │ ├── machine_remote_time.c │ │ ├── machine_remote_time.h │ │ ├── machine_routines_asm.s │ │ ├── mcount.s │ │ ├── monotonic.h │ │ ├── monotonic_x86_64.c │ │ ├── pal_routines_asm.s │ │ ├── pmap.c │ │ ├── pmap_pcid.c │ │ └── start.s │ ├── pexpert │ ├── Makefile │ ├── i386 │ │ └── boot_images.h │ └── pexpert │ │ ├── AppleBoot.h │ │ ├── Clut.h │ │ ├── GearImage.h │ │ ├── Makefile │ │ ├── arm │ │ ├── AIC.h │ │ ├── Makefile │ │ ├── PL192_VIC.h │ │ ├── S3cUART.h │ │ ├── T8002.h │ │ ├── board_config.h │ │ ├── boot.h │ │ ├── consistent_debug.h │ │ ├── dockchannel.h │ │ └── protos.h │ │ ├── arm64 │ │ ├── AIC.h │ │ ├── BCM2837.h │ │ ├── H11.h │ │ ├── H13.h │ │ ├── H7.h │ │ ├── H8.h │ │ ├── H9.h │ │ ├── Makefile │ │ ├── S3c2410x.h │ │ ├── VMAPPLE.h │ │ ├── apple_arm64_common.h │ │ ├── apple_arm64_regs.h │ │ ├── board_config.h │ │ ├── boot.h │ │ └── spr_locks.h │ │ ├── boot.h │ │ ├── device_tree.h │ │ ├── i386 │ │ ├── Makefile │ │ ├── boot.h │ │ ├── efi.h │ │ └── protos.h │ │ ├── machine │ │ ├── Makefile │ │ ├── boot.h │ │ └── protos.h │ │ ├── pe_images.h │ │ ├── pexpert.h │ │ └── protos.h │ ├── san │ ├── kasan.h │ ├── kasan_internal.h │ ├── ksancov.h │ ├── memintrinsics.h │ └── ubsan.h │ └── security │ ├── Makefile │ ├── _label.h │ ├── mac.h │ ├── mac_data.h │ ├── mac_framework.h │ ├── mac_internal.h │ ├── mac_mach_internal.h │ └── mac_policy.h ├── include └── darlingserver │ └── rpc-supplement.h ├── internal-include └── darlingserver │ ├── async-writer.hpp │ ├── call.hpp │ ├── config.hpp │ ├── kqchan.hpp │ ├── logging.hpp │ ├── message.hpp │ ├── monitor.hpp │ ├── process.hpp │ ├── registry.hpp │ ├── server.hpp │ ├── stack-pool.hpp │ ├── thread.hpp │ ├── utility.hpp │ └── workers.hpp ├── scripts └── generate-rpc-wrappers.py ├── src ├── async-writer.cpp ├── call.cpp ├── darlingserver.cpp ├── kqchan.cpp ├── logging.cpp ├── message.cpp ├── process.cpp ├── registry.cpp ├── server.cpp ├── stack-pool.cpp ├── thread.cpp └── utility.cpp └── tools ├── CMakeLists.txt ├── dserverdbg-rpc-defs.h └── dserverdbg.c /.gitignore: -------------------------------------------------------------------------------- 1 | .gdb_history 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /duct-tape/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/CMakeLists.txt -------------------------------------------------------------------------------- /duct-tape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/README.md -------------------------------------------------------------------------------- /duct-tape/defines/advisory_pageout.h: -------------------------------------------------------------------------------- 1 | #define ADVISORY_PAGEOUT 1 2 | -------------------------------------------------------------------------------- /duct-tape/defines/config_dtrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /duct-tape/defines/cputypes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /duct-tape/defines/debug.h: -------------------------------------------------------------------------------- 1 | #define DEBUG 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/fast_tas.h: -------------------------------------------------------------------------------- 1 | #define FAST_TAS 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/kdebug.h: -------------------------------------------------------------------------------- 1 | #define KDEBUG 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/mach_assert.h: -------------------------------------------------------------------------------- 1 | #define MACH_ASSERT 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/mach_counters.h: -------------------------------------------------------------------------------- 1 | #define MACH_COUNTERS 1 2 | -------------------------------------------------------------------------------- /duct-tape/defines/mach_debug.h: -------------------------------------------------------------------------------- 1 | #define MACH_DEBUG 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/mach_ipc_debug.h: -------------------------------------------------------------------------------- 1 | #define MACH_IPC_DEBUG 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/mach_ipc_test.h: -------------------------------------------------------------------------------- 1 | #define MACH_IPC_TEST 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/mach_ldebug.h: -------------------------------------------------------------------------------- 1 | #define MACH_LDEBUG 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/mach_pagemap.h: -------------------------------------------------------------------------------- 1 | #define MACH_PAGEMAP 1 2 | -------------------------------------------------------------------------------- /duct-tape/defines/mach_rt.h: -------------------------------------------------------------------------------- 1 | #define MACH_RT 1 2 | -------------------------------------------------------------------------------- /duct-tape/defines/mach_vm_debug.h: -------------------------------------------------------------------------------- 1 | #define MACH_VM_DEBUG 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/mig_debug.h: -------------------------------------------------------------------------------- 1 | #define MIG_DEBUG 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/norma_task.h: -------------------------------------------------------------------------------- 1 | #define NORMA_TASK 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/norma_vm.h: -------------------------------------------------------------------------------- 1 | #define NORMA_VM 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/platforms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /duct-tape/defines/sys/kdebug_private.h: -------------------------------------------------------------------------------- 1 | ../../xnu/bsd/sys_private/kdebug_private.h -------------------------------------------------------------------------------- /duct-tape/defines/task_swapper.h: -------------------------------------------------------------------------------- 1 | #define TASK_SWAPPER 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/time_stamp.h: -------------------------------------------------------------------------------- 1 | #define TIME_STAMP 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/vm_cpm.h: -------------------------------------------------------------------------------- 1 | #define VM_CPM 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/xpr_debug.h: -------------------------------------------------------------------------------- 1 | #define XPR_DEBUG 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/zone_alias_addr.h: -------------------------------------------------------------------------------- 1 | #define ZONE_ALIAS_ADDR 0 2 | -------------------------------------------------------------------------------- /duct-tape/defines/zone_debug.h: -------------------------------------------------------------------------------- 1 | #define ZONE_DEBUG 0 2 | -------------------------------------------------------------------------------- /duct-tape/pthread/kern: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /duct-tape/pthread/kern_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/pthread/kern_init.c -------------------------------------------------------------------------------- /duct-tape/pthread/kern_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/pthread/kern_internal.h -------------------------------------------------------------------------------- /duct-tape/pthread/kern_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/pthread/kern_support.c -------------------------------------------------------------------------------- /duct-tape/pthread/kern_synch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/pthread/kern_synch.c -------------------------------------------------------------------------------- /duct-tape/pthread/kern_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/pthread/kern_trace.h -------------------------------------------------------------------------------- /duct-tape/pthread/private: -------------------------------------------------------------------------------- 1 | pthread -------------------------------------------------------------------------------- /duct-tape/pthread/pthread-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/pthread/pthread-Info.plist -------------------------------------------------------------------------------- /duct-tape/pthread/pthread/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/pthread/pthread/qos.h -------------------------------------------------------------------------------- /duct-tape/pthread/synch_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/pthread/synch_internal.h -------------------------------------------------------------------------------- /duct-tape/pthread/sys/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/pthread/sys/qos.h -------------------------------------------------------------------------------- /duct-tape/pthread/sys/qos_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/pthread/sys/qos_private.h -------------------------------------------------------------------------------- /duct-tape/src/condvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/condvar.c -------------------------------------------------------------------------------- /duct-tape/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/debug.c -------------------------------------------------------------------------------- /duct-tape/src/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/host.c -------------------------------------------------------------------------------- /duct-tape/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/init.c -------------------------------------------------------------------------------- /duct-tape/src/kqchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/kqchan.c -------------------------------------------------------------------------------- /duct-tape/src/locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/locks.c -------------------------------------------------------------------------------- /duct-tape/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/memory.c -------------------------------------------------------------------------------- /duct-tape/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/misc.c -------------------------------------------------------------------------------- /duct-tape/src/processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/processor.c -------------------------------------------------------------------------------- /duct-tape/src/psynch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/psynch.c -------------------------------------------------------------------------------- /duct-tape/src/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/semaphore.c -------------------------------------------------------------------------------- /duct-tape/src/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/stubs.c -------------------------------------------------------------------------------- /duct-tape/src/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/task.c -------------------------------------------------------------------------------- /duct-tape/src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/thread.c -------------------------------------------------------------------------------- /duct-tape/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/timer.c -------------------------------------------------------------------------------- /duct-tape/src/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/src/traps.c -------------------------------------------------------------------------------- /duct-tape/xnu/APPLE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/APPLE_LICENSE -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/_limits.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/_mcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/_mcontext.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/_param.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/_types.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/disklabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/disklabel.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/endian.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/fasttrap_isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/fasttrap_isa.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/limits.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/param.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/profile.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/psl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/psl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/ptrace.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/reg.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/signal.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/types.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/arm/vmparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/arm/vmparam.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/bsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/bsm/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/bsm/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/bsm/audit.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/bsm/audit_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/bsm/audit_domain.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/bsm/audit_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/bsm/audit_errno.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/bsm/audit_fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/bsm/audit_fcntl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/bsm/audit_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/bsm/audit_kernel.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/bsm/audit_kevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/bsm/audit_kevents.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/bsm/audit_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/bsm/audit_record.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/crypto/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/crypto/aes.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/crypto/aesxts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/crypto/aesxts.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/crypto/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/crypto/des.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/crypto/sha1.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/crypto/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/crypto/sha2.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/dev/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/dev/busvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/dev/busvar.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/dev/dtrace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/dev/dtrace/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/dev/dtrace/blist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/dev/dtrace/blist.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/dev/kmreg_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/dev/kmreg_com.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/dev/ldd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/dev/ldd.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/dev/memdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/dev/memdev.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/dev/random/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/dev/random/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/dev/vn/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/dev/vn/shadow.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/_limits.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/_mcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/_mcontext.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/_param.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/_types.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/dis_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/dis_tables.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/disklabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/disklabel.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/endian.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/fasttrap_isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/fasttrap_isa.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/limits.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/param.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/profile.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/psl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/psl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/ptrace.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/reg.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/signal.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/types.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/i386/vmparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/i386/vmparam.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/kern/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/kern/ast.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/kern/chunklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/kern/chunklist.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/kern/mach_fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/kern/mach_fat.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/kern/mach_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/kern/mach_loader.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/kern/tty_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/kern/tty_dev.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/libkern/copyio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/libkern/copyio.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/libkern/libkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/libkern/libkern.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/_limits.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/_mcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/_mcontext.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/_param.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/_types.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/cons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/cons.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/disklabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/disklabel.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/endian.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/exec.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/limits.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/param.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/profile.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/psl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/psl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/ptrace.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/reg.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/signal.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/smp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/types.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/machine/vmparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/machine/vmparam.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/miscfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/miscfs/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/miscfs/devfs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/miscfs/devfs/README -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/altq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/altq/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/altq/altq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/altq/altq.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/altq/altq_cbq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/altq/altq_cbq.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/altq/altq_qfq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/altq/altq_qfq.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/bpf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/bpf_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/bpf_compat.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/bpfdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/bpfdesc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/bridgestp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/bridgestp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/cc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/classq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/classq/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/classq/classq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/classq/classq.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/contiki-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/contiki-conf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/contiki-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/contiki-lib.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/contiki-net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/contiki-net.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/contiki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/contiki.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/devtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/devtimer.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/dlil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/dlil.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/etherdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/etherdefs.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/ethernet.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/firewire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/firewire.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/flowadv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/flowadv.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/flowhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/flowhash.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/frame802154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/frame802154.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/ieee8023ad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/ieee8023ad.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_arp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_bond_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_bond_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_bridgevar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_bridgevar.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_dl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_ether.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_fake_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_fake_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_gif.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_ipsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_ipsec.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_llatbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_llatbl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_llc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_llc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_llreach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_llreach.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_media.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_mib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_mib.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_pflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_pflog.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_ports_used.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_ports_used.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_ppp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_types.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_utun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_utun.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/if_vlan_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/if_vlan_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/init.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/iptap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/iptap.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/kext_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/kext_net.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/kpi_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/kpi_interface.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/kpi_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/kpi_protocol.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/lacp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/lacp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/linkaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/linkaddr.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/nat464_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/nat464_utils.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/ndrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/ndrv.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/ndrv_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/ndrv_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/necp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/necp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/net_api_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/net_api_stats.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/net_kev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/net_kev.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/net_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/net_osdep.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/net_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/net_perf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/net_str_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/net_str_id.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/netsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/netsrc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/network_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/network_agent.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/ntstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/ntstat.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/nwk_wq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/nwk_wq.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/pf_pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/pf_pbuf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/pfkeyv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/pfkeyv2.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/pfvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/pfvar.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/pktap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/pktap.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/ppp_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/ppp_comp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/ppp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/ppp_defs.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/radix.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/raw_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/raw_cb.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/route.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/sixxlowpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/sixxlowpan.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/net/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/net/zlib.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/bootp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/dhcp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/icmp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/icmp6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/icmp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/icmp_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/if_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/if_ether.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/if_tun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/if_tun.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/igmp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/igmp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/igmp_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/in.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/in_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/in_arp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/in_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/in_gif.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/in_pcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/in_pcb.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/in_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/in_stat.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/in_systm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/in_systm.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/in_tclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/in_tclass.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/in_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/in_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/ip.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/ip6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/ip_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/ip_compat.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/ip_ecn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/ip_ecn.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/ip_encap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/ip_encap.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/ip_flowid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/ip_flowid.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/ip_icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/ip_icmp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/ip_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/ip_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/isakmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/isakmp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/mp_pcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/mp_pcb.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/mptcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/mptcp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/mptcp_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/mptcp_opt.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/mptcp_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/mptcp_seq.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/mptcp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/mptcp_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/tcp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/tcp_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/tcp_cache.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/tcp_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/tcp_cc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/tcp_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/tcp_debug.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/tcp_fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/tcp_fsm.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/tcp_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/tcp_log.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/tcp_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/tcp_seq.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/tcp_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/tcp_timer.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/tcp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/tcp_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/tcpip.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/udp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet/udp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet/udp_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/ah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/ah.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/ah6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/ah6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/esp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/esp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/esp6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/icmp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/icmp6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/in6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/in6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/in6_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/in6_gif.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/in6_pcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/in6_pcb.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/in6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/in6_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/ip6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/ip6_ecn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/ip6_ecn.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/ip6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/ip6_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/ipcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/ipcomp.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/ipsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/ipsec.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/ipsec6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/ipsec6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/mld6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/mld6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/mld6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/mld6_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/nd6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/nd6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/nd6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/nd6_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/raw_ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/raw_ip6.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/tcp6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/tcp6_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netinet6/udp6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netinet6/udp6_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netkey/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netkey/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netkey/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netkey/key.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netkey/key_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netkey/key_debug.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netkey/key_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netkey/key_var.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netkey/keydb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netkey/keydb.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netkey/keysock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netkey/keysock.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/netkey/keyv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/netkey/keyv2.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/krpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/krpc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfs.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfs_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfs_conf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfs_gss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfs_gss.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfs_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfs_ioctl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfs_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfs_lock.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfsdiskless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfsdiskless.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfsm_subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfsm_subs.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfsmount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfsmount.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfsnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfsnode.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfsproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfsproto.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/nfsrvcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/nfsrvcache.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/rpcv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/rpcv2.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/nfs/xdr_subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/nfs/xdr_subs.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/pthread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/pthread/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/security/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/_endian.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/_select.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/_structs.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/_types.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/_types/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/_types/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/_types/_dev_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/_types/_dev_t.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/_types/_gid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/_types/_gid_t.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/_types/_id_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/_types/_id_t.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/_types/_ino_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/_types/_ino_t.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/acct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/acct.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/aio.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/aio_kern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/aio_kern.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/attr.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/bitstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/bitstring.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/buf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/cdefs.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/clonefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/clonefile.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/coalition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/coalition.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/codesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/codesign.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/commpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/commpage.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/conf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/cprotect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/cprotect.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/csr.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/decmpfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/decmpfs.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/dir.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/dirent.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/dis_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/dis_tables.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/disk.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/disklabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/disklabel.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/disktab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/disktab.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/dkstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/dkstat.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/dmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/dmap.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/domain.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/dtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/dtrace.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/errno.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ev.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/event.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/eventvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/eventvar.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/exec.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/fasttrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/fasttrap.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/fbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/fbt.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/fcntl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/file.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/filedesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/filedesc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/fileport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/fileport.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/filio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/filio.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/fsctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/fsctl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/fsevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/fsevents.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/fsgetpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/fsgetpath.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/fslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/fslog.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/gmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/gmon.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/guarded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/guarded.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/imageboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/imageboot.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/imgact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/imgact.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/imgsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/imgsrc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ioccom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ioccom.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ioctl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ipc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ipcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ipcs.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/kas_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/kas_info.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/kasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/kasl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/kauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/kauth.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/kdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/kdebug.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/kern_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/kern_event.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/kernel.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/kpi_mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/kpi_mbuf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/kpi_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/kpi_socket.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ktrace.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/lctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/lctx.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/linker_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/linker_set.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/lock.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/lockf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/lockf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/lockstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/lockstat.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/log_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/log_data.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/malloc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/mbuf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/mcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/mcache.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/md5.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/mman.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/monotonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/monotonic.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/mount.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/msg.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/msgbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/msgbuf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/munge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/munge.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/namei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/namei.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/netboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/netboot.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/netport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/netport.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/param.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/paths.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/persona.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/persona.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/pgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/pgo.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/pipe.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/poll.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/posix_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/posix_sem.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/posix_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/posix_shm.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/priv.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/proc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/proc_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/proc_info.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/protosw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/protosw.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ptrace.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/queue.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/quota.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/random.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/reason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/reason.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/reboot.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/resource.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/sbuf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/sdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/sdt.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/sdt_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/sdt_impl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/select.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/sem.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/semaphore.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/sfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/sfi.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/shm.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/signal.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/signalvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/signalvar.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/snapshot.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/socket.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/socketvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/socketvar.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/sockio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/sockio.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/spawn.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/stackshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/stackshot.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/stat.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/stdio.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/subr_prf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/subr_prf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/sys_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/sys_domain.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/sysctl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/sysent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/sysent.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/syslimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/syslimits.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/syslog.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/systm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/systm.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/termios.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/time.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/timeb.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/times.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/timex.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/tprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/tprintf.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/trace.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/tree.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/tty.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ttychars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ttychars.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ttycom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ttycom.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ttydev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ttydev.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/types.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ubc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ubc.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ucontext.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ucred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ucred.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/uio.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/ulock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/ulock.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/un.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/unicode.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/unistd.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/unpcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/unpcb.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/user.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/utfconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/utfconv.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/utsname.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vadvise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vadvise.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vcmd.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vlimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vlimit.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vm.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vmmeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vmmeter.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vmparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vmparam.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vnioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vnioctl.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vnode.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vnode_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vnode_if.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vsock.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/vstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/vstat.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/wait.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/sys/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/sys/xattr.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/uuid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/uuid/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/uuid/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/uuid/uuid.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/vfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/vfs/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/vfs/vnode_if.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/vfs/vnode_if.sh -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/vfs/vnode_if.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/vfs/vnode_if.src -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/vm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/vm/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/vm/vm_pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/vm/vm_pager.h -------------------------------------------------------------------------------- /duct-tape/xnu/bsd/vm/vnode_pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/bsd/vm/vnode_pager.h -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKit/IOBSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/iokit/IOKit/IOBSD.h -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKit/IOCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/iokit/IOKit/IOCPU.h -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKit/IOLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/iokit/IOKit/IOLib.h -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKit/IOPMGR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/iokit/IOKit/IOPMGR.h -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKit/IORPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/iokit/IOKit/IORPC.h -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/iokit/IOKit/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKit/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/iokit/IOKit/assert.h -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKit/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/iokit/IOKit/system.h -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IOBlockStorageDevice.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IOBufferMemoryDescriptor.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IODataQueueDispatchSource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IODispatchQueue.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IODispatchSource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IOInterruptDispatchSource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IOMemoryDescriptor.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IOMemoryMap.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IOService.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IOTimerDispatchSource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/IOUserServer.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSAction.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSArray.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSBoolean.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSCollection.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSContainer.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSData.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSDictionary.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSNumber.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSObject.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSSerialization.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/IOKitUser/OSString.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/iokit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/iokit/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/os/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/os/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/os/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/os/atomic.h -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/os/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/os/base.h -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/os/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/os/hash.h -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/os/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/os/log.h -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/os/log_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/os/log_mem.h -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/os/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/os/object.h -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/os/refcnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/os/refcnt.c -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/os/refcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/os/refcnt.h -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/os/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/os/trace.h -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/zlib/README -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/zlib/crc32.h -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/zlib/trees.h -------------------------------------------------------------------------------- /duct-tape/xnu/libkern/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/libkern/zlib/zutil.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/arch.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/arm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/arm_init.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/asm.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/atomic.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/bcopy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/bcopy.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/bsd_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/bsd_arm.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/bzero.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/bzero.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/caches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/caches.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/counter.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/cpu.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/cpu_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/cpu_data.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/cpuid.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/cpuid.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/cswitch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/cswitch.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/data.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/dbgwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/dbgwrap.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/dbgwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/dbgwrap.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/genassym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/genassym.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/io_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/io_map.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/kpc_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/kpc_arm.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/lock.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/locks.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/locore.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/pcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/pcb.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/pmap.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/pmap.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/proc_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/proc_reg.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/rtclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/rtclock.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/rtclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/rtclock.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/setjmp.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/smp.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/start.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/status.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/strlcpy.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/strlen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/strlen.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/strncmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/strncmp.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/strncpy.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/strnlen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/strnlen.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/task.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/thread.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/tlb.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/trap.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm/trap.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/asm.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/bcopy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/bcopy.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/bzero.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/bzero.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/copyio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/copyio.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/cpu.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/kpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/kpc.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/locore.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/pcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/pcb.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/pinst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/pinst.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/sleh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/sleh.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/start.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/status.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/arm64/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/arm64/tlb.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/atm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/atm/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/bank/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/bank/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/bank/bank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/bank/bank.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/conf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/conf/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/conf/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/conf/copyright -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/conf/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/conf/files -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/conf/files.arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/conf/files.arm -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/device/subrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/device/subrs.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/gssd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/gssd/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/acpi.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/acpi.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/apic.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/asm.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/asm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/asm64.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/atomic.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/cpu.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/cpuid.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/cpuid.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/eflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/eflags.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/endian.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/exec.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/fp_simd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/fp_simd.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/fpu.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/fpu.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/gdt.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/hpet.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/hpet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/hpet.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/hw_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/hw_defs.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/io_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/io_map.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/io_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/io_port.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/iopb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/iopb.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/ktss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/ktss.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/lapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/lapic.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/lapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/lapic.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/ldt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/ldt.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/lock.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/locks.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/mp.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/mp.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/mp_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/mp_desc.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/mp_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/mp_desc.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/mtrr.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/mtrr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/mtrr.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/pcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/pcb.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/phys.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/pio.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/pmCPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/pmCPU.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/pmCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/pmCPU.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/pmap.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/rtclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/rtclock.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/seg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/seg.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/setjmp.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/smp.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/stab.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/task.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/thread.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/trap.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/trap.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/tsc.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/tsc.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/tss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/tss.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/ucode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/ucode.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/ucode.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/i386/vmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/i386/vmx.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/flipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/flipc.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/flipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/flipc.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/ipc_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/ipc_hash.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/ipc_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/ipc_hash.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/ipc_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/ipc_init.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/ipc_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/ipc_init.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/ipc_kmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/ipc_kmsg.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/ipc_kmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/ipc_kmsg.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/ipc_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/ipc_port.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/ipc_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/ipc_port.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/ipc_pset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/ipc_pset.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/ipc_pset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/ipc_pset.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/mach_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/mach_msg.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/mig_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/mig_log.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/ipc/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/ipc/port.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kdp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kdp/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kdp/kdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kdp/kdp.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kdp/kdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kdp/kdp.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kdp/kdp_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kdp/kdp_core.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kdp/kdp_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kdp/kdp_core.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kdp/kdp_dyld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kdp/kdp_dyld.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kdp/kdp_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kdp/kdp_udp.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kdp/kdp_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kdp/kdp_udp.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/arcade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/arcade.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/arcade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/arcade.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/assert.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ast.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ast.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/bits.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/btlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/btlog.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/btlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/btlog.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/clock.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/clock.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/counter.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/debug.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/debug.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ecc.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/gzalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/gzalloc.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/host.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/host.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ipc_mig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ipc_mig.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ipc_mig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ipc_mig.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ipc_tt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ipc_tt.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ipc_tt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ipc_tt.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/kalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/kalloc.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/kalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/kalloc.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/kcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/kcdata.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/kmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/kmod.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/kpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/kpc.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ledger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ledger.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ledger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ledger.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/lock.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/locks.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/locks.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ltable.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/ltable.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/machine.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/machine.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/mk_sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/mk_sp.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/mpqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/mpqueue.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/percpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/percpu.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/pms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/pms.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/printf.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/queue.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/sched.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/sfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/sfi.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/sfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/sfi.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/smp.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/spl.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/spl.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/stack.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/startup.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/startup.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/task.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/task.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/thread.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/thread.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/timer.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/timer.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/tlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/tlock.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/waitq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/waitq.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/waitq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/waitq.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/zalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/zalloc.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kern/zalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kern/zalloc.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kextd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kextd/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/action.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/action.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/ast.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/buffer.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/kperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/kperf.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/kperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/kperf.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/lazy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/lazy.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/lazy.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/pet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/pet.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/pet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/pet.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/kperf/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/kperf/sample.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/libsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/libsa/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/libsa/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/libsa/stdlib.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/libsa/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/libsa/string.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/libsa/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/libsa/types.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/lockd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/lockd/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/arm/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/arm/rpc.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/audit_triggers_types.h: -------------------------------------------------------------------------------- 1 | typedef const char* string_t; 2 | -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/boolean.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/error.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/exc.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/exc.defs -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/kmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/kmod.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/mach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/mach.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/machine.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/message.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/mig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/mig.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/mig_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/mig_log.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/ndr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/ndr.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/notify.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/policy.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/port.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/prof.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/prof.defs -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/rpc.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/sdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/sdt.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/sync.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/sync.defs -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/task.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/task.defs -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/upl.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/upl.defs -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/vm_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/vm_prot.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/mach/vm_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/mach/vm_sync.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/machine/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/machine/asm.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/machine/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/machine/lock.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/machine/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/machine/pmap.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/machine/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/machine/smp.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/machine/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/machine/task.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/machine/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/machine/trap.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/prng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/prng/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/prng/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/prng/entropy.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/prng/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/prng/entropy.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/prng/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/prng/random.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/WKdm_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/WKdm_new.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/bsd_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/bsd_vm.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/cpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/cpm.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/device_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/device_vm.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/lz4.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/lz4.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/pmap.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm32_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm32_user.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_debug.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_debug.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_fault.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_fault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_fault.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_init.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_init.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_kern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_kern.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_kern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_kern.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_map.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_map.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_object.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_object.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_page.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_protos.h -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_tests.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/vm/vm_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/vm/vm_user.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/x86_64/bcopy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/x86_64/bcopy.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/x86_64/bzero.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/x86_64/bzero.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/x86_64/idt64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/x86_64/idt64.s -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/x86_64/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/x86_64/pmap.c -------------------------------------------------------------------------------- /duct-tape/xnu/osfmk/x86_64/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/osfmk/x86_64/start.s -------------------------------------------------------------------------------- /duct-tape/xnu/pexpert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/pexpert/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/san/kasan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/san/kasan.h -------------------------------------------------------------------------------- /duct-tape/xnu/san/kasan_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/san/kasan_internal.h -------------------------------------------------------------------------------- /duct-tape/xnu/san/ksancov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/san/ksancov.h -------------------------------------------------------------------------------- /duct-tape/xnu/san/memintrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/san/memintrinsics.h -------------------------------------------------------------------------------- /duct-tape/xnu/san/ubsan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/san/ubsan.h -------------------------------------------------------------------------------- /duct-tape/xnu/security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/security/Makefile -------------------------------------------------------------------------------- /duct-tape/xnu/security/_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/security/_label.h -------------------------------------------------------------------------------- /duct-tape/xnu/security/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/security/mac.h -------------------------------------------------------------------------------- /duct-tape/xnu/security/mac_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/duct-tape/xnu/security/mac_data.h -------------------------------------------------------------------------------- /scripts/generate-rpc-wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/scripts/generate-rpc-wrappers.py -------------------------------------------------------------------------------- /src/async-writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/async-writer.cpp -------------------------------------------------------------------------------- /src/call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/call.cpp -------------------------------------------------------------------------------- /src/darlingserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/darlingserver.cpp -------------------------------------------------------------------------------- /src/kqchan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/kqchan.cpp -------------------------------------------------------------------------------- /src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/logging.cpp -------------------------------------------------------------------------------- /src/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/message.cpp -------------------------------------------------------------------------------- /src/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/process.cpp -------------------------------------------------------------------------------- /src/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/registry.cpp -------------------------------------------------------------------------------- /src/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/server.cpp -------------------------------------------------------------------------------- /src/stack-pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/stack-pool.cpp -------------------------------------------------------------------------------- /src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/thread.cpp -------------------------------------------------------------------------------- /src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/src/utility.cpp -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/dserverdbg-rpc-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/tools/dserverdbg-rpc-defs.h -------------------------------------------------------------------------------- /tools/dserverdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darlingserver/HEAD/tools/dserverdbg.c --------------------------------------------------------------------------------