Home
last modified time | relevance | path

Searched refs:InputStream (Results 1 – 2 of 2) sorted by relevance

/haiku/src/tests/add-ons/print/pcl6/
H A Ddisasm.h37 class InputStream {
43 InputStream() : fBufferSize(0), fPos(0) { } in InputStream() function
44 virtual ~InputStream() {}; in ~InputStream()
57 class File : public InputStream {
75 Disasm(InputStream* stream) : fStream(stream), fVerbose(false) { }; in Disasm()
80 InputStream* fStream;
H A Ddisasm.cpp36 int InputStream::Read(void* buffer, int size) { in Read()
54 bool InputStream::PutUByte(uint8 byte) { in PutUByte()
60 bool InputStream::ReadUByte(uint8& v) { in ReadUByte()
64 bool InputStream::ReadUInt16(uint16& v) { in ReadUInt16()
68 bool InputStream::ReadUInt32(uint32& v) { in ReadUInt32()
72 bool InputStream::ReadSInt16(int16& v) { in ReadSInt16()
76 bool InputStream::ReadSInt32(int32& v) { in ReadSInt32()
80 bool InputStream::ReadReal32(float& v) { in ReadReal32()