| /xnu-11215/doc/building/ |
| H A D | xnu_version.md | 3 Incorporating the version number into xnu's build. 9 version in xnu are derived from that file. 11 ## Generating the XNU version number ## 15 The xnu version number is read from the `CFBundleVersion` property of 18 ### Customizing the XNU version number ### 25 ## Format of the XNU version number ## 27 The format of the version number must conform to the version resource format 33 * `J` represents the kernel major version number (integer) 34 * `N` represents the kernel minor version number (integer) 39 ## Using the XNU version number ## [all …]
|
| /xnu-11215/tests/ |
| H A D | persona.c | 62 for (uint32_t version = PERSONA_INFO_V1; version <= PERSONA_INFO_V2; version++) { variable 64 .persona_info_version = version, 67 T_ASSERT_EQ(error, 0, "kpersona_info(v%d) error", version); 68 T_ASSERT_EQ(info.persona_type, PERSONA_MANAGED, "kpersona_info(v%d) type", version); 69 T_ASSERT_EQ(info.persona_info_version, version, "kpersona_info(v%d) version", version);
|
| /xnu-11215/osfmk/mach/ |
| H A D | kmod.h | 92 char version[KMOD_MAX_NAME]; member 109 uint8_t version[KMOD_MAX_NAME]; member 126 uint8_t version[KMOD_MAX_NAME]; member 147 #define KMOD_DECL(name, version) \ argument 151 { #name }, { version }, -1, 0, 0, 0, 0, \ 155 #define KMOD_EXPLICIT_DECL(name, version, start, stop) \ argument 157 { #name }, { version }, -1, 0, 0, 0, 0, \
|
| /xnu-11215/osfmk/kern/ |
| H A D | mach_filter.h | 57 unsigned int version; member 85 mach_msg_filter_at_least(unsigned int version) in mach_msg_filter_at_least() argument 87 if (version == 0) { in mach_msg_filter_at_least() 94 return mach_msg_filter_callbacks.version >= version; in mach_msg_filter_at_least()
|
| H A D | trustcache.h | 43 uint32_t version; member 61 uint32_t version; member
|
| /xnu-11215/bsd/net/ |
| H A D | ndrv.h | 116 u_int32_t version; member 123 u_int32_t version; member 137 u_int32_t version; member 144 u_int32_t version; member
|
| /xnu-11215/libkern/kxld/ |
| H A D | kxld_srcversion.c | 46 srcversion->version = src->version; in kxld_srcversion_init_from_macho() 86 srcversionhdr->version = srcversion->version; in kxld_srcversion_export_macho()
|
| H A D | kxld_versionmin.c | 62 versionmin->version = src->version; in kxld_versionmin_init_from_macho() 87 versionmin->version = src->minos; in kxld_versionmin_init_from_build_cmd() 145 versionminhdr->version = versionmin->version; in kxld_versionmin_export_macho()
|
| /xnu-11215/osfmk/vm/ |
| H A D | vm_shared_region_xnu.h | 53 uint32_t version; member 71 uint32_t version; member 92 uint32_t version; // currently 3 member 104 uint32_t version; // currently 4 member 124 uint32_t version; // currently 5 member 137 uint32_t version; member
|
| /xnu-11215/tools/tests/ |
| H A D | Makefile.common | 31 export SDKVERSION := $(shell $(XCRUN) -sdk $(SDKROOT) -show-sdk-version) 55 DEPLOYMENT_TARGET_FLAGS = -mmacosx-version-min=$(SDKVERSION) 57 DEPLOYMENT_TARGET_FLAGS = -mwatchos-version-min=$(SDKVERSION) 59 DEPLOYMENT_TARGET_FLAGS = -mtvos-version-min=$(SDKVERSION) 61 DEPLOYMENT_TARGET_FLAGS = -mtvos-version-min=$(SDKVERSION) 63 DEPLOYMENT_TARGET_FLAGS = -mbridgeos-version-min=$(SDKVERSION) 65 DEPLOYMENT_TARGET_FLAGS = -miphoneos-version-min=$(SDKVERSION)
|
| /xnu-11215/libsyscall/wrappers/ |
| H A D | _libkernel_init.h | 63 unsigned long version; member 93 unsigned long version; member 115 unsigned long version; member 130 unsigned long version; member 154 unsigned long version; member
|
| H A D | _libc_funcptr.c | 79 if (_libkernel_functions->version >= 5) { in malloc_type_malloc() 91 if (_libkernel_functions->version >= 5) { in malloc_type_free() 103 if (_libkernel_functions->version >= 5) { in malloc_type_realloc() 139 if (_libkernel_functions->version >= 3 && in _pthread_clear_qos_tsd() 149 if (_libkernel_functions->version >= 4 && in pthread_current_stack_contains_np() 368 if (_libkernel_voucher_functions->version < 3) { in voucher_mach_msg_fill_aux() 380 if (_libkernel_voucher_functions->version < 3) { in voucher_mach_msg_fill_aux_supported()
|
| H A D | _libkernel_init.c | 113 if (config->version >= 1) { in __libkernel_init_late() 132 } else if ((config->version >= 2) && config->enable_ios_version_compat) { in __libkernel_init_late() 151 if ((config->version >= 3) && config->enable_posix_spawn_filtering) { in __libkernel_init_late() 163 if (config->version >= 1) { in __libkernel_init_after_boot_tasks()
|
| /xnu-11215/tools/lldbmacros/ |
| H A D | kext.py | 307 version = version_num 309 vers_major = version // MAJ_MULT 310 version = version - (vers_major * MAJ_MULT) 312 vers_minor = version // MIN_MULT 313 version = version - (vers_minor * MIN_MULT) 315 vers_revision = version // REV_MULT 316 version = version - (vers_revision * REV_MULT) 318 vers_stage = version // STAGE_MULT 319 version = version - (vers_stage * STAGE_MULT) 321 vers_stage_level = version [all …]
|
| /xnu-11215/osfmk/kdp/ |
| H A D | sk_core.c | 79 uint32_t version; member 91 uint32_t version; member 108 uint32_t version; /* header version */ member 361 if (signpost->version != ASTRIS_UUID_VERSION) { in sc_find_uuid_cdbg() 362 …n_coredump_log(NULL, "secure_core: unsupported astris signpost version 0x%x\n", signpost->version); in sc_find_uuid_cdbg() 372 if (signpost->version != DEBUG_SIGNPOST_VERSION) { in sc_find_uuid_cdbg() 373 …rn_coredump_log(NULL, "secure_core: unsupported debug signpost version 0x%x\n", signpost->version); in sc_find_uuid_cdbg() 517 if (sk_dbg_header->version != DBGREG_KERNEL_HEADER_VERSION) { in sk_dump_init() 519 sk_dbg_header->version); in sk_dump_init() 647 uint32_t version; /* currently 1 */ member [all …]
|
| H A D | core_notes.h | 39 uint32_t version; // currently 1 member 60 uint32_t version; // currently 1 member 83 uint32_t version; // CURRENTLY 3 member
|
| /xnu-11215/iokit/Kernel/ |
| H A D | IOPerfControl.cpp | 43 .version = PERFCONTROL_INTERFACE_VERSION_NONE, in init() 351 if (shared->interface.version >= PERFCONTROL_INTERFACE_VERSION_3) { in registerDevice() 370 if (shared->interface.version >= PERFCONTROL_INTERFACE_VERSION_3) { in unregisterDevice() 505 if (shared->interface.version >= PERFCONTROL_INTERFACE_VERSION_4) { in workEnd() 779 shared->interface.version = pci->version; in registerPerformanceController() 781 if (pci->version >= PERFCONTROL_INTERFACE_VERSION_1) { in registerPerformanceController() 791 if (pci->version >= PERFCONTROL_INTERFACE_VERSION_2) { in registerPerformanceController() 797 if (pci->version >= PERFCONTROL_INTERFACE_VERSION_3) { in registerPerformanceController() 803 if (pci->version >= PERFCONTROL_INTERFACE_VERSION_4) { in registerPerformanceController() 815 if (pci->version >= PERFCONTROL_INTERFACE_VERSION_3) { in registerPerformanceController() [all …]
|
| H A D | IONVRAMCHRPHandler.cpp | 127 get_bank_version_string(int version) in get_bank_version_string() argument 129 switch (version) { in get_bank_version_string() 167 nvram_get_adler(uint8_t *buf, int version) in nvram_get_adler() argument 177 switch (version) { in adler32_with_version() 252 if (version == kNVRAMVersion1 || in nvram_set_apple_header() 253 version == kNVRAMVersion2) { in nvram_set_apple_header() 264 NVRAMVersion version = kNVRAMVersionUnknown; in validateNVRAMVersion() local 267 version = kNVRAMVersion1; in validateNVRAMVersion() 272 version = kNVRAMVersion2; in validateNVRAMVersion() 279 DEBUG_INFO("version=%u\n", version); in validateNVRAMVersion() [all …]
|
| /xnu-11215/config/ |
| H A D | version.c.template | 29 /* version.c 30 * This file is a C source template for version.c, which is generated 32 * xnu/config/newvers.pl based on the version information generated by 36 #include <libkern/version.h> 40 const char version[] = OSTYPE " Kernel Version ###KERNEL_VERSION_LONG###: ###KERNEL_BUILD_DATE###; …
|
| /xnu-11215/iokit/IOKit/perfcontrol/ |
| H A D | IOPerfControl.h | 74 uint32_t version; member 100 uint32_t version; member 137 uint32_t version; member 223 uint32_t version; member 307 uint64_t version; member
|
| /xnu-11215/libkern/libkern/ |
| H A D | version.h.template | 26 /* Kernel versions conform to kext version strings, as described in: 30 /* VERSION_MAJOR, version_major is an integer that represents that major version 35 /* VERSION_MINOR, version_minor is an integer that represents the minor version 108 /* version is a string of the following form, as returned by uname -v: 112 extern const char version[];
|
| H A D | Makefile | 113 EXPORT_MI_GEN_LIST = version.h 117 version.h: version.h.template $(NEWVERS) $(XNU_VERSION)
|
| /xnu-11215/libkern/libkern/coreanalytics/ |
| H A D | coreanalytics_shim.h | 57 int version; member 62 int version; member
|
| /xnu-11215/osfmk/x86_64/ |
| H A D | lowmem_vectors.c | 67 extern void *version; 88 .lgVersion = (uint64_t) &version,
|
| /xnu-11215/SETUP/decomment/ |
| H A D | Makefile | 11 CFLAGS = -isysroot $(HOST_SDKROOT) -mmacosx-version-min=$(HOST_OS_VERSION) -g -O0 -I$(SOURCE) -I. 15 LDFLAGS = -isysroot $(HOST_SDKROOT) -mmacosx-version-min=$(HOST_OS_VERSION)
|