Home
last modified time | relevance | path

Searched refs:readBytes (Results 1 – 7 of 7) sorted by relevance

/xnu-11215/tools/lldbmacros/usertaskdebugging/
H A Dgdbserver.py27 readBytes = ""
34 logging.debug("currentbytes: %s" % readBytes)
35 readBytes = ""
37 readBytes += p_bytes.decode()
38 p_begin = readBytes.find('$')
39 p_end = readBytes.find('#')
43 if readBytes in ('', '+'):
44 logging.debug('ignoring message: %s' % readBytes)
46 req_msg = rsprotocol.Message.fromRSPByteData(readBytes)
/xnu-11215/iokit/IOKit/
H A DIODMACommand.h397 UInt64 readBytes(UInt64 offset, void *bytes, UInt64 length);
H A DIOMemoryDescriptor.h692 virtual IOByteCount readBytes(IOByteCount offset,
/xnu-11215/iokit/Kernel/
H A DIODMACommand.cpp728 bytes = poMD->readBytes(state->fPreparedOffset, in walkAll()
1260 IODMACommand::readBytes(UInt64 offset, void *bytes, UInt64 length) in readBytes() function in IODMACommand
H A DIOUserServer.cpp1229 copied = data->readBytes(mdOffset, buffer.data(), mdLength); in PerformOperation_Impl()
1240 copiedDMA = readBytes(dmaOffset, buffer.data(), length); in PerformOperation_Impl()
H A DIOMemoryDescriptor.cpp2534 IOMemoryDescriptor::readBytes in readBytes() function in IOMemoryDescriptor
/xnu-11215/iokit/Tests/
H A DTestIOMemoryDescriptor.cpp1171 if (sizeof(data) != md->readBytes(mapoffset + idx, &data, sizeof(data))) { in IOMemoryDescriptorTest()