OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StreamingMemoryObject
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Support/
StreamableMemoryObject.h
101
///
StreamingMemoryObject
- interface to data which is actually streamed from
105
class
StreamingMemoryObject
: public StreamableMemoryObject {
107
StreamingMemoryObject
(DataStreamer *streamer);
171
StreamingMemoryObject
(const
StreamingMemoryObject
&) LLVM_DELETED_FUNCTION;
172
void operator=(const
StreamingMemoryObject
&) LLVM_DELETED_FUNCTION;
/external/llvm/lib/Support/
StreamableMemoryObject.cpp
84
bool
StreamingMemoryObject
::isValidAddress(uint64_t address) const {
89
bool
StreamingMemoryObject
::isObjectEnd(uint64_t address) const {
95
uint64_t
StreamingMemoryObject
::getExtent() const {
103
int
StreamingMemoryObject
::readByte(uint64_t address, uint8_t* ptr) const {
109
int
StreamingMemoryObject
::readBytes(uint64_t address,
117
bool
StreamingMemoryObject
::dropLeadingBytes(size_t s) {
124
void
StreamingMemoryObject
::setKnownObjectSize(size_t size) {
136
StreamingMemoryObject
::
StreamingMemoryObject
(DataStreamer *streamer) :
Completed in 49 milliseconds