Home
last modified time | relevance | path

Searched full:librarypath (Results 1 – 25 of 26) sorted by relevance

12

/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DUnmanagedLibrary.cs45 readonly string libraryPath; field in Grpc.Core.Internal.UnmanagedLibrary
50 this.libraryPath = FirstValidLibraryPath(libraryPathAlternatives); in UnmanagedLibrary()
52 Logger.Debug("Attempting to load native library \"{0}\"", this.libraryPath); in UnmanagedLibrary()
54 this.handle = PlatformSpecificLoadLibrary(this.libraryPath); in UnmanagedLibrary()
58 … throw new IOException(string.Format("Error loading native library \"{0}\"", this.libraryPath)); in UnmanagedLibrary()
132 private static IntPtr PlatformSpecificLoadLibrary(string libraryPath) in PlatformSpecificLoadLibrary() argument
136 return Windows.LoadLibrary(libraryPath); in PlatformSpecificLoadLibrary()
142 return Mono.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary()
146 return CoreCLR.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary()
148 return Linux.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary()
[all …]
/external/deqp/framework/platform/nullws/
DtcuNullWSPlatform.hpp42 VulkanLibrary (const char* libraryPath) in VulkanLibrary() argument
43 : m_library (libraryPath != DE_NULL ? libraryPath : "libvulkan.so.1") in VulkanLibrary()
72 vk::Library* createLibrary (const char* libraryPath) const in createLibrary()
74 return new VulkanLibrary(libraryPath); in createLibrary()
/external/zstd/build/VS2010/zstd/
Dzstd.vcxproj160 <LibraryPath>$(LibraryPath)</LibraryPath>
166 <LibraryPath>$(LibraryPath);</LibraryPath>
172 <LibraryPath>$(LibraryPath)</LibraryPath>
178 <LibraryPath>$(LibraryPath);</LibraryPath>
/external/deqp/framework/platform/osx/
DtcuOSXVulkanPlatform.cpp88 VulkanLibrary (const char* libraryPath) in VulkanLibrary() argument
89 : m_library (libraryPath != DE_NULL ? libraryPath : "libvulkan.dylib") in VulkanLibrary()
128 vk::Library* VulkanPlatform::createLibrary (const char* libraryPath) const in createLibrary()
130 return new VulkanLibrary(libraryPath); in createLibrary()
DtcuOSXVulkanPlatform.hpp40 vk::Library* createLibrary (const char* libraryPath) const;
/external/deqp/framework/platform/surfaceless/
DtcuSurfacelessPlatform.cpp99 VulkanLibrary (const char* libraryPath) in VulkanLibrary() argument
100 : m_library (libraryPath != DE_NULL ? libraryPath : DEQP_VULKAN_LIBRARY_PATH) in VulkanLibrary()
122 vk::Library* createLibrary (const char* libraryPath) const in createLibrary()
124 return new VulkanLibrary(libraryPath); in createLibrary()
448 const char* libraryPath = NULL; in EglRenderContext() local
453 libraryPath = DEQP_GLES2_LIBRARY_PATH; in EglRenderContext()
455 libraryPath = DEQP_GLES3_LIBRARY_PATH; in EglRenderContext()
459 libraryPath = DEQP_OPENGL_LIBRARY_PATH; in EglRenderContext()
462 m_glLibrary = new de::DynamicLibrary(libraryPath); in EglRenderContext()
/external/swiftshader/src/System/
DSharedLibrary.hpp36 std::string libraryPath = libraryDirectory + libraryName; in loadLibrary() local
37 void *library = getLibraryHandle(libraryPath.c_str()); in loadLibrary()
52 std::string libraryPath = libraryDirectory + libraryName; in loadLibrary() local
53 void *library = loadLibrary(libraryPath.c_str()); in loadLibrary()
/external/llvm/tools/msbuild/
DMicrosoft.Cpp.Win32.llvm.props.in9 …<LibraryPath>$(LLVMInstallDir)\lib\clang\@LIB_PATH_VERSION@\lib\windows;$(LibraryPath)</LibraryPat…
/external/deqp/framework/platform/win32/
DtcuWin32VulkanPlatform.cpp101 VulkanLibrary (const char* libraryPath) in VulkanLibrary() argument
102 : m_library (libraryPath != DE_NULL ? libraryPath : "vulkan-1.dll") in VulkanLibrary()
152 vk::Library* VulkanPlatform::createLibrary (LibraryType libraryType, const char* libraryPath) const in createLibrary()
156 case LIBRARY_TYPE_VULKAN: return new VulkanLibrary(libraryPath); in createLibrary()
/external/deqp/framework/platform/android/
DtcuAndroidPlatform.cpp197 VulkanLibrary (const char* libraryPath) in VulkanLibrary() argument
198 : m_library (libraryPath != DE_NULL ? libraryPath : "libvulkan.so") in VulkanLibrary()
331 vk::Library* Platform::createLibrary (const char* libraryPath) const in createLibrary()
333 return new VulkanLibrary(libraryPath); in createLibrary()
DtcuAndroidPlatform.hpp55 vk::Library* createLibrary (const char* libraryPath) const;
/external/antlr/runtime/ActionScript/project/
D.actionScriptProperties5 <libraryPath defaultLinkType="1">
17 </libraryPath>
/external/deqp/framework/platform/lnx/
DtcuLnxVulkanPlatform.cpp349 VulkanLibrary (const char* libraryPath) in VulkanLibrary() argument
350 : m_library (libraryPath != DE_NULL ? libraryPath : DEQP_VULKAN_LIBRARY_PATH) in VulkanLibrary()
462 vk::Library* VulkanPlatform::createLibrary (LibraryType libraryType, const char* libraryPath) const in createLibrary()
466 case LIBRARY_TYPE_VULKAN: return new VulkanLibrary(libraryPath); in createLibrary()
DtcuLnxVulkanPlatform.hpp41 …teLibrary (LibraryType libraryType = LIBRARY_TYPE_VULKAN, const char* libraryPath = DE_NULL) cons…
/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/
DDefaultNativeRuntimeLoader.java153 Path libraryPath = tempDirectory.getBasePath().resolve(libraryName); in loadLibrary() local
155 Resources.asByteSource(libraryResource).copyTo(Files.asByteSink(libraryPath.toFile())); in loadLibrary()
156 System.load(libraryPath.toAbsolutePath().toString()); in loadLibrary()
/external/compiler-rt/test/BlocksRuntime/
Dtestfilerunner.m50 @synthesize libraryPath, frameworkPath;
200 if (libraryPath) {
201 sprintf(lpath, "DYLD_LIBRARY_PATH=%s", libraryPath);
580 printf("Usage: %s [-fast] [-e] [-dyld librarypath] [gcc4.2dir] [-- | source1 ...]\n", whoami);
628 char *libraryPath = getenv("DYLD_LIBRARY_PATH");
642 libraryPath = argv[1];
712 line.libraryPath = libraryPath; // tell generators about it instead XXX
Dtestfilerunner.h64 __strong char *libraryPath; variable
73 @property __strong char *libraryPath;
/external/deqp/framework/platform/null/
DtcuNullPlatform.cpp84 vk::Library* Platform::createLibrary (vk::Platform::LibraryType, const char* libraryPath) const in createLibrary()
86 DE_UNREF(libraryPath); in createLibrary()
DtcuNullPlatform.hpp49 …braryType libraryType = vk::Platform::LIBRARY_TYPE_VULKAN, const char* libraryPath = DE_NULL) cons…
/external/deqp/framework/egl/
DegluGLContextFactory.cpp425 const char* libraryPath = DE_NULL; in create() local
430 libraryPath = DEQP_GLES2_LIBRARY_PATH; in create()
432 libraryPath = DEQP_GLES3_LIBRARY_PATH; in create()
435 libraryPath = DEQP_OPENGL_LIBRARY_PATH; in create()
437 m_dynamicGLLibrary = new de::DynamicLibrary(libraryPath); in create()
/external/zstd/
Dappveyor.yml46 …SET ADDITIONALPARAM=/p:LibraryPath="C:\Program Files\Microsoft SDKs\Windows\v7.1\lib\x64;c:\Progra…
162 …SET ADDITIONALPARAM=/p:LibraryPath="C:\Program Files\Microsoft SDKs\Windows\v7.1\lib\x64;c:\Progra…
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DAppDataDirGuesserTest.java140 "libraryPath=/data/app-lib/abc-1]"; in testPre43PathProcessing()
142 assertTrue("dexPath=/data/app/abc-1.apk,libraryPath=/data/app-lib/abc-1".equals(processed)); in testPre43PathProcessing()
/external/tensorflow/tensorflow/lite/delegates/hexagon/java/src/main/java/org/tensorflow/lite/
DHexagonDelegate.java77 private static native boolean setAdspLibraryPath(String libraryPath); in setAdspLibraryPath() argument
/external/deqp/external/vulkancts/framework/vulkan/
DvkPlatform.hpp403 …teLibrary (LibraryType libraryType = LIBRARY_TYPE_VULKAN, const char* libraryPath = DE_NULL) cons…
405 virtual Library* createLibrary (const char* libraryPath = DE_NULL) const = 0;
/external/lz4/
Dappveyor.yml33 …IF [%PLATFORM%]==[x64] (SET ADDITIONALPARAM=/p:LibraryPath="C:\Program Files\Microsoft SDKs\Window…

12