Home
last modified time | relevance | path

Searched refs:libraryPath (Results 1 – 25 of 405) sorted by relevance

12345678910>>...17

/dports/audio/csound/csound-6.15.0/util/
H A Dmkdb.c53 *library = (void*) LoadLibrary(libraryPath); in csOpenLibrary()
74 if (libraryPath != NULL) { in csOpenLibrary()
75 int len = (int) strlen(libraryPath); in csOpenLibrary()
82 *library = (void*) dlopen(libraryPath, flg); in csOpenLibrary()
157 static int csLoadExternal(const char *libraryPath) in csLoadExternal() argument
166 if (libraryPath == NULL || libraryPath[0] == '\0') in csLoadExternal()
169 fname = (char*) libraryPath + (int) strlen(libraryPath); in csLoadExternal()
177 printf("Library '%s'\n", libraryPath); in csLoadExternal()
178 err = csOpenLibrary(&h, libraryPath); in csLoadExternal()
182 libraryPath, dlerror()); in csLoadExternal()
[all …]
/dports/misc/usd/USD-21.11/pxr/base/tf/testenv/
H A DregistryManagerUnload.cpp42 _LoadAndUnloadSharedLibrary(const std::string & libraryPath) in _LoadAndUnloadSharedLibrary() argument
45 void * handle = TfDlopen(libraryPath.c_str(), ARCH_LIBRARY_NOW, &dlErrorMsg); in _LoadAndUnloadSharedLibrary()
58 std::string libraryPath; in Test_TfRegistryManagerUnload() local
59 … TF_AXIOM(ArchGetAddressInfo((void*)Test_TfRegistryManagerUnload, &libraryPath, NULL, NULL, NULL)); in Test_TfRegistryManagerUnload()
60 libraryPath = TfGetPathName(libraryPath) + in Test_TfRegistryManagerUnload()
68 printf("Checking test shared lib: %s\n", libraryPath.c_str()); in Test_TfRegistryManagerUnload()
69 TF_AXIOM(!ArchFileAccess(libraryPath.c_str(), R_OK)); in Test_TfRegistryManagerUnload()
73 _LoadAndUnloadSharedLibrary(libraryPath); in Test_TfRegistryManagerUnload()
82 _LoadAndUnloadSharedLibrary(libraryPath); in Test_TfRegistryManagerUnload()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/
H A DJavaFxLibraryResolver.java30 private static boolean isJavaFx(IPath libraryPath) { in isJavaFx() argument
31 return JFXRT_JAR.equals(libraryPath.lastSegment()); in isJavaFx()
35 public IPath getPackageRoot(IPath libraryPath) { in getPackageRoot() argument
40 public IPath getSourcePath(IPath libraryPath) { in getSourcePath() argument
41 if (isJavaFx(libraryPath)) { in getSourcePath()
42 File parent = libraryPath.toFile().getParentFile(); in getSourcePath()
55 public URL getJavadocLocation(IPath libraryPath) { in getJavadocLocation() argument
56 if (isJavaFx(libraryPath)) { in getJavadocLocation()
72 public URL getIndexLocation(IPath libraryPath) { in getIndexLocation() argument
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/qmljs/
H A Dqmljsplugindumper.cpp134 if (m_plugins.at(index).qmldirPath == libraryPath) in onLoadPluginTypes()
194 static QString noTypeinfoError(const QString &libraryPath) in noTypeinfoError() argument
199 libraryPath); in noTypeinfoError()
204 return noTypeinfoError(libraryPath) + QLatin1String("\n\n") + in qmldumpErrorMessage()
213 return noTypeinfoError(libraryPath) + QLatin1String("\n\n") + in qmldumpFailedMessage()
271 const QString libraryPath = m_runningQmldumps.take(process); in qmlPluginTypeDumpDone() local
272 if (libraryPath.isEmpty()) in qmlPluginTypeDumpDone()
275 LibraryInfo libraryInfo = snapshot.libraryInfo(libraryPath); in qmlPluginTypeDumpDone()
323 printParseWarnings(libraryPath, infos.warning); in qmlPluginTypeDumpDone()
344 if (libraryPath.isEmpty()) in qmlPluginTypeDumpError()
[all …]
/dports/devel/ignition-plugin/ignitionrobotics-ign-plugin-6bf2bf09570f/test/integration/
H A Dfactory.cc149 pl.LoadLibrary(libraryPath); in TEST()
164 CHECK_FOR_LIBRARY(libraryPath, true); in TEST()
167 CHECK_FOR_LIBRARY(libraryPath, false); in TEST()
177 pl.LoadLibrary(libraryPath); in TEST()
192 CHECK_FOR_LIBRARY(libraryPath, true); in TEST()
196 CHECK_FOR_LIBRARY(libraryPath, false); in TEST()
199 CHECK_FOR_LIBRARY(libraryPath, false); in TEST()
209 pl.LoadLibrary(libraryPath); in TEST()
224 CHECK_FOR_LIBRARY(libraryPath, true); in TEST()
233 CHECK_FOR_LIBRARY(libraryPath, true); in TEST()
[all …]
H A DWeakPluginPtr.cc29 const std::string &libraryPath = IGNDummyPlugins_LIB; in TEST() local
33 CHECK_FOR_LIBRARY(libraryPath, false); in TEST()
37 pl.LoadLibrary(libraryPath); in TEST()
38 CHECK_FOR_LIBRARY(libraryPath, true); in TEST()
56 CHECK_FOR_LIBRARY(libraryPath, true); in TEST()
59 CHECK_FOR_LIBRARY(libraryPath, false); in TEST()
/dports/devel/grpc130/grpc-1.30.2/src/csharp/Grpc.Core/Internal/
H A 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, out string loadLibraryErrorDetail); in UnmanagedLibrary()
59 this.libraryPath, loadLibraryErrorDetail)); in UnmanagedLibrary()
133 private static IntPtr PlatformSpecificLoadLibrary(string libraryPath, out string errorMsg) in PlatformSpecificLoadLibrary() argument
139 return Windows.LoadLibrary(libraryPath); in PlatformSpecificLoadLibrary()
145 return LoadLibraryPosix(Mono.dlopen, Mono.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
151 return LoadLibraryPosix(Linux.dlopen, Linux.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
155 return LoadLibraryPosix(MacOSX.dlopen, MacOSX.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
[all …]
/dports/devel/grpc/grpc-1.42.0/src/csharp/Grpc.Core/Internal/
H A 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, out string loadLibraryErrorDetail); in UnmanagedLibrary()
59 this.libraryPath, loadLibraryErrorDetail)); in UnmanagedLibrary()
133 private static IntPtr PlatformSpecificLoadLibrary(string libraryPath, out string errorMsg) in PlatformSpecificLoadLibrary() argument
138 var handle = Windows.LoadLibrary(libraryPath); in PlatformSpecificLoadLibrary()
155 return LoadLibraryPosix(Mono.dlopen, Mono.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
161 return LoadLibraryPosix(Linux.dlopen, Linux.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
165 return LoadLibraryPosix(MacOSX.dlopen, MacOSX.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
[all …]
/dports/devel/grpc134/grpc-1.34.1/src/csharp/Grpc.Core/Internal/
H A 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, out string loadLibraryErrorDetail); in UnmanagedLibrary()
59 this.libraryPath, loadLibraryErrorDetail)); in UnmanagedLibrary()
133 private static IntPtr PlatformSpecificLoadLibrary(string libraryPath, out string errorMsg) in PlatformSpecificLoadLibrary() argument
139 return Windows.LoadLibrary(libraryPath); in PlatformSpecificLoadLibrary()
145 return LoadLibraryPosix(Mono.dlopen, Mono.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
151 return LoadLibraryPosix(Linux.dlopen, Linux.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
155 return LoadLibraryPosix(MacOSX.dlopen, MacOSX.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/src/csharp/Grpc.Core/Internal/
H A 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, out string loadLibraryErrorDetail); in UnmanagedLibrary()
59 this.libraryPath, loadLibraryErrorDetail)); in UnmanagedLibrary()
133 private static IntPtr PlatformSpecificLoadLibrary(string libraryPath, out string errorMsg) in PlatformSpecificLoadLibrary() argument
139 return Windows.LoadLibrary(libraryPath); in PlatformSpecificLoadLibrary()
145 return LoadLibraryPosix(Mono.dlopen, Mono.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
151 return LoadLibraryPosix(Linux.dlopen, Linux.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
155 return LoadLibraryPosix(MacOSX.dlopen, MacOSX.dlerror, libraryPath, out errorMsg); in PlatformSpecificLoadLibrary()
[all …]
/dports/devel/kdevelop/kdevelop-21.12.3/plugins/qmljs/3rdparty/qtcreator-libs/qmljs/
H A Dqmljsplugindumper.cpp74 Q_ARG(QString, libraryPath), in loadPluginTypes()
144 if (m_plugins.at(index).qmldirPath == libraryPath) in onLoadPluginTypes()
213 static QString noTypeinfoError(const QString &libraryPath) in noTypeinfoError() argument
218 libraryPath); in noTypeinfoError()
290 const QString libraryPath = m_runningQmldumps.take(process); in qmlPluginTypeDumpDone() local
291 if (libraryPath.isEmpty()) in qmlPluginTypeDumpDone()
294 LibraryInfo libraryInfo = snapshot.libraryInfo(libraryPath); in qmlPluginTypeDumpDone()
326 printParseWarnings(libraryPath, warning); in qmlPluginTypeDumpDone()
330 m_modelManager->updateLibraryInfo(libraryPath, libraryInfo); in qmlPluginTypeDumpDone()
341 if (libraryPath.isEmpty()) in qmlPluginTypeDumpError()
[all …]
/dports/www/kiwix-tools/kiwix-tools-3.1.2/src/manager/
H A Dkiwix-manage.cpp116 int handle_add(kiwix::Library* library, const std::string& libraryPath, in handle_add() argument
214 string libraryPath = ""; in main() local
240 libraryPath = argv[1]; in main()
252 if (libraryPath == "" || action == NONE) { in main()
258 libraryPath = isRelativePath(libraryPath) in main()
260 : libraryPath; in main()
262 manager.readFile(libraryPath, false); in main()
268 exitCode = handle_show(&library, libraryPath, argc, argv); in main()
271 exitCode = handle_add(&library, libraryPath, argc, argv); in main()
274 exitCode = handle_remove(&library, libraryPath, argc, argv); in main()
[all …]
/dports/www/zend-framework/ZendFramework-2.4.13/bin/
H A Dclassmap_generator.php46 $libraryPath = getcwd(); variable
88 $libraryPath = $opts->l; variable
90 $libraryPath = str_replace(DIRECTORY_SEPARATOR, '/', realpath($libraryPath)); variable
94 $output = $libraryPath . '/autoload_classmap.php';
121 if (strpos($libraryPath, $classmapPath) === 0) {
122 $relativePathForClassmap = substr($libraryPath, strlen($classmapPath) + 1) . '/';
124 $libraryPathParts = explode('/', $libraryPath);
150 echo "Appending to class file map '$output' for library in '$libraryPath'..." . PHP_EOL;
152 echo "Creating class file map for library in '$libraryPath'..." . PHP_EOL;
157 $l = new ClassFileLocator($libraryPath);
[all …]
H A Dtemplatemap_generator.php46 $libraryPath = getcwd(); variable
96 $libraryPath = $opts->l; variable
98 $libraryPath = str_replace(DIRECTORY_SEPARATOR, '/', realpath($libraryPath)); variable
121 $output = $libraryPath . '/template_map.php';
148 if (strpos($libraryPath, $mapPath) === 0) {
149 $relativePathForMap = substr($libraryPath, strlen($mapPath) + 1) . '/';
151 $libraryPathParts = explode('/', $libraryPath);
177 echo "Appending to template file map '$output' for library in '$libraryPath'..." . PHP_EOL;
179 echo "Creating template file map for library in '$libraryPath'..." . PHP_EOL;
194 …$filename = str_replace($libraryPath . '/', '', str_replace(DIRECTORY_SEPARATOR, '/', $file->getP…
/dports/math/scilab/scilab-6.1.1/scilab/modules/jvm/src/c/
H A DloadLibrarypath.c46 char *libraryPath = NULL; in LoadLibrarypath() local
84 libraryPath = (char*)attrib->children->content; in LoadLibrarypath()
89 if ( (libraryPath) && (strlen(libraryPath) > 0) ) in LoadLibrarypath()
95 if (strncmp(libraryPath, KEYWORDSCILAB, strlen(KEYWORDSCILAB)) == 0) in LoadLibrarypath()
97 … FullLibrarypath = (char*)MALLOC(sizeof(char) * (strlen(sciPath) + strlen(libraryPath) + 1)); in LoadLibrarypath()
101 strcat(FullLibrarypath, &libraryPath[strlen(KEYWORDSCILAB)]); in LoadLibrarypath()
106 FullLibrarypath = os_strdup(libraryPath); in LoadLibrarypath()
122 libraryPath = NULL; in LoadLibrarypath()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/core/
H A DVMInstallTestsLibraryLocationResolver.java53 public IPath getPackageRoot(IPath libraryPath) { in getPackageRoot() argument
54 if (applies(libraryPath)) { in getPackageRoot()
66 public IPath getSourcePath(IPath libraryPath) { in getSourcePath() argument
67 if (applies(libraryPath)) { in getSourcePath()
82 public URL getJavadocLocation(IPath libraryPath) { in getJavadocLocation() argument
83 if (applies(libraryPath)) { in getJavadocLocation()
103 public URL getIndexLocation(IPath libraryPath) { in getIndexLocation() argument
104 if (applies(libraryPath)) { in getIndexLocation()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/
H A DLibraryLocation.java54 public LibraryLocation(IPath libraryPath, IPath sourcePath, IPath packageRoot) { in LibraryLocation() argument
55 this(libraryPath, sourcePath, packageRoot, null); in LibraryLocation()
74 …public LibraryLocation(IPath libraryPath, IPath sourcePath, IPath packageRoot, URL javadocLocation… in LibraryLocation() argument
75 this(libraryPath, sourcePath, packageRoot, javadocLocation, null, null); in LibraryLocation()
95 …public LibraryLocation(IPath libraryPath, IPath sourcePath, IPath packageRoot, URL javadocLocation… in LibraryLocation() argument
96 this(libraryPath, sourcePath, packageRoot, javadocLocation, indexLocation, null); in LibraryLocation()
117 …public LibraryLocation(IPath libraryPath, IPath sourcePath, IPath packageRoot, URL javadocLocation… in LibraryLocation() argument
118 if (libraryPath == null) { in LibraryLocation()
121 fSystemLibrary= libraryPath; in LibraryLocation()
H A DILibraryLocationResolver.java45 public IPath getPackageRoot(IPath libraryPath); in getPackageRoot() argument
55 public IPath getSourcePath(IPath libraryPath); in getSourcePath() argument
63 public URL getJavadocLocation(IPath libraryPath); in getJavadocLocation() argument
71 public URL getIndexLocation(IPath libraryPath); in getIndexLocation() argument
/dports/audio/sayonara/sayonara-player-5bbf1399332d5d59362ad03bf625f9132be72206/src/Components/Library/Threads/
H A DReloadThread.cpp59 QString libraryPath;
81 m->libraryPath = GetSetting(Set::Lib_Path);
125 const QString libraryPath = m->libraryPath;
126 if(libraryPath.isEmpty() || !FileUtils::exists(libraryPath)) {
133 QDir dir(libraryPath);
351 if(m->libraryPath.isEmpty())
373 libraryDatabase->deleteInvalidTracks(m->libraryPath, tracksToUpdate);
417 void ReloadThread::setLibrary(LibraryId libraryId, const QString& libraryPath)
419 m->libraryPath = libraryPath;
/dports/audio/sayonara/sayonara-player-5bbf1399332d5d59362ad03bf625f9132be72206/src/Components/Library/Importer/
H A DImportCache.cpp39 QString libraryPath; member
46 libraryPath(library_path) in Private()
50 CASSIGN(libraryPath), in Private()
59 ASSIGN(libraryPath); in operator =()
69 ImportCache::ImportCache(const QString& libraryPath) in ImportCache() argument
71 m = Pimpl::make<Private>(libraryPath); in ImportCache()
174 if(m->libraryPath.isEmpty()){ in targetFilename()
181 .arg(m->libraryPath) in targetFilename()
/dports/devel/qbs/qbs-src-1.21.0/share/qbs/modules/protobuf/objc/
H A Dprotobufobjc.qbs9 property string libraryPath: libraryProbe.path
15 cpp.libraryPaths: !frameworkPath && libraryPath ? [libraryPath] : []
16 cpp.dynamicLibraries: !frameworkPath && libraryPath ? ["ProtocolBuffers"] : []
58 if (!HelperFunctions.checkPath(libraryPath)) {
59 throw "Can't find objective-c protobuf library. Please set the libraryPath or "
/dports/math/clblas/clBLAS-2.10/src/wrappers/python/
H A Dsetup.py76 libraryPath = 'lib64'
78 libraryPath = 'lib'
82 libraryPath = path.join( libraryPath, 'import' )
89 library_dirs = [ path.join( clBlasRootPath, libraryPath ) ],
/dports/devel/jna/jna-5.7.0/src/com/sun/jna/
H A DNativeLibrary.java91 private final String libraryPath; field in NativeLibrary
113 this.libraryPath = libraryPath; in NativeLibrary()
190 LOG.log(DEBUG_LOAD_LEVEL, "Trying " + libraryPath); in loadLibrary()
191 handle = Native.open(libraryPath, openFlags); in loadLibrary()
204 handle = Native.open(libraryPath, openFlags); in loadLibrary()
219 handle = Native.open(libraryPath, openFlags); in loadLibrary()
232 if (libraryPath != null) { in loadLibrary()
261 if (libraryPath != null) { in loadLibrary()
278 libraryPath = embedded.getAbsolutePath(); in loadLibrary()
649 if (libraryPath == null) in getFile()
[all …]
/dports/net-p2p/vuze/vuze-5.7.4.0_2/com/aelitis/azureus/core/update/impl/
H A DAzureusRestarterImpl.java624 String libraryPath = System.getProperty("java.library.path"); in getLibraryPath() local
626 if ( libraryPath == null ){ in getLibraryPath()
628 libraryPath = ""; in getLibraryPath()
636 for (int i=0;i<libraryPath.length();i++){ in getLibraryPath()
638 char c = libraryPath.charAt(i); in getLibraryPath()
646 libraryPath = temp; in getLibraryPath()
651 while( libraryPath.endsWith(File.separator)){ in getLibraryPath()
653 libraryPath = libraryPath.substring( 0, libraryPath.length()-1 ); in getLibraryPath()
656 if ( libraryPath.length() > 0 ){ in getLibraryPath()
658 libraryPath = "-Djava.library.path=\"" + libraryPath + "\" "; in getLibraryPath()
[all …]
/dports/lang/tcl85/tcl8.5.19/macosx/
H A DtclMacOSXBundle.c98 char *libraryPath) in Tcl_MacOSXOpenBundleResources() argument
101 NULL, hasResourceFile, maxPathLen, libraryPath); in Tcl_MacOSXOpenBundleResources()
132 char *libraryPath) in Tcl_MacOSXOpenVersionedBundleResources() argument
139 libraryPath[0] = '\0'; in Tcl_MacOSXOpenVersionedBundleResources()
254 (unsigned char*) libraryPath, maxPathLen); in Tcl_MacOSXOpenVersionedBundleResources()
268 if (libraryPath[0]) { in Tcl_MacOSXOpenVersionedBundleResources()

12345678910>>...17