OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SwapSpace
(Results
1 - 5
of
5
) sorted by null
/art/compiler/utils/
swap_space.cc
48
void
SwapSpace
::RemoveChunk(FreeBySizeSet::const_iterator free_by_size_pos) {
54
inline void
SwapSpace
::InsertChunk(const SpaceChunk& chunk) {
61
SwapSpace
::
SwapSpace
(int fd, size_t initial_size)
64
lock_("
SwapSpace
lock", static_cast<LockLevel>(LockLevel::kDefaultMutexLevel - 1)) {
70
SwapSpace
::~
SwapSpace
() {
107
void*
SwapSpace
::Alloc(size_t size) {
136
SwapSpace
::SpaceChunk
SwapSpace
::NewFileChunk(size_t min_size)
[
all
...]
swap_space.h
34
class
SwapSpace
{
36
SwapSpace
(int fd, size_t initial_size);
37
~
SwapSpace
();
97
DISALLOW_COPY_AND_ASSIGN(
SwapSpace
);
114
explicit SwapAllocator(
SwapSpace
* swap_space) : swap_space_(swap_space) {}
124
SwapSpace
* swap_space_;
149
explicit SwapAllocator(
SwapSpace
* swap_space) : swap_space_(swap_space) {}
202
SwapSpace
* swap_space_;
swap_space_test.cc
39
SwapSpace
pool(fd, 1 * MB);
/art/compiler/driver/
compiled_method_storage.cc
34
const LengthPrefixedArray<T>* CopyArray(
SwapSpace
* swap_space, const ArrayRef<const T>& array) {
44
void ReleaseArray(
SwapSpace
* swap_space, const LengthPrefixedArray<T>* array) {
155
explicit LengthPrefixedArrayAlloc(
SwapSpace
* swap_space)
168
SwapSpace
* const swap_space_;
172
: swap_space_(swap_fd == -1 ? nullptr : new
SwapSpace
(swap_fd, 10 * MB)),
compiled_method_storage.h
94
std::unique_ptr<
SwapSpace
> swap_space_;
Completed in 920 milliseconds