HomeSort by relevance Sort by last modified time
    Searched defs:MemoryRegion (Results 1 - 7 of 7) sorted by null

  /external/google-breakpad/src/google_breakpad/processor/
memory_region.h 32 // A MemoryRegion provides virtual access to a range of memory. It is an
48 class MemoryRegion {
50 virtual ~MemoryRegion() {}
  /frameworks/compile/mclinker/include/mcld/Support/
MemoryRegion.h 1 //===- MemoryRegion.h -----------------------------------------------------===//
23 typedef llvm::MutableArrayRef<uint8_t> MemoryRegion;
  /frameworks/base/core/java/android/hardware/location/
MemoryRegion.java 27 public class MemoryRegion implements Parcelable{
122 public MemoryRegion(Parcel source) {
130 public static final Parcelable.Creator<MemoryRegion> CREATOR
131 = new Parcelable.Creator<MemoryRegion>() {
132 public MemoryRegion createFromParcel(Parcel in) {
133 return new MemoryRegion(in);
136 public MemoryRegion[] newArray(int size) {
137 return new MemoryRegion[size];
  /art/runtime/
memory_region.h 37 class MemoryRegion FINAL : public ValueObject {
40 constexpr bool operator()(const MemoryRegion& lhs, const MemoryRegion& rhs) const {
45 MemoryRegion() : pointer_(nullptr), size_(0) {}
46 MemoryRegion(void* pointer_in, uintptr_t size_in) : pointer_(pointer_in), size_(size_in) {}
53 return OFFSETOF_MEMBER(MemoryRegion, pointer_);
173 void CopyFrom(size_t offset, const MemoryRegion& from) const;
178 CopyFrom(offset, MemoryRegion(vector.data(), vector.size()));
183 ALWAYS_INLINE MemoryRegion Subregion(uintptr_t offset, uintptr_t size_in) const {
186 return MemoryRegion(reinterpret_cast<void*>(begin() + offset), size_in)
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmMmuLib/AArch64/
ArmMmuLibCore.c 415 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryRegion
420 MemoryRegion->VirtualBase,
421 MemoryRegion->Length,
422 ArmMemoryAttributeToPageAttribute (MemoryRegion->Attributes) | TT_AF,
436 ARM_MEMORY_REGION_DESCRIPTOR MemoryRegion;
439 MemoryRegion.PhysicalBase = BaseAddress;
440 MemoryRegion.VirtualBase = BaseAddress;
441 MemoryRegion.Length = Length;
442 MemoryRegion.Attributes = GcdAttributeToArmAttribute (Attributes);
446 Status = FillTranslationTable (TranslationTable, &MemoryRegion);
    [all...]
  /prebuilts/sdk/system_28/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 266 milliseconds