Searched refs:memory (Results 1 - 25 of 125) sorted by relevance

12345

/art/runtime/
H A Druntime_options.cc19 #include <memory>
H A Dbarrier.h30 #include <memory>
H A Ddex_instruction_visitor_test.cc19 #include <memory>
H A Dos_linux.cc23 #include <memory>
H A Dtype_lookup_table_test.cc18 #include <memory>
H A Dzip_archive.h22 #include <memory>
40 // Extract this entry to anonymous memory (R/W).
44 // Create a file-backed private (clean, R/W) memory mapping to this entry.
H A Dzip_archive_test.cc23 #include <memory>
/art/compiler/
H A Delf_writer_quick.h20 #include <memory>
/art/runtime/gc/
H A Dallocation_listener.h21 #include <memory>
H A Dtask_processor.h20 #include <memory>
/art/runtime/jit/
H A Ddebugger_interface.h21 #include <memory>
30 // Notify native debugger about new JITed code by passing in-memory ELF.
31 // It takes ownership of the in-memory ELF file.
35 // It also releases the associated in-memory ELF file.
38 // Notify native debugger about new JITed code by passing in-memory ELF.
40 // It takes ownership of the in-memory ELF file.
H A Djit.cc148 lock_("JIT memory use lock"),
444 void** memory = nullptr; local
482 // Allocate memory to put shadow frame values. The osr stub will copy that memory to
486 memory = reinterpret_cast<void**>(malloc(frame_size));
487 CHECK(memory != nullptr);
488 memset(memory, 0, frame_size);
491 memory[0] = method;
520 (reinterpret_cast<int32_t*>(memory))[slot_offset / sizeof(int32_t)] = vreg_value;
535 (*art_quick_osr_stub)(memory,
[all...]
/art/test/945-obsolete-native/
H A Dobsolete_native.cc18 #include <memory>
/art/cmdline/
H A Dmemory_representation.h28 // An integral representation of bytes of memory.
62 std::ostream& operator<<(std::ostream& stream, Memory<kDivisor> memory) { argument
63 return stream << memory.Value << '*' << kDivisor;
/art/compiler/linker/
H A Dbuffered_output_stream.h20 #include <memory>
/art/compiler/utils/
H A Ddedupe_set.h20 #include <memory>
/art/runtime/base/
H A Dscoped_flock.h20 #include <memory>
/art/test/987-agent-bind/
H A Dagent_bind.cc18 #include <memory>
/art/runtime/gc/collector/
H A Dimmune_spaces_test.cc138 // Does not reserve the memory, the caller needs to be sure no other threads will map at the
150 LOG(ERROR) << "Failed to allocate memory region " << error_str;
212 uint8_t* memory = GetContinuousMemoryRegion(kImageSize + kImageOatSize + kOtherSpaceSize); local
214 std::unique_ptr<DummyImageSpace> image_space(CreateImageSpace(memory,
216 memory + kImageSize,
263 uint8_t* memory = GetContinuousMemoryRegion(kMemorySize); local
264 uint8_t* space1_begin = memory;
265 memory += kImage1Size;
266 uint8_t* space2_begin = memory;
267 memory
[all...]
/art/test/080-oom-throw/src/
H A DMain.java157 Object memory = eatAllMemory();
165 boolean memoryWasAllocated = (memory != null);
166 memory = null;
/art/disassembler/
H A Ddisassembler_arm.h20 #include <memory>
/art/runtime/openjdkjvmti/
H A Dfixed_up_dex_file.h35 #include <memory>
/art/runtime/verifier/
H A Dmethod_verifier_test.cc20 #include <memory>
/art/test/ti-agent/
H A Djvmti_helper.h22 #include <memory>
/art/compiler/dex/
H A Dverified_method.cc20 #include <memory>

Completed in 455 milliseconds

12345