Searched refs:MemoryRegion (Results 1 - 25 of 49) sorted by relevance

12

/frameworks/base/core/java/android/hardware/location/
H A DMemoryRegion.java27 public class MemoryRegion implements Parcelable{ class in inherits:Parcelable
122 public MemoryRegion(Parcel source) { method in class:MemoryRegion
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];
H A DContextHubInfo.java48 private MemoryRegion[] mMemoryRegions;
77 mMemoryRegions = new MemoryRegion[0];
214 * @return MemoryRegion[] - all the memory regions on this hub
216 * @see MemoryRegion
218 public MemoryRegion[] getMemoryRegions() {
290 mMemoryRegions = in.createTypedArray(MemoryRegion.CREATOR);
/frameworks/compile/mclinker/include/mcld/Support/
H A DMemoryRegion.h1 //===- MemoryRegion.h -----------------------------------------------------===//
23 typedef llvm::MutableArrayRef<uint8_t> MemoryRegion; typedef in namespace:mcld
H A DFileOutputBuffer.h12 #include "mcld/Support/MemoryRegion.h"
48 MemoryRegion request(size_t pOffset, size_t pLength);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsPLT.h12 #include "mcld/Support/MemoryRegion.h"
34 uint64_t emit(MemoryRegion& pRegion);
H A DMipsGOTPLT.h12 #include "mcld/Support/MemoryRegion.h"
32 uint64_t emit(MemoryRegion& pRegion);
H A DMipsAbiFlags.h12 #include "mcld/Support/MemoryRegion.h"
31 static uint64_t emit(const MipsAbiFlags& pInfo, MemoryRegion& pRegion);
H A DMipsGOTPLT.cpp30 uint64_t MipsGOTPLT::emit(MemoryRegion& pRegion) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFObjectWriter.h73 void emitSectionData(const LDSection& pSection, MemoryRegion& pRegion) const;
77 MemoryRegion& pRegion) const;
81 MemoryRegion& pRegion) const;
87 MemoryRegion& pRegion) const;
93 MemoryRegion& pRegion) const;
112 void emitSectionData(const SectionData& pSD, MemoryRegion& pRegion) const;
H A DDebugString.h46 void emit(MemoryRegion& pRegion);
H A DEhFrameHdr.h53 const MemoryRegion& pEhFrameRegion);
H A DMergedStringTable.h12 #include "mcld/Support/MemoryRegion.h"
41 void emit(MemoryRegion& pRegion);
/frameworks/compile/mclinker/lib/Support/
H A DFileOutputBuffer.cpp49 MemoryRegion FileOutputBuffer::request(size_t pOffset, size_t pLength) {
51 return MemoryRegion();
52 return MemoryRegion(getBufferStart() + pOffset, pLength);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86LDBackend.h73 MemoryRegion& pRegion) const;
123 virtual uint64_t emitGOTSectionData(MemoryRegion& pRegion) const = 0;
126 MemoryRegion& pRegion,
180 uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
182 uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
222 uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
224 uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
/frameworks/compile/mclinker/unittests/
H A DMCRegionFragmentTest.cpp46 MemoryRegion* region = area->request(0, 4096);
61 MemoryRegion* region = area->request(0, 4096);
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.h79 MemoryRegion& pRegion) const;
164 virtual uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
166 virtual uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
/frameworks/compile/mclinker/lib/LD/
H A DMergedStringTable.cpp28 void MergedStringTable::emit(MemoryRegion& pRegion) {
H A DEhFrameHdr.cpp41 MemoryRegion ehframehdr_region =
44 MemoryRegion ehframe_region =
142 const MemoryRegion& pEhFrameRegion) {
H A DDebugString.cpp86 void DebugString::emit(MemoryRegion& pRegion) {
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64GOT.h12 #include "mcld/Support/MemoryRegion.h"
70 uint64_t emit(MemoryRegion& pRegion);
H A DAArch64PLT.h12 #include "mcld/Support/MemoryRegion.h"
70 uint64_t emit(MemoryRegion& pRegion);
H A DAArch64LDBackend.h83 MemoryRegion& pRegion) const;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.h12 #include "mcld/Support/MemoryRegion.h"
58 uint64_t emit(MemoryRegion& pRegion);
H A DARMPLT.h14 #include "mcld/Support/MemoryRegion.h"
66 uint64_t emit(MemoryRegion& pRegion);
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttribute.h12 #include "mcld/Support/MemoryRegion.h"
64 size_t emit(MemoryRegion& pRegion) const;

Completed in 539 milliseconds

12