Searched refs:readBytes (Results 1 - 25 of 52) sorted by relevance

123

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DMemoryObject.h47 /// readBytes - Tries to read a contiguous range of bytes from the
61 virtual int readBytes(uint64_t address,
H A DStreamableMemoryObject.h25 /// that readByte/readBytes might have to block or do some work to get it.
32 /// Finally, getPointer can be used instead of readBytes to avoid extra copying.
59 /// readBytes - Tries to read a contiguous range of bytes from the
64 /// readBytes will fail.
75 virtual int readBytes(uint64_t address,
81 /// A pointer to it. More efficient than using readBytes if the
114 virtual int readBytes(uint64_t address,
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DMemoryObject.cpp16 int MemoryObject::readBytes(uint64_t address, function in class:MemoryObject
H A DStreamableMemoryObject.cpp32 virtual int readBytes(uint64_t address,
68 int RawMemoryObject::readBytes(uint64_t address, function in class:__anon10112::RawMemoryObject
112 int StreamingMemoryObject::readBytes(uint64_t address, function in class:llvm::StreamingMemoryObject
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/CodeSigningHelper/
H A Dmain.c68 CFIndex readBytes = CFReadStreamRead(stream, buf, sizeof(buf)); local
69 if (readBytes == 0) {
71 } else if (readBytes <= 0) {
77 assert(readBytes <= sizeof(buf));
78 CFDataAppendBytes(data, (void *)buf, readBytes);
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventServiceQueue.cpp83 event->readBytes(&entry->data, dataSize);
108 event->readBytes(&dataQueue->queue->data, dataSize);
129 event->readBytes(&entry->data, dataSize);
H A DIOHIDResourceUserClient.cpp406 propertiesDesc->readBytes(0, propertiesData, propertiesLength);
831 report->readBytes(0, ((UInt8*)&entry->data) + headerSize, reportSize);
857 report->readBytes(0, ((UInt8*)&dataQueue->queue->data) + headerSize, reportSize);
878 report->readBytes(0, ((UInt8*)&entry->data) + headerSize, reportSize);
H A DIOHIDEventServiceUserClient.cpp334 outEvent->readBytes(arguments->structureOutput, length);
H A DIOHIDEvent.h319 virtual IOByteCount readBytes(void *bytes, IOByteCount withLength);
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWRingBufferQ.h55 virtual IOByteCount readBytes(IOByteCount offset, void * bytes, IOByteCount withLength);
H A DIOFWRingBufferQ.cpp155 IOByteCount IOFWRingBufferQ::readBytes(IOByteCount offset, void * bytes, IOByteCount withLength) function in class:IOFWRingBufferQ
157 return fMemDescriptor->readBytes( offset, bytes, withLength );
250 if ( fMemDescriptor->readBytes(frontOffset, copy, size) == 0 )
H A DIOFWAddressSpace.cpp380 desc->readBytes(offset, oldVal, size*4);
H A DIOFWDCLPool.cpp171 unsigned byteCount = userExportDesc->readBytes( 0, exportData, exportLength ) ;
H A DIOFWUserVectorCommand.cpp199 fSubmitDesc->readBytes( offset, &params, length );
H A DIOFWUserPseudoAddressSpace.cpp922 fPacketQueue->readBytes( IOFWPacketHeaderGetOffset( inPacketHeader ), bytes, len );
944 fPacketQueue->readBytes( IOFWPacketHeaderGetOffset( inPacketHeader ), bytes, len );
/macosx-10.10.1/IOSCSIParallelFamily-300.0.2/TestTools/AppleSCSIHBAEmulator/
H A DAppleSCSIPDT00Emulator.cpp204 inquiryBuffer->readBytes ( 0, fInquiryData, fInquiryDataSize );
205 inquiryPage00Buffer->readBytes ( 0, fInquiryPage00Data, fInquiryPage00DataSize );
206 inquiryPage80Buffer->readBytes ( 0, fInquiryPage80Data, fInquiryPage80DataSize );
207 inquiryPage83Buffer->readBytes ( 0, fInquiryPage83Data, fInquiryPage83DataSize );
460 dataDesc->readBytes ( 0, &fMemory[byteOffset], numBytes );
/macosx-10.10.1/bless-103/
H A Dfirmwaresyncd.c768 ssize_t readBytes; local
806 readBytes = read(fds[0], buffer, sizeof(buffer));
807 syslog(LOG_DEBUG, "Read %ld from pipe", readBytes);
808 if (readBytes > 0) {
809 CFDataAppendBytes(dataRef, (UInt8 *)buffer, readBytes);
811 } while (readBytes > 0);
813 if (readBytes < 0) {
/macosx-10.10.1/emacs-93/
H A Ddumpemacs.c266 ssize_t readBytes; local
276 readBytes = read(fd, buffer, sizeof(buffer));
277 if(readBytes != sizeof(buffer))
395 ssize_t readBytes; local
406 readBytes = read(fd, buffer, sizeof(buffer));
407 if(readBytes != sizeof(buffer)) {
/macosx-10.10.1/IONetworkingFamily-101/
H A DIONetworkData.h198 /*! @function readBytes
210 virtual bool readBytes(void * dstBuffer,
H A DIONetworkData.cpp365 bool IONetworkData::readBytes(void * dstBuffer, function in class:IONetworkData
488 ret = readBytes(dstBuffer, dstBufferSize, readOffset) ?
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DTupleInput.java454 public final String readBytes(int length) method in class:TupleInput
502 public final void readBytes(char[] chars) method in class:TupleInput
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DTupleFormatTest.java276 in.readBytes(val2);
280 String val3 = in.readBytes(val.length);
298 assertEquals("abc", in.readBytes(3));
299 assertEquals("defg", in.readBytes(4));
308 assertEquals("abc", in.readBytes(3));
309 assertEquals("defg", in.readBytes(4));
310 assertEquals("hijkl", in.readBytes(5));
/macosx-10.10.1/IOPCIFamily-239.1.2/AppleSamplePCI/
H A DAppleSamplePCIUserClient.cpp240 // readBytes/writeBytes allow programmed I/O to/from an offset in the buffer
242 memDesc->readBytes(32, &pioBuffer, sizeof( pioBuffer));
243 IOLog("readBytes: \"%s\"\n", pioBuffer);
/macosx-10.10.1/kext_tools-384.1.4/
H A Dkernelcache.c638 ssize_t readBytes = 0; local
662 readBytes = read(fileDescriptor, fileBuf + totalReadBytes,
664 if (readBytes < 0) {
671 totalReadBytes += (size_t) readBytes;
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIODMACommand.h339 /*! @function readBytes
347 UInt64 readBytes(UInt64 offset, void *bytes, UInt64 length);

Completed in 266 milliseconds

123