Searched refs:withLength (Results 1 – 5 of 5) sorted by relevance
| /xnu-11215/iokit/IOKit/ |
| H A D | IOBufferMemoryDescriptor.h | 283 vm_size_t withLength, 296 vm_size_t withLength __xnu_data_size, 342 virtual void *getBytesNoCopy(vm_size_t start, vm_size_t withLength); 351 virtual bool appendBytes(const void *bytes, vm_size_t withLength __xnu_data_size);
|
| H A D | IOMemoryDescriptor.h | 504 IOByteCount withLength, 509 IOByteCount withLength, 524 IOByteCount withLength, 625 IOByteCount withLength, 628 IOByteCount withLength, 633 IOByteCount withLength, 693 void * bytes, IOByteCount withLength); 704 const void * bytes, IOByteCount withLength); 1196 IOByteCount withLength, 1200 IOByteCount withLength, [all …]
|
| /xnu-11215/iokit/Kernel/ |
| H A D | IOBufferMemoryDescriptor.cpp | 826 IOBufferMemoryDescriptor::appendBytes(const void * bytes, vm_size_t withLength) in appendBytes() argument 828 vm_size_t actualBytesToCopy = min(withLength, _capacity - _length); in appendBytes() 869 IOBufferMemoryDescriptor::getBytesNoCopy(vm_size_t start, vm_size_t withLength) in getBytesNoCopy() argument 873 if ((start + withLength) < start) { in getBytesNoCopy() 883 if (start < _length && (start + withLength) <= _length) { in getBytesNoCopy()
|
| H A D | IOMemoryDescriptor.cpp | 1881 IOByteCount withLength, in initWithAddress() argument 1885 _singleRange.v.length = withLength; in initWithAddress() 1892 IOByteCount withLength, in initWithAddress() argument 1897 _singleRange.v.length = withLength; in initWithAddress() 1905 IOByteCount withLength, in initWithPhysicalAddress() argument 1909 _singleRange.p.length = withLength; in initWithPhysicalAddress()
|
| /xnu-11215/iokit/bsddev/skywalk/ |
| H A D | IOSkywalkSupport.cpp | 82 virtual void * getBytesNoCopy(vm_size_t start, vm_size_t withLength) APPLE_KEXT_OVERRIDE; 1403 IOSKMemoryBuffer::getBytesNoCopy( vm_size_t start, vm_size_t withLength ) in getBytesNoCopy() argument 1407 if ((start + withLength) < start) { in getBytesNoCopy() 1413 if (start < _length && (start + withLength) <= _length) { in getBytesNoCopy()
|