Home
last modified time | relevance | path

Searched refs:DLLName (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/dports/astro/phd2/phd2-2.6.10/
H A Dcam_OSPL130.cpp20 static bool DLLExists(const wxString& DLLName) in DLLExists() argument
23 if (wxFileExists(StdPaths.GetExecutablePath().BeforeLast(PATHSEPCH) + PATHSEPSTR + DLLName)) in DLLExists()
25 …sts(StdPaths.GetExecutablePath().BeforeLast(PATHSEPCH) + PATHSEPSTR + ".." + PATHSEPSTR + DLLName)) in DLLExists()
27 if (wxFileExists(wxGetOSDirectory() + PATHSEPSTR + DLLName)) in DLLExists()
29 if (wxFileExists(wxGetOSDirectory() + PATHSEPSTR + "system32" + PATHSEPSTR + DLLName)) in DLLExists()
H A Dcam_atik16.cpp105 wxString DLLName = HSModel ? _T("ArtemisHSC.dll") : _T("ArtemisCCD.dll"); in LoadDLL() local
106 Debug.Write(wxString::Format("Atik16 load DLL %s\n", DLLName)); in LoadDLL()
107 if (!ArtemisLoadDLL(DLLName.char_str())) in LoadDLL()
109 *err = wxString::Format(_("Cannot load Atik camera DLL %s"), DLLName); in LoadDLL()
/dports/devel/llvm80/llvm-8.0.1.src/tools/lld/COFF/
H A DDLL.cpp102 explicit ImportDirectoryChunk(Chunk *N) : DLLName(N) {} in ImportDirectoryChunk()
110 E->NameRVA = DLLName->getRVA(); in writeTo()
114 Chunk *DLLName; member in lld::coff::__anon4c2e10e20111::ImportDirectoryChunk
166 explicit DelayDirectoryChunk(Chunk *N) : DLLName(N) {} in DelayDirectoryChunk()
177 E->Name = DLLName->getRVA(); in writeTo()
183 Chunk *DLLName; member in lld::coff::__anon4c2e10e20111::DelayDirectoryChunk
399 : MaxOrdinal(I), NameTabSize(J), DLLName(D), AddressTab(A), NameTab(N), in ExportDirectoryChunk()
410 E->NameRVA = DLLName->getRVA(); in writeTo()
421 Chunk *DLLName; member in lld::coff::__anon4c2e10e20111::ExportDirectoryChunk
633 auto *Dir = make<ExportDirectoryChunk>(MaxOrdinal, Names.size(), DLLName, in EdataContents()
[all …]
/dports/devel/llvm70/llvm-7.0.1.src/tools/lld/COFF/
H A DDLL.cpp98 explicit ImportDirectoryChunk(Chunk *N) : DLLName(N) {} in ImportDirectoryChunk()
104 E->NameRVA = DLLName->getRVA(); in writeTo()
108 Chunk *DLLName; member in lld::coff::__anone63a30200111::ImportDirectoryChunk
156 explicit DelayDirectoryChunk(Chunk *N) : DLLName(N) {} in DelayDirectoryChunk()
165 E->Name = DLLName->getRVA(); in writeTo()
171 Chunk *DLLName; member in lld::coff::__anone63a30200111::DelayDirectoryChunk
333 : MaxOrdinal(I), NameTabSize(J), DLLName(D), AddressTab(A), NameTab(N), in ExportDirectoryChunk()
342 E->NameRVA = DLLName->getRVA(); in writeTo()
353 Chunk *DLLName; member in lld::coff::__anone63a30200111::ExportDirectoryChunk
585 auto *Dir = make<ExportDirectoryChunk>(MaxOrdinal, Names.size(), DLLName, in EdataContents()
[all …]
/dports/cad/zcad/zcad-8b8a693/cad_source/other/AGraphLaz/Vectors/
H A DExtSys.pas114 {$IFDEF DYNAMIC_NLS}external DLLName index 302{$ENDIF}
122 {$IFDEF DYNAMIC_NLS}external DLLName index 301{$ENDIF}
131 {$IFDEF DYNAMIC_NLS}external DLLName index 303{$ENDIF}
141 {$IFDEF DYNAMIC_NLS}external DLLName index 304{$ENDIF}
153 {$IFDEF DYNAMIC_NLS}external DLLName index 305{$ENDIF}
159 {$IFDEF DYNAMIC_NLS}external DLLName index 306{$ENDIF}
170 {$IFDEF DYNAMIC_NLS}external DLLName index 307{$ENDIF}
177 {$IFDEF DYNAMIC_NLS}external DLLName index 308{$ENDIF}
183 {$IFDEF DYNAMIC_NLS}external DLLName index 309{$ENDIF}
192 {$IFDEF DYNAMIC_NLS}external DLLName index 310{$ENDIF}
[all …]
/dports/math/amgcl/amgcl-1.4.2/delphi/
H A Damgcl.pas106 DLLName = 'amgcl.dll';
221 hlib := LoadLibrary(DLLName);
222 if hlib = 0 then raise Exception.Create('Failed to load ' + DLLName);
238 raise Exception.Create('Failed to load ' + DLLName +
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/llvm11/llvm-11.0.1.src/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/llvm10/llvm-10.0.1.src/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/llvm80/llvm-8.0.1.src/utils/KillTheDoctor/
H A DKillTheDoctor.cpp476 std::string DLLName; in main() local
477 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
479 DLLName = "<failed to get file name from file handle> : "; in main()
480 DLLName += ec.message(); in main()
484 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
487 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/llvm90/llvm-9.0.1.src/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp475 std::string DLLName; in main() local
476 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
478 DLLName = "<failed to get file name from file handle> : "; in main()
479 DLLName += ec.message(); in main()
483 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
486 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/devel/llvm70/llvm-7.0.1.src/utils/KillTheDoctor/
H A DKillTheDoctor.cpp476 std::string DLLName; in main() local
477 ec = GetFileNameFromHandle(DLLFile, DLLName); in main()
479 DLLName = "<failed to get file name from file handle> : "; in main()
480 DLLName += ec.message(); in main()
484 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n'; in main()
487 if (NoUser32 && sys::path::stem(DLLName) == "user32") { in main()
/dports/archivers/fpc-unzip/fpc-3.2.2/packages/unzip/src/
H A Dunzipdll.pp74 DLLName: string [8] = 'UNZIP32'#0;
99 DLLPath := Dir + DLLName;
103 and (DosLoadModule (@ErrPath, SizeOf (ErrPath), @DLLName [1], DLLHandle) <> 0)
119 if DLLHandle = 0 then DLLHandle := LoadLibrary (@DLLName [1]);
151 ArgV [0] := @DLLName;
/dports/lang/fpc-source/fpc-3.2.2/packages/unzip/src/
H A Dunzipdll.pp74 DLLName: string [8] = 'UNZIP32'#0;
99 DLLPath := Dir + DLLName;
103 and (DosLoadModule (@ErrPath, SizeOf (ErrPath), @DLLName [1], DLLHandle) <> 0)
119 if DLLHandle = 0 then DLLHandle := LoadLibrary (@DLLName [1]);
151 ArgV [0] := @DLLName;
/dports/devel/objconv/objconv-2.52/source/
H A Dcof2asm.cpp337 const char * DLLName; // Name of DLL containing symbol in MakeImportList() local
356 DLLName = &Get<char>(impdir.FileOffset + NameOffset); in MakeImportList()
359 DLLName = "?"; in MakeImportList()
382 strncpy(NameBuffer, DLLName, 20); in MakeImportList()
401 EntrySize, 0xC, 0x20, 0, SymbolName, DLLName); in MakeImportList()

12345678910>>...12