HomeSort by: relevance | last modified time | path
    Searched refs:dll (Results 1 - 25 of 273) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/gpl2/gettext/dist/gettext-runtime/intl-csharp/
Makefile.am 30 all-local: all-dll all-doc
31 install-data-local: install-dll install-doc
32 installdirs-local: installdirs-dll installdirs-doc
33 uninstall-local: uninstall-dll uninstall-doc
38 all-dll: all-dll-@BUILDCSHARP@
39 all-dll-no:
40 all-dll-yes: GNU.Gettext.dll
42 GNU.Gettext.dll: intl.c
    [all...]
  /src/external/bsd/zstd/dist/lib/dll/example/
Makefile 14 DLLDIR := ../dll
32 .PHONY: default fullbench-dll fullbench-lib
37 all: fullbench-dll fullbench-lib
43 fullbench-dll: fullbench.c datagen.c
44 $(CC) $(FLAGS) $^ -o $@$(EXT) -DZSTD_DLL_IMPORT=1 $(DLLDIR)/libzstd.dll
47 @$(RM) fullbench-dll$(EXT) fullbench-lib$(EXT) \
  /src/external/gpl3/gdb/dist/gdbserver/
dll.cc 18 #include "dll.h"
25 /* Record a newly loaded DLL at BASE_ADDR for the current process. */
33 /* Record a newly loaded DLL at BASE_ADDR for PROC. */
43 /* Record that the DLL with NAME and BASE_ADDR has been unloaded
52 /* Record that the DLL with NAME and BASE_ADDR has been unloaded
59 auto pred = [&] (const dll_info &dll)
62 && base_addr == dll.base_addr)
65 if (name != NULL && dll.name == name)
76 a corresponding loaded_dll. In that case, the dll cannot be found
82 unloading of unnamed dll. *
    [all...]
  /src/crypto/external/bsd/heimdal/dist/packages/windows/assembly/
NTMakefile 59 $(ASMKRBDIR)\heimdal.dll \
60 $(ASMKRBDIR)\com_err.dll \
61 $(ASMKRBDIR)\heimntlm.dll \
62 $(ASMKRBDIR)\gssapi.dll \
63 $(ASMKRBDIR)\libhdb.dll \
64 $(ASMKRBDIR)\libkadm5srv.dll \
121 {$(BINDIR)}.dll{$(ASMKRBDIR)}.dll:
184 .SUFFIXES: .dll .pdb
  /src/crypto/external/apache2/openssl/dist/demos/http3/
build.info 10 GENERATE[libnghttp3.so libnghttp3.a libnghttp3.dylib libnghttp3.lib libnghttp3.dll]=gen_nghttp3.pl
11 DEPEND[ossl-nghttp3-demo.o]=libnghttp3.so libnghttp3.a libnghttp3.dylib libnghttp3.lib libnghttp3.dll
12 DEPEND[ossl-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
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
atexit_thread.cc 64 HMODULE dll; member in struct:__anon17202::elt
82 /* Decrement DLL count */
83 if (e->dll)
84 FreeLibrary (e->dll);
159 /* Store the DLL address for a later call to FreeLibrary in new_elt and
160 increment DLL load count. This blocks the unloading of the DLL
164 (LPCWSTR) dtor, &new_elt->dll);
  /src/external/gpl3/gdb.old/dist/gdbserver/
dll.cc 18 #include "dll.h"
25 /* Record a newly loaded DLL at BASE_ADDR for the current process. */
33 /* Record a newly loaded DLL at BASE_ADDR for PROC. */
43 /* Record that the DLL with NAME and BASE_ADDR has been unloaded
52 /* Record that the DLL with NAME and BASE_ADDR has been unloaded
59 auto pred = [&] (const dll_info &dll)
62 && base_addr == dll.base_addr)
65 if (name != NULL && dll.name == name)
76 a corresponding loaded_dll. In that case, the dll cannot be found
82 unloading of unnamed dll. *
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
coff-pe-read.c 119 DLL_NAME is the internal name of the DLL file,
135 of the dll name, e.g. KERNEL32!AddAtomA. This matches the style
149 " for entry \"%s\" in dll \"%s\"\n"),
161 " in dll \"%s\"\n"), sym_name, dll_name);
167 FORWARD_DLL_NAME is the name of the DLL in which the target symbol resides,
168 FORWARD_FUNC_NAME is the name of the target symbol in that DLL,
170 DLL_NAME is the internal name of the DLL file,
203 " dll \"%s\", forward of \"%s\" in dll \"%s\"\n"),
211 " \"%s\" in dll \"%s\", pointing to \"%s\"\n")
310 bfd *dll = objfile->obfd.get (); local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
coff-pe-read.c 119 DLL_NAME is the internal name of the DLL file,
135 of the dll name, e.g. KERNEL32!AddAtomA. This matches the style
149 " for entry \"%s\" in dll \"%s\"\n"),
161 " in dll \"%s\"\n"), sym_name, dll_name);
167 FORWARD_DLL_NAME is the name of the DLL in which the target symbol resides,
168 FORWARD_FUNC_NAME is the name of the target symbol in that DLL,
170 DLL_NAME is the internal name of the DLL file,
203 " dll \"%s\", forward of \"%s\" in dll \"%s\"\n"),
211 " \"%s\" in dll \"%s\", pointing to \"%s\"\n")
310 bfd *dll = objfile->obfd.get (); local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/dso/
dso_win32.c 447 /* If transform != 0, then we convert to %s.dll, else just dupe filename */
451 len += strlen(".dll");
457 BIO_snprintf(translated, len, "%s%s", filename, transform ? ".dll" : "");
474 #define DLLNAME "TOOLHELP.DLL"
479 #define DLLNAME "KERNEL32.DLL"
488 HMODULE dll; local
505 dll = LoadLibrary(TEXT(DLLNAME));
506 if (dll == NULL) {
512 GetProcAddress(dll, "CreateToolhelp32Snapshot");
514 FreeLibrary(dll);
592 HMODULE dll; local
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/heimdal/
NTMakefile 57 dlllflags=$(dlllflags) /DELAYLOAD:bcrypt.dll
75 DLL=$(BINDIR)\heimdal.dll
77 $(LIBHEIMDAL): $(BINDIR)\heimdal.dll
79 $(DLL): $(DLLDEPS) $(DEF) $(RES)
81 -def:$(DEF) -out:$(DLL) \
  /src/crypto/external/bsd/openssl/dist/crypto/dso/
dso_win32.c 460 /* If transform != 0, then we convert to %s.dll, else just dupe filename */
464 len += strlen(".dll");
470 BIO_snprintf(translated, len, "%s%s", filename, transform ? ".dll" : "");
487 # define DLLNAME "TOOLHELP.DLL"
492 # define DLLNAME "KERNEL32.DLL"
501 HMODULE dll; local
518 dll = LoadLibrary(TEXT(DLLNAME));
519 if (dll == NULL) {
525 GetProcAddress(dll, "CreateToolhelp32Snapshot");
527 FreeLibrary(dll);
606 HMODULE dll; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/dso/
dso_win32.c 463 /* We will convert this to "%s.dll" */
473 sprintf(translated, "%s.dll", filename);
492 # define DLLNAME "TOOLHELP.DLL"
497 # define DLLNAME "KERNEL32.DLL"
506 HMODULE dll; local
523 dll = LoadLibrary(TEXT(DLLNAME));
524 if (dll == NULL) {
530 GetProcAddress(dll, "CreateToolhelp32Snapshot");
532 FreeLibrary(dll);
539 GetProcAddress(dll, "CloseToolhelp32Snapshot")
611 HMODULE dll; local
    [all...]
  /src/sys/arch/bebox/stand/boot/
ns16550.h 51 #define dll rbr macro
ns16550.c 51 com_port->dll = speed;
  /src/sys/arch/prep/stand/boot/
ns16550.h 50 #define dll rbr macro
ns16550.c 51 com_port->dll = speed;
  /src/sys/arch/rs6000/stand/boot/
ns16550.h 50 #define dll rbr macro
ns16550.c 51 com_port->dll = speed;
  /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
atexit_thread.cc 82 HMODULE dll;
100 /* Decrement DLL count */
101 if (e->dll)
102 FreeLibrary (e->dll);
198 /* Store the DLL address for a later call to FreeLibrary in new_elt and
199 increment DLL load count. This blocks the unloading of the DLL
203 (LPCWSTR) dtor, &new_elt->dll);
  /src/crypto/external/bsd/heimdal/dist/lib/com_err/
NTMakefile 42 COMERRDLL=$(BINDIR)\com_err.dll
85 -$(RM) $(COMERRDLL:.dll=.*)
  /src/crypto/external/bsd/heimdal/dist/lib/ntlm/
NTMakefile 55 $(LIBHEIMNTLM): $(BINDIR)\heimntlm.dll
57 $(BINDIR)\heimntlm.dll: $(OBJ)\ntlm.obj $(OBJ)\ntlm_err.obj $(LIBHEIMDAL) $(LIBROKEN) $(LIBCOMERR) $(RES)
  /src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
DynamicLibrary.inc 101 // | Handles | DbgHelp.dll | CreateSnapshot | EnumProcessModulesEx
107 // * Not including the load time of Dbghelp.dll (~.005 sec)
137 // Doing that here is causing real problems for the JIT where msvc.dll
138 // and ucrt.dll can define the same symbols. The runtime linker will choose
139 // symbols from ucrt.dll first, but iterating NOT in reverse here would
140 // mean that the msvc.dll versions would be returned.
159 // These functions are not exported by the DLL, but will still be needed
  /src/external/gpl3/gdb/dist/sim/bfin/
dv-bfin_uart.c 46 /* These are aliased to DLL. */
50 bu16 BFIN_MMR_16(dll);
61 #define mmr_base() offsetof(struct bfin_uart, dll)
155 case mmr_offset(dll):
157 uart->dll = value;
277 case mmr_offset(dll):
279 dv_store_2 (dest, uart->dll);
444 uart->dll = 0x0001;
  /src/external/gpl3/gdb.old/dist/sim/bfin/
dv-bfin_uart.c 46 /* These are aliased to DLL. */
50 bu16 BFIN_MMR_16(dll);
61 #define mmr_base() offsetof(struct bfin_uart, dll)
155 case mmr_offset(dll):
157 uart->dll = value;
277 case mmr_offset(dll):
279 dv_store_2 (dest, uart->dll);
444 uart->dll = 0x0001;

Completed in 46 milliseconds

1 2 3 4 5 6 7 8 91011