OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PagedByteArray
(Results
1 - 2
of
2
) sorted by null
/external/piex/src/binary_parse/
range_checked_byte_ptr.h
57
// In essence, RangeCheckedBytePtr and
PagedByteArray
together provide a poor
68
// different threads to access the same
PagedByteArray
concurrently, assuming
69
// that the
PagedByteArray
implementation is thread-safe.)
70
class
PagedByteArray
{
72
// Base class for pages in the byte array. Implementations of
PagedByteArray
75
//
PagedByteArray
backed by a file might define a Page subclass like this:
108
virtual ~
PagedByteArray
();
131
// remain valid until the SharedPtr is released or the
PagedByteArray
object
134
//
PagedByteArray
object is destroyed, even if the caller does not hold on to
142
typedef std::shared_ptr<
PagedByteArray
> PagedByteArrayPtr
[
all
...]
range_checked_byte_ptr.cc
33
class MemoryPagedByteArray : public
PagedByteArray
{
69
void operator()(
PagedByteArray
* /* p */) const {}
73
PagedByteArray
::~
PagedByteArray
() {}
101
RangeCheckedBytePtr::RangeCheckedBytePtr(
PagedByteArray
*array)
204
//
PagedByteArray
interface).
Completed in 3678 milliseconds