Home
last modified time | relevance | path

Searched refs:IONew (Results 1 – 14 of 14) sorted by relevance

/xnu-8796.101.5/doc/allocators/
H A Dapi-basics.md223 <tt>IONew(type_t, count)</tt><br/>
230 <tt>kalloc_type(type_t, ...)</tt> (resp. <tt>IONew(type_t, 1)</tt>)
251 <tt>IONew(hdr_type_t, type_t, count)</tt><br/>
288 `IONew/IODelete`) is safe.
365 being allocated (i.e. `IOMallocData` for data only buffers, and `IOMallocType`/`IONew`
/xnu-8796.101.5/iokit/Kernel/
H A DIOInterleavedMemoryDescriptor.cpp85 _descriptors = IONew(IOMemoryDescriptor *, capacity); in initWithCapacity()
H A DIOMultiMemoryDescriptor.cpp114 _descriptors = IONew(IOMemoryDescriptor *, withCount); in initWithDescriptors()
H A DIOInterruptController.cpp538 _interruptSources = IONew(IOInterruptSource, 1); in initInterruptController()
H A DIORegistryEntry.cpp964 array = IONew(OSObject *, kIORegistryEntryIndexedPropertyCount); in setIndexedProperty()
H A DIOMemoryDescriptor.cpp2226 _ranges.v64 = IONew(IOAddressRange, count); in initWithOptions()
2242 _ranges.v = IONew(IOVirtualRange, count); in initWithOptions()
H A DIOServicePM.cpp3765 param = IONew(DriverCallParam, count); in notifyInterestedDrivers()
4478 param = IONew(DriverCallParam, 1); in notifyControllingDriver()
H A DIOService.cpp8604 reserved->interruptStatisticsArray = IONew(IOInterruptAccountingReporter, 1); in addInterruptStatistics()
8625 newArray = IONew(IOInterruptAccountingReporter, newArraySize); in addInterruptStatistics()
H A DIOPMrootDomain.cpp4764 entries = IONew(PMSettingCallEntry, capacity); in setPMSetting()
/xnu-8796.101.5/iokit/IOKit/
H A DIOLib.h386 #define IONew(...) __IOKIT_DISPATCH(IONew, ##__VA_ARGS__) macro
/xnu-8796.101.5/iokit/bsddev/skywalk/
H A DIOSkywalkSupport.cpp327 fMemoryMaps = IONew(IOMemoryMap *, fMemoryMapCount); in OSDefineMetaClassAndFinalStructors()
926 fSegments = IONew(Segment, fSegmentCount); in OSDefineMetaClassAndFinalStructors()
/xnu-8796.101.5/libkern/c++/
H A DOSMetaClass.cpp1109 sets = IONew(typeof(sets[0]), maxDepth); in applyToInstances()
H A DOSKext.cpp16209 accountingList = IONew(typeof(accountingList[0]), accountingListAlloc);
/xnu-8796.101.5/iokit/Tests/
H A DTests.cpp772 buf = IONew(uint8_t, bound); in TestZLib()