Searched refs:dll (Results 1 - 25 of 74) sorted by relevance

123

/freebsd-10.0-release/contrib/gdb/gdb/
H A Dcoff-pe-read.c118 of the dll name, e.g. KERNEL32!AddAtomA. This matches the style
156 /* Low-level support functions, direct from the ld module pe-dll.c. */
188 pe_implied_import_dll in pe-dll.c. */
193 bfd *dll = objfile->obfd;
223 pe_header_offset = pe_get32 (dll, 0x3c);
225 num_entries = pe_get32 (dll, opthdr_ofs + 92);
232 export_rva = pe_get32 (dll, opthdr_ofs + 96);
233 export_size = pe_get32 (dll, opthdr_ofs + 100);
234 nsections = pe_get16 (dll, pe_header_offset + 4 + 2);
236 pe_get16 (dll, pe_header_offse
189 bfd *dll = objfile->obfd; local
[all...]
/freebsd-10.0-release/sys/netinet/libalias/
H A Dalias_mod.h98 struct dll { struct
106 SLIST_ENTRY(dll) next;
120 /* Functions used with dll module. */
124 int attach_dll(struct dll *);
126 struct dll *walk_dll_chain(void);
H A Dalias_mod.c59 SLIST_HEAD(dll_chain, dll) dll_chain = SLIST_HEAD_INITIALIZER(dll_chain);
251 attach_dll(struct dll *p)
253 struct dll *b;
266 struct dll *b, *b_tmp;
273 SLIST_REMOVE(&dll_chain, b, dll, next);
280 struct dll *
283 struct dll *t;
/freebsd-10.0-release/contrib/ncurses/
H A DMakefile.os247 # No rule to make target `lib/ncurses4.dll'
72 # them --_nc_panel_hook, _nc_ada*, etc-- are needed outside ncurses.dll.
133 DLLS = $(addsuffix .dll, $(addprefix ./lib/, $(DLL_ROOTS)))
150 ./lib/%$(DLL_TAG).dll : ./lib/%.a
171 echo installing ./lib/$$i.dll as $(LIBDIR)/$$i.dll; \
172 $(INSTALL_DATA) ./lib/$$i.dll $(LIBDIR)/$$i.dll; done
179 echo uninstalling $(LIBDIR)/$$i.dll; \
180 rm -f $(LIBDIR)/$$i.dll; don
[all...]
/freebsd-10.0-release/crypto/openssl/util/
H A Ddo_ms.sh10 perl util/mk1mf.pl dll VC-WIN16 >ms/w31dll.mak
12 perl util/mk1mf.pl dll VC-WIN32 >ms/ntdll.mak
H A Dmkrc.pl25 if ($extname =~ /dll/i) { $description = "OpenSSL shared library"; }
H A Dcygwin.sh131 strip usr/bin/*.exe usr/bin/*.dll usr/lib/engines/*.so
136 usr/bin/cyg*dll
/freebsd-10.0-release/crypto/heimdal/lib/heimdal/
H A DNTMakefile70 DLL=$(BINDIR)\heimdal.dll
72 $(LIBHEIMDAL): $(BINDIR)\heimdal.dll
/freebsd-10.0-release/contrib/ncurses/misc/
H A Dshlib109 *.dll)
/freebsd-10.0-release/contrib/apr/
H A Dlibapr.mak41 ALL : "$(OUTDIR)\libapr-1.dll" "$(DS_POSTBUILD_DEP)"
118 -@erase "$(OUTDIR)\libapr-1.dll"
168 LINK32_FLAGS=kernel32.lib advapi32.lib ws2_32.lib mswsock.lib ole32.lib shell32.lib rpcrt4.lib /nologo /base:"0x6EEC0000" /subsystem:windows /dll /incremental:no /pdb:"$(OUTDIR)\libapr-1.pdb" /debug /out:"$(OUTDIR)\libapr-1.dll" /implib:"$(OUTDIR)\libapr-1.lib" /MACHINE:X86 /opt:ref
242 "$(OUTDIR)\libapr-1.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
247 TargetPath=.\Release\libapr-1.dll
256 "$(DS_POSTBUILD_DEP)" : "$(OUTDIR)\libapr-1.dll"
257 if exist .\Release\libapr-1.dll.manifest mt.exe -manifest .\Release\libapr-1.dll.manifest -outputresource:.\Release\libapr-1.dll;
[all...]
/freebsd-10.0-release/contrib/binutils/ld/
H A Dpe-dll.c43 #include "pe-dll.h"
49 #include "pep-dll.h"
56 #include "pe-dll.h"
134 noted that dll and symbol name structures are reused across fixup entries
139 in windows9x kernel32.dll, so if you use it, you have two
140 IMAGE_IMPORT_DESCRIPTORS for kernel32.dll). Yet other question is whether
849 filler_file = lang_add_input_file ("dll stuff",
852 filler_file->the_bfd = filler_bfd = bfd_create ("dll stuff", output_bfd);
1297 einfo (_("%XError: %d-bit reloc in dll\n"),
1756 .asciz "my.dll" */
2592 bfd *dll; local
[all...]
H A DMakefile.am426 pe-dll.o \
427 pep-dll.o
431 mri.c ldcref.c pe-dll.c pep-dll.c
435 ldwrite.h mri.h deffile.h pe-dll.h pep-dll.h elf-hints-local.h
2024 pe-dll.o: pe-dll.c sysdep.h config.h $(INCDIR)/fopen-same.h \
2029 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h deffile.h pe-dll.h
2030 pep-dll
[all...]
/freebsd-10.0-release/contrib/wpa/src/utils/
H A Dpcsc_funcs.c120 * dynamically from winscard.dll for now. */
122 static HINSTANCE dll = NULL; /* winscard.dll */ variable
187 if (dll)
190 dll = LoadLibrary("winscard");
191 if (dll == NULL) {
192 wpa_printf(MSG_DEBUG, "WinSCard: Could not load winscard.dll "
199 dll_ ## s = (void *) GetProcAddress(dll, sym); \
220 "winscard.dll", sym);
221 FreeLibrary(dll);
[all...]
/freebsd-10.0-release/usr.sbin/bhyve/
H A Duart_emul.c109 uint8_t dll; /* Baudrate divisor latch LSB */ member in struct:uart_softc
274 sc->dll = divisor;
341 sc->dll = value;
471 reg = sc->dll;
/freebsd-10.0-release/contrib/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc60 // Mingw32 uses msvcrt.dll by default. Don't ignore it.
/freebsd-10.0-release/contrib/binutils/
H A Dconfig.rpath444 shrext=.dll
499 shrext=.dll
/freebsd-10.0-release/contrib/libreadline/support/
H A Dconfig.rpath444 shrext=.dll
499 shrext=.dll
/freebsd-10.0-release/contrib/tcsh/
H A Dconfig.rpath463 shrext=.dll
522 shrext=.dll
/freebsd-10.0-release/contrib/wpa/src/crypto/
H A Dcrypto_cryptoapi.c39 = NULL; /* to be loaded from crypt32.dll */
44 HINSTANCE dll; local
52 dll = LoadLibrary("crypt32");
53 if (dll == NULL) {
60 dll, "CryptImportPublicKeyInfo");
/freebsd-10.0-release/crypto/openssl/
H A DMakefile.org406 rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
579 c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
589 *crypto*) i=libeay32.dll;; \
590 *ssl*) i=ssleay32.dll;; \
H A DMakefile408 rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
581 c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
591 *crypto*) i=libeay32.dll;; \
592 *ssl*) i=ssleay32.dll;; \
H A DMakefile.shared21 # .dll, ...). This one MUST have a value when using this makefile to
270 SHLIB_SUFFIX=.dll; \
277 #for mingw target if def-file is in use dll-name should match library-name
281 SHLIB=cyg$(LIBNAME); SHLIB_SOVER=-$(LIBVERSION); SHLIB_SUFFIX=.dll; \
300 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared $$base -Wl,-s,-Bsymbolic -Wl,--out-implib,lib$(LIBNAME).dll.a $$extras"; \
/freebsd-10.0-release/contrib/openpam/
H A Dcompile105 if $shared && test -f "$dir/$lib.dll.lib"; then
107 lib=$dir/$lib.dll.lib
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dlibcoff-in.h115 int dll; member in struct:pe_tdata
H A DpeXXigen.c744 if (pe_data (abfd)->dll)
1192 char *dll;
1215 dll = (char *) data + dll_name - adj;
1216 fprintf (file, _("\n\tDLL Name: %s\n"), dll);
1510 a list of pointers that either locate a function in this dll, or
1511 forward the call to another dll. Something like:
1995 pe_data (obfd)->dll = pe_data (ibfd)->dll;
1191 char *dll; local

Completed in 188 milliseconds

123