Searched refs:pFileOffset (Results 1 - 11 of 11) sorted by relevance

/frameworks/compile/mclinker/lib/MC/
H A DMCLDInput.cpp44 off_t pFileOffset)
50 m_fileOffset(pFileOffset),
59 off_t pFileOffset)
65 m_fileOffset(pFileOffset),
41 Input(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
55 Input(llvm::StringRef pName, const sys::fs::Path& pPath, const AttributeProxy& pProxy, unsigned int pType, off_t pFileOffset) argument
H A DInputFactory.cpp37 off_t pFileOffset)
40 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
34 produce(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
H A DInputBuilder.cpp56 off_t pFileOffset)
58 return m_pInputFactory->produce(pName, pPath, pType, pFileOffset);
53 createInput(const std::string& pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCLDInput.h56 off_t pFileOffset = 0);
62 off_t pFileOffset = 0);
102 void setFileOffset(off_t pFileOffset) argument
103 { m_fileOffset = pFileOffset; }
H A DInputFactory.h46 off_t pFileOffset = 0);
H A DInputBuilder.h68 off_t pFileOffset = 0);
/frameworks/compile/mclinker/include/mcld/LD/
H A DGNUArchiveReader.h59 /// @param pFileOffset - file offset of the member header in the archive
64 uint32_t pFileOffset,
82 /// @param pFileOffset - file offset of the member header in the archive
83 size_t includeMember(Archive& pArchiveRoot, uint32_t pFileOffset);
H A DArchive.h158 /// @param pFileOffset - file offset in symtab represents a object file
160 bool addObjectMember(uint32_t pFileOffset, InputTree::iterator pIter);
163 /// @param pFileOffset - file offset in symtab represents a object file
164 bool hasObjectMember(uint32_t pFileOffset) const;
205 /// @param pFileOffset - file offset in symtab represents a object file
208 uint32_t pFileOffset,
237 /// @param pFileOffset - the file offset of the member file in a regular AR
242 off_t pFileOffset = 0);
/frameworks/compile/mclinker/lib/LD/
H A DArchive.cpp88 /// @param pFileOffset - file offset in symtab represents a object file
90 bool Archive::addObjectMember(uint32_t pFileOffset, InputTree::iterator pIter) argument
93 ObjectMemberEntryType* entry = m_ObjectMemberMap.insert(pFileOffset, exist);
100 /// @param pFileOffset - file offset in symtab represents a object file
101 bool Archive::hasObjectMember(uint32_t pFileOffset) const
103 return (m_ObjectMemberMap.find(pFileOffset) != m_ObjectMemberMap.end());
189 /// @param pFileOffset - file offset in symtab represents a object file
191 uint32_t pFileOffset,
195 new (entry) Symbol(pName, pFileOffset, pStatus);
251 /// @param pFileOffset
190 addSymbol(const char* pName, uint32_t pFileOffset, enum Archive::Symbol::Status pStatus) argument
[all...]
H A DGNUArchiveReader.cpp151 /// @param pFileOffset - file offset of the member header in the archive
156 uint32_t pFileOffset,
163 pArchiveFile.memArea()->request((pArchiveFile.fileOffset() + pFileOffset),
210 (pFileOffset +
350 /// @param pFileOffset - file offset of the member header in the archive
351 size_t GNUArchiveReader::includeMember(Archive& pArchive, uint32_t pFileOffset) argument
355 uint32_t file_offset = pFileOffset;
388 pArchive.addObjectMember(pFileOffset, parent->lastPos);
154 readMemberHeader(Archive& pArchiveRoot, Input& pArchiveFile, uint32_t pFileOffset, uint32_t& pNestedOffset, size_t& pMemberSize) argument
/frameworks/compile/mclinker/lib/Support/
H A DSpace.cpp29 // ^ page_offset ^ pFileOffset ^ page_boundary
32 // return the first page boundary \b before pFileOffset
33 inline static off_t page_offset(off_t pFileOffset) argument
34 { return pFileOffset & ~ (PageSize - 1); }
37 // return the first page boundary \b after pFileOffset
38 inline static off_t page_boundary(off_t pFileOffset) argument
39 { return (pFileOffset + (PageSize - 1)) & ~ (PageSize - 1); }

Completed in 100 milliseconds