OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ImageSpace
(Results
1 - 2
of
2
) sorted by null
/art/runtime/gc/space/
image_space.h
30
class
ImageSpace
: public MemMapSpace {
48
static
ImageSpace
* Create(const std::string& image)
51
// Releases the OatFile from the
ImageSpace
so it can be transfer to
80
// Tries to initialize an
ImageSpace
from the given image path,
87
static
ImageSpace
* Init(const std::string& image, bool validate_oat_file)
102
ImageSpace
(const std::string& name, MemMap* mem_map, accounting::SpaceBitmap* live_bitmap);
109
DISALLOW_COPY_AND_ASSIGN(
ImageSpace
);
image_space.cc
38
AtomicInteger
ImageSpace
::bitmap_index_(0);
40
ImageSpace
::
ImageSpace
(const std::string& name, MemMap* mem_map,
133
ImageSpace
*
ImageSpace
::Create(const std::string& original_image_file_name) {
136
return space::
ImageSpace
::Init(original_image_file_name, false);
143
space::
ImageSpace
* image_space = space::
ImageSpace
::Init(image_file_name, true);
149
return space::
ImageSpace
::Init(image_file_name, true);
152
void
ImageSpace
::VerifyImageAllocations()
[
all
...]
Completed in 139 milliseconds