| /minix3/minix/drivers/power/acpi/utilities/ |
| H A D | utdebug.c | 183 const char *ModuleName, in AcpiDebugPrint() argument 220 AcpiOsPrintf ("%9s-%04ld ", ModuleName, LineNumber); in AcpiDebugPrint() 271 const char *ModuleName, in ACPI_EXPORT_SYMBOL() 314 const char *ModuleName, in ACPI_EXPORT_SYMBOL() 326 LineNumber, FunctionName, ModuleName, ComponentId, in ACPI_EXPORT_SYMBOL() 355 const char *ModuleName, in ACPI_EXPORT_SYMBOL() 368 LineNumber, FunctionName, ModuleName, ComponentId, in ACPI_EXPORT_SYMBOL() 395 const char *ModuleName, in AcpiUtTraceStr() argument 408 LineNumber, FunctionName, ModuleName, ComponentId, in AcpiUtTraceStr() 435 const char *ModuleName, in AcpiUtTraceU32() argument [all …]
|
| H A D | utxferror.c | 76 const char *ModuleName, in AcpiError() argument 116 const char *ModuleName, in ACPI_EXPORT_SYMBOL() 155 const char *ModuleName, in ACPI_EXPORT_SYMBOL() 196 const char *ModuleName, in ACPI_EXPORT_SYMBOL() 235 const char *ModuleName, in ACPI_EXPORT_SYMBOL() 274 const char *ModuleName, in ACPI_EXPORT_SYMBOL()
|
| H A D | uterror.c | 80 const char *ModuleName, in AcpiUtPredefinedWarning() argument 129 const char *ModuleName, in AcpiUtPredefinedInfo() argument 178 const char *ModuleName, in AcpiUtPredefinedBiosError() argument 223 const char *ModuleName, in AcpiUtNamespaceError() argument 294 const char *ModuleName, in AcpiUtMethodError() argument
|
| H A D | utobject.c | 95 const char *ModuleName, in AcpiUtCreateInternalObjectDbg() argument 110 Object = AcpiUtAllocateObjectDescDbg (ModuleName, LineNumber, ComponentId); in AcpiUtCreateInternalObjectDbg() 124 SecondObject = AcpiUtAllocateObjectDescDbg (ModuleName, in AcpiUtCreateInternalObjectDbg() 427 const char *ModuleName, in AcpiUtAllocateObjectDescDbg() argument 440 ACPI_ERROR ((ModuleName, LineNumber, in AcpiUtAllocateObjectDescDbg()
|
| /minix3/external/bsd/llvm/dist/llvm/tools/llvm-symbolizer/ |
| H A D | llvm-symbolizer.cpp | 70 static bool parseCommand(bool &IsData, std::string &ModuleName, in parseCommand() argument 80 ModuleName = ""; in parseCommand() 101 ModuleName = std::string(pos, end - pos); in parseCommand() 105 ModuleName = std::string(pos, name_length); in parseCommand() 109 ModuleName = ClBinaryName; in parseCommand() 139 std::string ModuleName; in main() local 141 while (parseCommand(IsData, ModuleName, ModuleOffset)) { in main() 143 IsData ? Symbolizer.symbolizeData(ModuleName, ModuleOffset) in main() 144 : Symbolizer.symbolizeCode(ModuleName, ModuleOffset); in main()
|
| H A D | LLVMSymbolize.cpp | 202 std::string LLVMSymbolizer::symbolizeCode(const std::string &ModuleName, in symbolizeCode() argument 204 ModuleInfo *Info = getOrCreateModuleInfo(ModuleName); in symbolizeCode() 223 std::string LLVMSymbolizer::symbolizeData(const std::string &ModuleName, in symbolizeData() argument 229 if (ModuleInfo *Info = getOrCreateModuleInfo(ModuleName)) { in symbolizeData() 441 LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) { in getOrCreateModuleInfo() argument 442 const auto &I = Modules.find(ModuleName); in getOrCreateModuleInfo() 445 std::string BinaryName = ModuleName; in getOrCreateModuleInfo() 447 size_t ColonPos = ModuleName.find_last_of(':'); in getOrCreateModuleInfo() 450 std::string ArchStr = ModuleName.substr(ColonPos + 1); in getOrCreateModuleInfo() 452 BinaryName = ModuleName.substr(0, ColonPos); in getOrCreateModuleInfo() [all …]
|
| H A D | LLVMSymbolize.h | 61 symbolizeCode(const std::string &ModuleName, uint64_t ModuleOffset); 63 symbolizeData(const std::string &ModuleName, uint64_t ModuleOffset); 69 ModuleInfo *getOrCreateModuleInfo(const std::string &ModuleName);
|
| /minix3/minix/drivers/power/acpi/include/ |
| H A D | acutils.h | 130 AcpiOsPrintf (" (%8.8X/%s-%u)\n", ACPI_CA_VERSION, ModuleName, LineNumber) 421 const char *ModuleName, 428 const char *ModuleName, 436 const char *ModuleName, 444 const char *ModuleName, 452 const char *ModuleName, 459 const char *ModuleName, 467 const char *ModuleName, 475 const char *ModuleName, 505 char *ModuleName, [all …]
|
| H A D | acpixf.h | 1093 const char *ModuleName, 1102 const char *ModuleName, 1112 const char *ModuleName, 1121 const char *ModuleName, 1130 const char *ModuleName, 1139 const char *ModuleName, 1155 const char *ModuleName, 1167 const char *ModuleName,
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/ |
| H A D | DiagnosticRenderer.h | 96 StringRef ModuleName, 99 StringRef ModuleName, 114 void emitImportStackRecursively(SourceLocation Loc, StringRef ModuleName, 165 StringRef ModuleName, 169 StringRef ModuleName,
|
| H A D | TextDiagnostic.h | 102 StringRef ModuleName, 106 StringRef ModuleName,
|
| /minix3/external/bsd/llvm/dist/clang/tools/libclang/ |
| H A D | BuildSystem.cpp | 93 std::string ModuleName; member 107 MMD->ModuleName = name; in clang_ModuleMapDescriptor_setFrameworkModuleName() 130 OS << "framework module " << MMD->ModuleName << " {\n"; in clang_ModuleMapDescriptor_writeToBuffer()
|
| /minix3/external/bsd/llvm/dist/clang/lib/CodeGen/ |
| H A D | ModuleBuilder.cpp | 59 CodeGeneratorImpl(DiagnosticsEngine &diags, const std::string& ModuleName, in CodeGeneratorImpl() argument 64 M(new llvm::Module(ModuleName, C)) {} in CodeGeneratorImpl() 239 const std::string& ModuleName, in CreateLLVMCodeGen() argument 244 return new CodeGeneratorImpl(Diags, ModuleName, CGO, C, CoverageInfo); in CreateLLVMCodeGen()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Lex/ |
| H A D | HeaderSearch.cpp | 121 std::string HeaderSearch::getModuleFileName(StringRef ModuleName, in getModuleFileName() argument 131 llvm::sys::path::append(Result, ModuleName + ".pcm"); in getModuleFileName() 152 llvm::sys::path::append(Result, ModuleName + "-" + HashStr.str() + ".pcm"); in getModuleFileName() 157 Module *HeaderSearch::lookupModule(StringRef ModuleName, bool AllowSearch) { in lookupModule() argument 159 Module *Module = ModMap.findModule(ModuleName); in lookupModule() 170 llvm::sys::path::append(FrameworkDirName, ModuleName + ".framework"); in lookupModule() 175 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem); in lookupModule() 193 Module = ModMap.findModule(ModuleName); in lookupModule() 202 llvm::sys::path::append(NestedModuleMapDirName, ModuleName); in lookupModule() 206 Module = ModMap.findModule(ModuleName); in lookupModule() [all …]
|
| H A D | ModuleMap.cpp | 584 ModuleMap::inferFrameworkModule(StringRef ModuleName, in inferFrameworkModule() argument 590 return inferFrameworkModule(ModuleName, FrameworkDir, Attrs, Parent); in inferFrameworkModule() 593 Module *ModuleMap::inferFrameworkModule(StringRef ModuleName, in inferFrameworkModule() argument 598 if (Module *Mod = lookupModuleQualified(ModuleName, Parent)) in inferFrameworkModule() 619 if (llvm::sys::path::stem(FrameworkDirName) != ModuleName) in inferFrameworkModule() 671 llvm::sys::path::append(UmbrellaName, "Headers", ModuleName + ".h"); in inferFrameworkModule() 680 Module *Result = new Module(ModuleName, SourceLocation(), Parent, in inferFrameworkModule() 684 if (LangOpts.CurrentModule == ModuleName) { in inferFrameworkModule() 686 SourceModuleName = ModuleName; in inferFrameworkModule() 694 Modules[ModuleName] = Result; in inferFrameworkModule() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/lib/Frontend/ |
| H A D | DiagnosticRenderer.cpp | 279 StringRef ModuleName, in emitImportStackRecursively() argument 295 emitImportLocation(Loc, PLoc, ModuleName, SM); in emitImportStackRecursively() 490 StringRef ModuleName, in emitImportLocation() argument 495 Message << "in module '" << ModuleName << "' imported from " in emitImportLocation() 503 StringRef ModuleName, in emitBuildingModuleLocation() argument 509 Message << "while building module '" << ModuleName << "' imported from " in emitBuildingModuleLocation() 512 Message << "while building module '" << ModuleName << "':"; in emitBuildingModuleLocation()
|
| H A D | CompilerInstance.cpp | 1298 void ReadModuleName(StringRef ModuleName) override { in loadModuleFile() 1302 auto &ModuleFile = CI.ModuleFileOverrides[ModuleName]; in loadModuleFile() 1308 << ModuleName << ModuleFile << ModuleFileStack.back(); in loadModuleFile() 1335 StringRef ModuleName = Path[0].first->getName(); in loadModule() local 1343 if (LastModuleImportResult && ModuleName != getLangOpts().CurrentModule && in loadModule() 1344 ModuleName != getLangOpts().ImplementationOfModule) in loadModule() 1358 } else if (ModuleName == getLangOpts().CurrentModule || in loadModule() 1359 ModuleName == getLangOpts().ImplementationOfModule) { in loadModule() 1361 Module = PP->getHeaderSearchInfo().lookupModule(ModuleName); in loadModule() 1365 Module = PP->getHeaderSearchInfo().lookupModule(ModuleName); in loadModule() [all …]
|
| H A D | TextDiagnostic.cpp | 886 StringRef ModuleName, in emitImportLocation() argument 889 OS << "In module '" << ModuleName << "' imported from " in emitImportLocation() 892 OS << "In module " << ModuleName << "':\n"; in emitImportLocation() 897 StringRef ModuleName, in emitBuildingModuleLocation() argument 900 OS << "While building module '" << ModuleName << "' imported from " in emitBuildingModuleLocation() 903 OS << "While building module '" << ModuleName << "':\n"; in emitBuildingModuleLocation()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/CodeGen/ |
| H A D | ModuleBuilder.h | 45 const std::string &ModuleName,
|
| /minix3/external/bsd/llvm/dist/clang/lib/Serialization/ |
| H A D | ModuleManager.cpp | 202 StringRef ModuleName = (*victim)->ModuleName; in removeModules() local 203 if (Module *mod = modMap->findModule(ModuleName)) { in removeModules() 487 return M->ModuleName; in getNodeLabel()
|
| H A D | GlobalModuleIndex.cpp | 210 StringRef ModuleName = llvm::sys::path::stem(Modules[ID].FileName); in GlobalModuleIndex() local 212 ModuleName = ModuleName.rsplit('-').first; in GlobalModuleIndex() 213 UnresolvedModules[ModuleName] = ID; in GlobalModuleIndex() 321 StringRef Name = File->ModuleName; in loadedModuleFile()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Lex/ |
| H A D | ModuleMap.h | 231 Module *inferFrameworkModule(StringRef ModuleName, 354 Module *inferFrameworkModule(StringRef ModuleName,
|
| H A D | HeaderSearch.h | 503 std::string getModuleFileName(StringRef ModuleName, StringRef ModuleMapPath); 514 Module *lookupModule(StringRef ModuleName, bool AllowSearch = true);
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| H A D | AddressSanitizer.cpp | 434 void poisonOneInitializer(Function &GlobalInit, GlobalValue *ModuleName); 435 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName); 1008 GlobalValue *ModuleName) { in poisonOneInitializer() argument 1013 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy); in poisonOneInitializer() 1023 Module &M, GlobalValue *ModuleName) { in createInitializerPoisonCalls() argument 1038 poisonOneInitializer(*F, ModuleName); in createInitializerPoisonCalls() 1182 GlobalVariable *ModuleName = createPrivateGlobalForString( in InstrumentGlobals() local 1249 ConstantExpr::getPointerCast(ModuleName, IntptrTy), in InstrumentGlobals() 1265 createInitializerPoisonCalls(M, ModuleName); in InstrumentGlobals()
|
| /minix3/external/bsd/llvm/dist/clang/test/Index/ |
| H A D | annotate-module.m | 47 …efinition) Extent=[3:1 - 3:24] Spelling=DependsOnModule ([3:9 - 3:24]) ModuleName=DependsOnModule …
|