Searched defs:pType (Results 1 - 25 of 37) sorted by last modified time

12

/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp489 SLresult audioPlayer_getStreamType(CAudioPlayer* ap, SLint32 *pType) { argument
494 *pType = SL_ANDROID_STREAM_VOICE;
497 *pType = SL_ANDROID_STREAM_SYSTEM;
500 *pType = SL_ANDROID_STREAM_RING;
504 *pType = SL_ANDROID_STREAM_MEDIA;
507 *pType = SL_ANDROID_STREAM_ALARM;
510 *pType = SL_ANDROID_STREAM_NOTIFICATION;
514 *pType = SL_ANDROID_STREAM_MEDIA;
/frameworks/wilhelm/src/itf/
H A DIMetadataTraversal.c86 SLint32 *pNodeID, SLuint32 *pType, SLuint32 size, SLchar *pMimeType)
85 IMetadataTraversal_GetChildInfo(SLMetadataTraversalItf self, SLuint32 index, SLint32 *pNodeID, SLuint32 *pType, SLuint32 size, SLchar *pMimeType) argument
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DStub.h36 Fixup(DWord pOffset, SWord pAddend, Type pType) argument
37 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) {}
129 void addFixup(DWord pOffset, SWord pAddend, Type pType);
/frameworks/compile/mclinker/include/mcld/
H A DLinkerConfig.h74 void setCodeGenType(CodeGenType pType) { m_CodeGenType = pType; } argument
/frameworks/compile/mclinker/include/mcld/MC/
H A DInput.h52 unsigned int pType = Unknown,
58 unsigned int pType = Unknown,
71 void setType(unsigned int pType) { m_Type = pType; } argument
H A DInputBuilder.h57 unsigned int pType = Input::Unknown);
62 unsigned int pType = Input::Unknown,
106 unsigned int pType) {
109 Input* input = createInput(pName, pPath, pType);
121 unsigned int pType) {
124 Input* input = createInput(pName, pPath, pType);
103 createNode( const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
118 createNode( const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
H A DSymbolCategory.h138 explicit Category(Type pType) argument
139 : type(pType), begin(0), end(0), prev(NULL), next(NULL) {}
/frameworks/compile/mclinker/include/mcld/Script/
H A DOutputSectDesc.h52 void setType(Type pType) { m_Type = pType; } argument
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttributeValue.h47 void setType(unsigned int pType) { m_Type = pType; } argument
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp31 LDFileFormat::Kind GetELFSectionKind(uint32_t pType, argument
64 switch (pType) {
99 if ((pType >= llvm::ELF::SHT_LOPROC && pType <= llvm::ELF::SHT_HIPROC) ||
100 (pType >= llvm::ELF::SHT_LOOS && pType <= llvm::ELF::SHT_HIOS) ||
101 (pType >= llvm::ELF::SHT_LOUSER && pType <= llvm::ELF::SHT_HIUSER))
103 fatal(diag::err_unsupported_section) << pName << pType; local
125 Input::Type pType) {
123 CreateInput(const std::string& pName, const sys::fs::Path& pPath, Input::Type pType) argument
268 CreateELFHeader(Input& pInput, const std::string& pName, uint32_t pType, uint32_t pFlag, uint32_t pAlign) argument
397 AddSymbol(Input& pInput, const std::string& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBind, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, LDSection* pSection, ResolveInfo::Visibility pVis) argument
454 addSymbolFromObject(const std::string& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
528 addSymbolFromDynObj(Input& pInput, const std::string& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, ResolveInfo::Visibility pVisibility) argument
589 AddRelocation(LDSection& pSection, Relocation::Type pType, LDSymbol& pSym, uint32_t pOffset, Relocation::Address pAddend) argument
636 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
706 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
753 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
803 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
[all...]
/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp44 /// @param pType [in] the type of the relocation entry
47 Relocation* Relocation::Create(Type pType, argument
50 return g_RelocationFactory->produce(pType, pFragRef, pAddend);
66 Relocation::Relocation(Relocation::Type pType, argument
70 : m_Type(pType),
126 void Relocation::setType(Type pType) { argument
127 m_Type = pType;
H A DStub.cpp75 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) { argument
77 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType));
/frameworks/compile/mclinker/lib/LD/
H A DELFSegment.cpp39 ELFSegment::ELFSegment(uint32_t pType, uint32_t pFlag) argument
40 : m_Type(pType),
84 ELFSegment* ELFSegment::Create(uint32_t pType, uint32_t pFlag) { argument
86 new (seg) ELFSegment(pType, pFlag);
H A DELFSegmentFactory.cpp18 ELFSegmentFactory::iterator ELFSegmentFactory::find(uint32_t pType, argument
23 if ((*segment)->type() == pType &&
33 uint32_t pType,
38 if ((*segment)->type() == pType &&
47 ELFSegmentFactory::iterator ELFSegmentFactory::find(uint32_t pType, argument
51 if ((*segment)->type() == pType) {
63 uint32_t pType,
67 if ((*segment)->type() == pType) {
78 ELFSegment* ELFSegmentFactory::produce(uint32_t pType, uint32_t pFlag) { argument
79 m_Segments.push_back(ELFSegment::Create(pType, pFla
32 find( uint32_t pType, uint32_t pFlagSet, uint32_t pFlagClear) const argument
62 find( uint32_t pType, const LDSection* pSection) const argument
83 insert(iterator pPosition, uint32_t pType, uint32_t pFlag) argument
[all...]
H A DLDSection.cpp41 uint32_t pType,
47 m_Type(pType),
68 uint32_t pType,
73 new (result) LDSection(pName, pKind, pType, pFlag, pSize, pAddr);
39 LDSection(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint64_t pSize, uint64_t pAddr) argument
66 Create(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint64_t pSize, uint64_t pAddr) argument
H A DNamePool.cpp36 ResolveInfo::Type pType,
45 (*result)->setType(pType);
58 ResolveInfo::Type pType,
82 new_symbol->setType(pType);
34 createSymbol(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, ResolveInfo::Visibility pVisibility) argument
56 insertSymbol(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, ResolveInfo::Visibility pVisibility, ResolveInfo* pOldInfo, Resolver::Result& pResult) argument
H A DRelocationFactory.cpp33 Relocation* RelocationFactory::produce(RelocationFactory::Type pType, argument
73 new (result) Relocation(pType, &pFragRef, pAddend, target_data);
H A DResolveInfo.cpp91 void ResolveInfo::setType(uint32_t pType) { argument
93 m_BitField |= ((pType << TYPE_OFFSET) & TYPE_MASK);
/frameworks/compile/mclinker/lib/MC/
H A DInput.cpp45 unsigned int pType,
47 : m_Type(pType),
61 unsigned int pType,
63 : m_Type(pType),
43 Input(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
58 Input(llvm::StringRef pName, const sys::fs::Path& pPath, const AttributeProxy& pProxy, unsigned int pType, off_t pFileOffset) argument
H A DInputBuilder.cpp56 unsigned int pType,
58 return m_pInputFactory->produce(pName, pPath, pType, pFileOffset);
54 createInput(const std::string& pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
H A DInputFactory.cpp35 unsigned int pType,
38 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
44 unsigned int pType,
47 new (result) Input(pName, sys::fs::Path(pPath), *m_pLast, pType, pFileOffset);
33 produce(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
42 produce(llvm::StringRef pName, const char* pPath, unsigned int pType, off_t pFileOffset) argument
H A DSearchDirs.cpp71 mcld::Input::Type pType) {
72 assert(Input::DynObj == pType || Input::Archive == pType ||
73 Input::Script == pType);
76 switch (pType) {
95 switch (pType) {
136 mcld::Input::Type pType) const {
137 assert(Input::DynObj == pType || Input::Archive == pType ||
138 Input::Script == pType);
70 find(const std::string& pNamespec, mcld::Input::Type pType) argument
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp36 uint32_t pType,
47 output_sect = LDSection::Create(pName, pKind, pType, pFlag);
34 CreateSection(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint32_t pAlign) argument
/frameworks/compile/mclinker/lib/Script/
H A DAssignment.cpp31 Type pType,
36 m_Type(pType),
30 Assignment(Level pLevel, Type pType, SymOperand& pSymbol, RpnExpr& pRpnExpr) argument
H A DInputToken.cpp19 InputToken::InputToken(Type pType, const std::string& pName, bool pAsNeeded) argument
20 : StrToken(StrToken::Input, pName), m_Type(pType), m_bAsNeeded(pAsNeeded) {

Completed in 1395 milliseconds

12