/freebsd/crypto/openssl/crypto/dso/ |
H A D | dso_win32.c | 501 HMODULE dll; in win32_pathbyaddr() local 518 dll = LoadLibrary(TEXT(DLLNAME)); in win32_pathbyaddr() 519 if (dll == NULL) { in win32_pathbyaddr() 525 GetProcAddress(dll, "CreateToolhelp32Snapshot"); in win32_pathbyaddr() 527 FreeLibrary(dll); in win32_pathbyaddr() 534 GetProcAddress(dll, "CloseToolhelp32Snapshot"); in win32_pathbyaddr() 538 module_first = (MODULE32) GetProcAddress(dll, "Module32First"); in win32_pathbyaddr() 539 module_next = (MODULE32) GetProcAddress(dll, "Module32Next"); in win32_pathbyaddr() 547 FreeLibrary(dll); in win32_pathbyaddr() 556 FreeLibrary(dll); in win32_pathbyaddr() [all …]
|
/freebsd/sys/netinet/libalias/ |
H A D | alias_mod.c | 128 static SLIST_HEAD(dll_chain, dll) dll_chain = SLIST_HEAD_INITIALIZER(dll_chain); 130 attach_dll(struct dll *p) in attach_dll() 132 struct dll *b; in attach_dll() 145 struct dll *b, *b_tmp; in detach_dll() 152 SLIST_REMOVE(&dll_chain, b, dll, next); in detach_dll() 159 struct dll * 162 struct dll *t; in walk_dll_chain()
|
H A D | alias_mod.h | 106 struct dll { struct 114 SLIST_ENTRY(dll) next; argument 120 int attach_dll(struct dll *); 122 struct dll *walk_dll_chain(void);
|
/freebsd/contrib/ncurses/ |
H A D | Makefile.os2 | 134 DLLS = $(addsuffix .dll, $(addprefix ./lib/, $(DLL_ROOTS))) 151 ./lib/%$(DLL_TAG).dll : ./lib/%.a 172 echo installing ./lib/$$i.dll as $(LIBDIR)/$$i.dll; \ 173 $(INSTALL_DATA) ./lib/$$i.dll $(LIBDIR)/$$i.dll; done 180 echo uninstalling $(LIBDIR)/$$i.dll; \ 181 rm -f $(LIBDIR)/$$i.dll; done
|
/freebsd/contrib/ldns/ |
H A D | makewin.sh | 217 cp "$installplacenonstatic"/lib/libldns.dll.a . 218 cp "$installplacenonstatic"/bin/*.dll . 219 cp "$sslinstallnonstatic"/lib/*.dll.a . 220 cp "$sslinstallnonstatic"/bin/*.dll . 221 cp "$sslinstallnonstatic"/lib/engines-*/*.dll . 253 zip -r ../../"$file" LICENSE README libldns.a *.dll *.dll.a Changelog *.exe include man1 man3 cat1 …
|
/freebsd/sys/contrib/zstd/lib/ |
H A D | README.md | 168 This command creates `dll\libzstd.dll` and the import library `dll\libzstd.lib`. 170 The header file `zstd.h` and the dynamic library `dll\libzstd.dll` are required to 173 It means that if a project that uses ZSTD consists of a single `test-dll.c` 174 file it should be linked with `dll\libzstd.dll`. For example: 176 gcc $(CFLAGS) -Iinclude/ test-dll.c -o test-dll dll\libzstd.dll 178 The compiled executable will require ZSTD DLL which is available at `dll\libzstd.dll`. 216 - `dll/` : resources directory for Windows compilation
|
H A D | Makefile | 131 LIBZSTD = dll/libzstd.dll 134 $(CC) $(FLAGS) -DZSTD_DLL_EXPORT=1 -Wl,--out-implib,dll/libzstd.dll.a -shared $^ -o $@ 245 $(RM) dll/libzstd.dll dll/libzstd.lib libzstd-nomt*
|
/freebsd/sys/contrib/libsodium/packaging/nuget/ |
H A D | package.gsl | 53 <!-- x86 Dynamic libraries (.dll) --> 54 …c\\$(package.target).dll" target="build\\native\\bin\\$(package.target)-x86-$(package.platformtool… 55 …\$(package.target).dll" target="build\\native\\bin\\$(package.target)-x86-$(package.platformtoolse… 77 <!-- x64 Dynamic libraries (.dll) --> 78 …c\\$(package.target).dll" target="build\\native\\bin\\$(package.target)-x64-$(package.platformtool… 79 …\$(package.target).dll" target="build\\native\\bin\\$(package.target)-x64-$(package.platformtoolse… 209 …kage.platformtoolset)-mt-$(package.pathversion).dll" DestinationFiles="$\(TargetDir)$(package.targ… 215 …e.platformtoolset)-mt-gd-$(package.pathversion).dll" DestinationFiles="$\(TargetDir)$(package.targ… 221 …kage.platformtoolset)-mt-$(package.pathversion).dll" DestinationFiles="$\(TargetDir)$(package.targ… 227 …e.platformtoolset)-mt-gd-$(package.pathversion).dll" DestinationFiles="$\(TargetDir)$(package.targ…
|
/freebsd/contrib/libfido2/regress/ |
H A D | CMakeLists.txt | 18 "${CBOR_BIN_DIRS}/${CBOR_LIBRARIES}.dll" 19 "${CRYPTO_BIN_DIRS}/${CRYPTO_LIBRARIES}.dll" 20 "${ZLIB_BIN_DIRS}/${ZLIB_LIBRARIES}.dll"
|
/freebsd/usr.sbin/bhyve/ |
H A D | uart_emul.c | 95 uint8_t dll; /* Baudrate divisor latch LSB */ 167 sc->dll = divisor; in uart_reset() 229 sc->dll = value; in uart_ns16550_write() 346 reg = sc->dll; in uart_ns16550_read() 475 SNAPSHOT_VAR_OR_LEAVE(sc->dll, meta, ret, done); in uart_ns16550_snapshot() 96 uint8_t dll; /* Baudrate divisor latch LSB */ global() member
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | DynamicLibrary.inc | 98 // | Handles | DbgHelp.dll | CreateSnapshot | EnumProcessModulesEx 104 // * Not including the load time of Dbghelp.dll (~.005 sec) 134 // Doing that here is causing real problems for the JIT where msvc.dll 135 // and ucrt.dll can define the same symbols. The runtime linker will choose 136 // symbols from ucrt.dll first, but iterating NOT in reverse here would 137 // mean that the msvc.dll versions would be returned.
|
/freebsd/contrib/wpa/src/utils/ |
H A D | pcsc_funcs.c | 130 static HINSTANCE dll = NULL; /* winscard.dll */ variable 195 if (dll) in mingw_load_symbols() 198 dll = LoadLibrary("winscard"); in mingw_load_symbols() 199 if (dll == NULL) { in mingw_load_symbols() 207 dll_ ## s = (void *) GetProcAddress(dll, sym); \ in mingw_load_symbols() 229 FreeLibrary(dll); in mingw_load_symbols() 230 dll = NULL; in mingw_load_symbols() 237 if (dll == NULL) in mingw_unload_symbols() 240 FreeLibrary(dll); in mingw_unload_symbols() 241 dll = NULL; in mingw_unload_symbols()
|
/freebsd/contrib/arm-optimized-routines/ |
H A D | config.mk.dist | 73 # Linker will look for .lib but some systems only have .dll.a, 76 mpfr-libs = $(SYSROOT)/lib/libmpfr.dll.a 77 gmp-libs = $(SYSROOT)/lib/libgmp.dll.a 78 mpc-libs = $(SYSROOT)/lib/libmpc.dll.a
|
/freebsd/sys/contrib/libsodium/builds/msvc/ |
H A D | resource.rc | 6 //specify the version numbers for the dll's 51 VALUE "OriginalFilename", "libsodium.dll"
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | Makefile | 222 .PHONY: zstd-dll 223 zstd-dll : LDFLAGS+= -L$(LIBZSTD) 224 zstd-dll : LDLIBS += -lzstd 225 zstd-dll : ZSTDLIB_LOCAL_SRC = xxhash.c 226 zstd-dll : zstd 277 zstd$(EXT) zstd32$(EXT) zstd-dll$(EXT) \
|
/freebsd/sys/contrib/libsodium/contrib/ |
H A D | Findsodium.cmake | 153 set(CMAKE_FIND_LIBRARY_SUFFIXES ".dll") 176 find_library(sodium_LIBRARY_DEBUG libsodium.dll.a 180 find_library(sodium_LIBRARY_RELEASE libsodium.dll.a 188 "${sodium_DIR}/bin/libsodium*.dll"
|
/freebsd/contrib/openbsm/m4/ |
H A D | ltoptions.m4 | 73 _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no 124 # win32-dll 126 # Declare package support for building win32 dll's. 127 LT_OPTION_DEFINE([LT_INIT], [win32-dll], 146 ])# win32-dll 150 _LT_SET_OPTION([LT_INIT], [win32-dll]) 153 put the 'win32-dll' option into LT_INIT's first parameter.])
|
/freebsd/contrib/openpam/m4/ |
H A D | ltoptions.m4 | 73 _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no 124 # win32-dll 126 # Declare package support for building win32 dll's. 127 LT_OPTION_DEFINE([LT_INIT], [win32-dll], 146 ])# win32-dll 150 _LT_SET_OPTION([LT_INIT], [win32-dll]) 153 put the 'win32-dll' option into LT_INIT's first parameter.])
|
/freebsd/contrib/ntp/sntp/libevent/m4/ |
H A D | ltoptions.m4 | 73 _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no 124 # win32-dll 126 # Declare package support for building win32 dll's. 127 LT_OPTION_DEFINE([LT_INIT], [win32-dll], 146 ])# win32-dll 150 _LT_SET_OPTION([LT_INIT], [win32-dll]) 153 put the 'win32-dll' option into LT_INIT's first parameter.])
|
/freebsd/contrib/ntp/sntp/m4/ |
H A D | ltoptions.m4 | 73 _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no 124 # win32-dll 126 # Declare package support for building win32 dll's. 127 LT_OPTION_DEFINE([LT_INIT], [win32-dll], 146 ])# win32-dll 150 _LT_SET_OPTION([LT_INIT], [win32-dll]) 153 put the 'win32-dll' option into LT_INIT's first parameter.])
|
/freebsd/contrib/libevent/m4/ |
H A D | ltoptions.m4 | 73 _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no 124 # win32-dll 126 # Declare package support for building win32 dll's. 127 LT_OPTION_DEFINE([LT_INIT], [win32-dll], 146 ])# win32-dll 150 _LT_SET_OPTION([LT_INIT], [win32-dll]) 153 put the 'win32-dll' option into LT_INIT's first parameter.])
|
/freebsd/contrib/ldns/m4/ |
H A D | ltoptions.m4 | 73 _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no 124 # win32-dll 126 # Declare package support for building win32 dll's. 127 LT_OPTION_DEFINE([LT_INIT], [win32-dll], 146 ])# win32-dll 150 _LT_SET_OPTION([LT_INIT], [win32-dll]) 153 put the 'win32-dll' option into LT_INIT's first parameter.])
|
/freebsd/contrib/file/m4/ |
H A D | ltoptions.m4 | 73 _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no 124 # win32-dll 126 # Declare package support for building win32 dll's. 127 LT_OPTION_DEFINE([LT_INIT], [win32-dll], 146 ])# win32-dll 150 _LT_SET_OPTION([LT_INIT], [win32-dll]) 153 put the 'win32-dll' option into LT_INIT's first parameter.])
|
/freebsd/crypto/openssl/Configurations/ |
H A D | windows-makefile.tmpl | 463 "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """{.,apps,test,fuzz}/$$1.*"""; } @ARGV" $(SHLIBS) 908 my $dll = platform->sharedlib($lib); 918 $import: $dll 920 $dll: $deps 924 $objs$target{ld_resp_delim}\$(LDOUTFLAG)$dll$target{ldpostoutflag}$target{ld_resp_delim}$linklibs\$… 926 IF EXIST $dll.manifest \\ 927 \$(MT) \$(MTFLAGS) \$(MTINFLAG)$dll.manifest \$(MTOUTFLAG)$dll 928 IF EXIST apps\\$dll DEL /Q /F apps\\$dll 929 IF EXIST test\\$dll DEL /Q /F test\\$dll 930 IF EXIST fuzz\\$dll DEL /Q /F fuzz\\$dll [all …]
|
/freebsd/crypto/heimdal/lib/heimdal/ |
H A D | NTMakefile | 70 DLL=$(BINDIR)\heimdal.dll 72 $(LIBHEIMDAL): $(BINDIR)\heimdal.dll
|