Home
last modified time | relevance | path

Searched refs:dll (Results 1 – 25 of 224) sorted by relevance

123456789

/freebsd/contrib/sqlite3/
H A DMakefile.in26 B.dll = @BUILD_DLLEXT@
27 T.dll = @TARGET_DLLEXT@
144 libsqlite3.DLL = $(libsqlite3.DLL.basename)$(T.dll)
165 install-dll-out-implib: $(install-dir.lib) $(libsqlite3.DLL)
170 install-dll-unix-generic: install-dll-out-implib
191 install-dll-msys: install-dll-out-implib $(install-dir.bin)
196 install-dll-mingw: install-dll-msys
197 install-dll-cygwin: install-dll-msys
199 install-dll-darwin: $(install-dir.lib) $(libsqlite3.DLL)
203 rm -f libsqlite3.0$(T.dll) libsqlite3.$(PACKAGE_VERSION)$(T.dll) || exit $$?; \
[all …]
/freebsd/crypto/openssl/crypto/dso/
H A Ddso_win32.c488 HMODULE dll; in win32_pathbyaddr() local
505 dll = LoadLibrary(TEXT(DLLNAME)); in win32_pathbyaddr()
506 if (dll == NULL) { in win32_pathbyaddr()
512 GetProcAddress(dll, "CreateToolhelp32Snapshot"); in win32_pathbyaddr()
514 FreeLibrary(dll); in win32_pathbyaddr()
521 GetProcAddress(dll, "CloseToolhelp32Snapshot"); in win32_pathbyaddr()
525 module_first = (MODULE32)GetProcAddress(dll, "Module32First"); in win32_pathbyaddr()
526 module_next = (MODULE32)GetProcAddress(dll, "Module32Next"); in win32_pathbyaddr()
534 FreeLibrary(dll); in win32_pathbyaddr()
543 FreeLibrary(dll); in win32_pathbyaddr()
[all …]
/freebsd/sys/netinet/libalias/
H A Dalias_mod.c128 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 Dalias_mod.h106 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 DMakefile.os2134 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/crypto/krb5/src/util/verto/
H A Dmodule.c42 module_close(void *dll) in module_close() argument
49 void **dll, void **symb) in module_load() argument
51 if (dll) in module_load()
52 *dll = NULL; in module_load()
H A Dmodule.h53 module_close(void *dll);
84 void **dll, void **symb);
/freebsd/crypto/krb5/src/windows/
H A Dversion.rc61 #define K5_ORIGINAL_NAME "k5sprt64.dll\0"
63 #define K5_ORIGINAL_NAME "k5sprt32.dll\0"
72 #define K5_ORIGINAL_NAME "comerr64.dll\0"
74 #define K5_ORIGINAL_NAME "comerr32.dll\0"
83 #define K5_ORIGINAL_NAME "xpprof64.dll\0"
85 #define K5_ORIGINAL_NAME "xpprof32.dll\0"
94 #define K5_ORIGINAL_NAME "krb5_64.dll\0"
96 #define K5_ORIGINAL_NAME "krb5_32.dll\0"
105 #define K5_ORIGINAL_NAME "gssapi64.dll\0"
107 #define K5_ORIGINAL_NAME "gssapi32.dll\0"
[all …]
/freebsd/crypto/krb5/src/windows/leashdll/
H A DMakefile.in34 WINDLLFLAGS = /nologo /dll /incremental:no /release $(LOPTS)
45 all-windows: $(OUTPRE)$(DLL_NAME).dll
48 $(RM) $(OUTPRE)$(DLL_NAME).dll
50 $(OUTPRE)$(DLL_NAME).dll: $(DEF_FILE) $(OBJS) $(XOBJS)
51 link $(WINDLLFLAGS) -def:$(DEF_FILE) -out:$*.dll \
/freebsd/crypto/krb5/src/windows/kfwlogon/
H A DMakefile.in23 KFWLOGON=$(OUTPRE)kfwlogon.dll
26 LIBRES=$(KFWLOGON:.dll=.res)
34 all-windows: $(OUTPRE)kfwlogon.dll $(OUTPRE)kfwcpcc.exe
45 copy $(OUTPRE)kfwlogon.dll $(DESTDIR)
49 $(RM) $(OUTPRE)*.exe $(OUTPRE)*.dll $(OUTPRE)*.res
/freebsd/crypto/krb5/src/plugins/preauth/spake/
H A DMakefile.in55 all-windows: $(OUTPRE)$(SPAKELIB).dll
57 $(RM) $(OUTPRE)$(SPAKELIB).dll
59 $(OUTPRE)$(SPAKELIB).dll: spake.def $(OBJS)
60 link /dll $(LOPTS) -def:spake.def -out:$*.dll $(OBJS) $(WINLIBS)
/freebsd/crypto/krb5/src/plugins/preauth/pkinit/
H A DMakefile.in67 all-windows: $(OUTPRE)$(PKINITLIB).dll
69 $(RM) $(OUTPRE)$(PKINITLIB).dll
71 $(OUTPRE)$(PKINITLIB).dll: pkinit.def $(OBJS)
72 link /dll $(LOPTS) -def:pkinit.def -out:$*.dll $(OBJS) $(WINLIBS)
/freebsd/contrib/ldns/
H A Dmakewin.sh217 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/crypto/openssl/demos/http3/
H A Dbuild.info10 GENERATE[libnghttp3.so libnghttp3.a libnghttp3.dylib libnghttp3.lib libnghttp3.dll]=gen_nghttp3.pl
11 …PEND[ossl-nghttp3-demo.o]=libnghttp3.so libnghttp3.a libnghttp3.dylib libnghttp3.lib libnghttp3.dll
12 …sl-nghttp3-demo-server.o]=libnghttp3.so libnghttp3.a libnghttp3.dylib libnghttp3.lib libnghttp3.dll
13 DEPEND[ossl-nghttp3.o]=libnghttp3.so libnghttp3.a libnghttp3.dylib libnghttp3.lib libnghttp3.dll
/freebsd/sys/contrib/zstd/lib/
H A DREADME.md168 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 DMakefile131 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 Dpackage.gsl53 <!-- 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/sqlite3/tea/
H A DMakefile.in52 tx.dll = $(tx.dll$(TCL_MAJOR_VERSION))
218 CC.dll = \
227 $(tx.dll): $(tx.src) config.log
232 $(CC.dll)
234 all: $(tx.dll)
248 test-prepre: $(tx.dll)
326 install-prepre: $(tx.dll)
342 $(INSTALL) $(tx.dll) "$(DESTDIR)$(TCLLIBDIR)"
/freebsd/contrib/libfido2/regress/
H A DCMakeLists.txt18 "${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 Duart_emul.c95 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 DDynamicLibrary.inc98 // | 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/crypto/krb5/src/windows/installer/wix/
H A DMakefile36 CUSTOMDLL=custom\custom.dll
60 -loc lang\strings_$(LANG).wxl -ext WixUtilExtension.dll
/freebsd/contrib/wpa/src/utils/
H A Dpcsc_funcs.c130 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 Dconfig.mk.dist73 # 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 Dresource.rc6 //specify the version numbers for the dll's
51 VALUE "OriginalFilename", "libsodium.dll"

123456789