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
102
///
StreamingMemoryObject
- interface to data which is actually streamed from
106
class
StreamingMemoryObject
: public StreamableMemoryObject {
108
StreamingMemoryObject
(DataStreamer *streamer);
170
StreamingMemoryObject
(const
StreamingMemoryObject
&) LLVM_DELETED_FUNCTION;
171
void operator=(const
StreamingMemoryObject
&) LLVM_DELETED_FUNCTION;
/external/llvm/lib/Support/
StreamableMemoryObject.cpp
83
bool
StreamingMemoryObject
::isValidAddress(uint64_t address) const {
88
bool
StreamingMemoryObject
::isObjectEnd(uint64_t address) const {
94
uint64_t
StreamingMemoryObject
::getExtent() const {
102
int
StreamingMemoryObject
::readByte(uint64_t address, uint8_t* ptr) const {
108
int
StreamingMemoryObject
::readBytes(uint64_t address,
116
bool
StreamingMemoryObject
::dropLeadingBytes(size_t s) {
123
void
StreamingMemoryObject
::setKnownObjectSize(size_t size) {
135
StreamingMemoryObject
::
StreamingMemoryObject
(DataStreamer *streamer) :
Completed in 195 milliseconds