HomeSort by relevance Sort by last modified time
    Searched refs:pName (Results 1 - 25 of 238) sorted by null

1 2 3 4 5 6 7 8 910

  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
sethostname.c 84 char * pName;
90 pName = malloc ( namelen + 1 );
91 if ( NULL == pName ) {
99 memcpy ( pName, name, namelen );
100 pName[ namelen ] = 0;
105 SetStatus = setenv ("HOSTNAME", pName, TRUE);
110 free ( pName );
  /frameworks/compile/mclinker/lib/Support/
Demangle.cpp 19 std::string demangleName(const std::string& pName) {
23 if (pName.substr(0, 2) != "_Z")
24 return pName;
30 abi::__cxa_demangle(pName.c_str(), /*buffer=*/0, &output_leng, &status);
32 return pName;
39 return pName;
43 bool isCtorOrDtor(const char* pName, size_t pLength) {
55 demangle(pName, pName + pLength, db, internal_status);
62 demangle(pName, pName + pLength, db, internal_status)
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDDirectory.h 27 explicit MCLDDirectory(const char* pName);
28 explicit MCLDDirectory(const std::string& pName);
29 explicit MCLDDirectory(llvm::StringRef pName);
33 MCLDDirectory& assign(llvm::StringRef pName);
Input.h 46 explicit Input(llvm::StringRef pName);
48 Input(llvm::StringRef pName, const AttributeProxy& pAttr);
50 Input(llvm::StringRef pName,
55 Input(llvm::StringRef pName,
65 void setName(const std::string& pName) { m_Name = pName; }
InputFactory.h 39 Input* produce(llvm::StringRef pName,
44 Input* produce(llvm::StringRef pName,
InputBuilder.h 55 InputTree& createNode(const std::string& pName,
60 Input* createInput(const std::string& pName,
104 const std::string& pName,
109 Input* input = createInput(pName, pPath, pType);
119 const std::string& pName,
124 Input* input = createInput(pName, pPath, pType);
  /frameworks/compile/mclinker/include/mcld/Support/
Demangle.h 18 bool isCtorOrDtor(const char* pName, size_t pLength);
  /frameworks/compile/mclinker/include/mcld/Script/
FileToken.h 27 FileToken(const std::string& pName, bool pAsNeeded);
37 static FileToken* create(const std::string& pName, bool pAsNeeded);
NameSpec.h 27 NameSpec(const std::string& pName, bool pAsNeeded);
37 static NameSpec* create(const std::string& pName, bool pAsNeeded);
  /frameworks/compile/mclinker/lib/MC/
Input.cpp 19 Input::Input(llvm::StringRef pName)
21 m_Name(pName.data()),
31 Input::Input(llvm::StringRef pName, const AttributeProxy& pProxy)
33 m_Name(pName.data()),
43 Input::Input(llvm::StringRef pName,
48 m_Name(pName.data()),
58 Input::Input(llvm::StringRef pName,
64 m_Name(pName.data()),
MCLDDirectory.cpp 20 MCLDDirectory::MCLDDirectory(const char* pName) : Directory(), m_Name(pName) {
21 Directory::m_Path.assign(pName);
33 MCLDDirectory::MCLDDirectory(const std::string& pName)
34 : Directory(), m_Name(pName) {
35 Directory::m_Path.assign(pName);
47 MCLDDirectory::MCLDDirectory(llvm::StringRef pName)
48 : Directory(), m_Name(pName.data(), pName.size()) {
49 Directory::m_Path.assign(pName.str())
    [all...]
InputFactory.cpp 33 Input* InputFactory::produce(llvm::StringRef pName,
38 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
42 Input* InputFactory::produce(llvm::StringRef pName,
47 new (result) Input(pName, sys::fs::Path(pPath), *m_pLast, pType, pFileOffset);
  /frameworks/compile/mclinker/lib/Script/
InputToken.cpp 19 InputToken::InputToken(Type pType, const std::string& pName, bool pAsNeeded)
20 : StrToken(StrToken::Input, pName), m_Type(pType), m_bAsNeeded(pAsNeeded) {
FileToken.cpp 26 FileToken::FileToken(const std::string& pName, bool pAsNeeded)
27 : InputToken(InputToken::File, pName, pAsNeeded) {
33 FileToken* FileToken::create(const std::string& pName, bool pAsNeeded) {
35 new (result) FileToken(pName, pAsNeeded);
NameSpec.cpp 26 NameSpec::NameSpec(const std::string& pName, bool pAsNeeded)
27 : InputToken(InputToken::NameSpec, pName, pAsNeeded) {
33 NameSpec* NameSpec::create(const std::string& pName, bool pAsNeeded) {
35 new (result) NameSpec(pName, pAsNeeded);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmon.h 34 LPWSTR pName;
40 LPSTR pName;
  /frameworks/compile/mclinker/lib/LD/
LDContext.cpp 40 LDSection* LDContext::getSection(const std::string& pName) {
43 if (*sect_iter != NULL && (*sect_iter)->name() == pName)
49 const LDSection* LDContext::getSection(const std::string& pName) const {
52 if (*sect_iter != NULL && (*sect_iter)->name() == pName)
58 size_t LDContext::getSectionIdx(const std::string& pName) const {
62 if (m_SectionTable[result]->name() == pName)
79 LDSymbol* LDContext::getSymbol(const llvm::StringRef& pName) {
83 if (m_SymTab[sym]->name() == pName)
88 const LDSymbol* LDContext::getSymbol(const llvm::StringRef& pName) const {
92 if (m_SymTab[sym]->name() == pName)
    [all...]
NamePool.cpp 34 ResolveInfo* NamePool::createSymbol(const llvm::StringRef& pName,
42 (*result) = ResolveInfo::Create(pName);
56 void NamePool::insertSymbol(const llvm::StringRef& pName,
71 ResolveInfo* old_symbol = m_Table.insert(pName, exist);
74 new_symbol = m_Table.getEntryFactory().produce(pName);
130 ResolveInfo* NamePool::findInfo(const llvm::StringRef& pName) {
131 Table::iterator iter = m_Table.find(pName);
136 const ResolveInfo* NamePool::findInfo(const llvm::StringRef& pName) const {
137 Table::const_iterator iter = m_Table.find(pName);
142 LDSymbol* NamePool::findSymbol(const llvm::StringRef& pName) {
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 52 const llvm::StringRef& pName,
66 void insertSymbol(const llvm::StringRef& pName,
78 const LDSymbol* findSymbol(const llvm::StringRef& pName) const;
79 LDSymbol* findSymbol(const llvm::StringRef& pName);
82 const ResolveInfo* findInfo(const llvm::StringRef& pName) const;
83 ResolveInfo* findInfo(const llvm::StringRef& pName);
LDContext.h 55 const LDSection* getSection(const std::string& pName) const;
56 LDSection* getSection(const std::string& pName);
58 size_t getSectionIdx(const std::string& pName) const;
66 const LDSymbol* getSymbol(const llvm::StringRef& pName) const;
67 LDSymbol* getSymbol(const llvm::StringRef& pName);
  /frameworks/compile/mclinker/lib/Core/
Module.cpp 30 Module::Module(const std::string& pName, LinkerScript& pScript)
31 : m_Name(pName), m_Script(pScript), m_NamePool(1024) {
38 LDSection* Module::getSection(const std::string& pName) {
41 if ((*sect)->name() == pName)
47 const LDSection* Module::getSection(const std::string& pName) const {
50 if ((*sect)->name() == pName)
  /external/deqp/external/vulkancts/framework/vulkan/
vkPlatformDriverImpl.inl 10 PFN_vkVoidFunction PlatformDriver::getInstanceProcAddr (VkInstance instance, const char* pName) const
12 return m_vk.getInstanceProcAddr(instance, pName);
vkConcretePlatformInterface.inl 5 virtual PFN_vkVoidFunction getInstanceProcAddr (VkInstance instance, const char* pName) const;
  /external/python/cpython2/Doc/includes/
run-func.c 6 PyObject *pName, *pModule, *pDict, *pFunc;
16 pName = PyString_FromString(argv[1]);
17 /* Error checking of pName left out */
19 pModule = PyImport_Import(pName);
20 Py_DECREF(pName);
  /external/python/cpython3/Doc/includes/
run-func.c 6 PyObject *pName, *pModule, *pDict, *pFunc;
16 pName = PyUnicode_DecodeFSDefault(argv[1]);
17 /* Error checking of pName left out */
19 pModule = PyImport_Import(pName);
20 Py_DECREF(pName);

Completed in 838 milliseconds

1 2 3 4 5 6 7 8 910