Home
last modified time | relevance | path

Searched refs:InMemoryWrapperInput (Results 1 – 3 of 3) sorted by relevance

/frameworks/compile/libbcc/bcinfo/Wrap/
Din_memory_wrapper_input.cpp22 InMemoryWrapperInput::InMemoryWrapperInput(const char* buffer, size_t size) : in InMemoryWrapperInput() function in InMemoryWrapperInput
26 InMemoryWrapperInput::~InMemoryWrapperInput() { in ~InMemoryWrapperInput()
29 size_t InMemoryWrapperInput::Read(uint8_t* buffer, size_t wanted) { in Read()
45 bool InMemoryWrapperInput::AtEof() { in AtEof()
49 off_t InMemoryWrapperInput::Size() { in Size()
53 bool InMemoryWrapperInput::Seek(uint32_t pos) { in Seek()
/frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
Din_memory_wrapper_input.h28 class InMemoryWrapperInput : public WrapperInput {
30 InMemoryWrapperInput(const char* buffer, size_t size);
31 ~InMemoryWrapperInput();
53 DISALLOW_CLASS_COPY_AND_ASSIGN(InMemoryWrapperInput);
/frameworks/compile/libbcc/bcinfo/
DBitcodeWrapper.cpp33 InMemoryWrapperInput inMem(mBitcode, mBitcodeSize); in BitcodeWrapper()