Searched refs:inLength (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/libkern/c++/
H A DOSData.cpp94 bool OSData::initWithBytes(const void *bytes, unsigned int inLength) argument
96 if ((inLength && !bytes) || !initWithCapacity(inLength))
100 bcopy(bytes, data, inLength);
101 length = inLength;
106 bool OSData::initWithBytesNoCopy(void *bytes, unsigned int inLength) argument
111 length = inLength;
124 unsigned int start, unsigned int inLength)
126 const void *localData = inData->getBytesNoCopy(start, inLength);
129 return initWithBytes(localData, inLength);
123 initWithData(const OSData *inData, unsigned int start, unsigned int inLength) argument
146 withBytes(const void *bytes, unsigned int inLength) argument
157 withBytesNoCopy(void *bytes, unsigned int inLength) argument
181 withData(const OSData *inData, unsigned int start, unsigned int inLength) argument
250 appendBytes(const void *bytes, unsigned int inLength) argument
274 appendByte(unsigned char byte, unsigned int inLength) argument
[all...]
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOBufferMemoryDescriptor.cpp630 vm_size_t inLength,
636 inLength, inLength, (mach_vm_address_t)0))
642 if (!appendBytes(inBytes, inLength))
657 vm_size_t inLength,
666 inLength, inLength, 0 ))
677 if (!me->appendBytes(inBytes, inLength))
629 initWithBytes(const void * inBytes, vm_size_t inLength, IODirection inDirection, bool inContiguous) argument
656 withBytes(const void * inBytes, vm_size_t inLength, IODirection inDirection, bool inContiguous) argument

Completed in 14 milliseconds