Home
last modified time | relevance | path

Searched refs:loader (Results 1 – 25 of 494) sorted by relevance

12345678910>>...20

/netbsd-src/crypto/external/bsd/openssl/dist/crypto/store/
H A Dstore_meth.c18 int OSSL_STORE_LOADER_up_ref(OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_up_ref() argument
22 if (loader->prov != NULL) in OSSL_STORE_LOADER_up_ref()
23 CRYPTO_UP_REF(&loader->refcnt, &ref, loader->lock); in OSSL_STORE_LOADER_up_ref()
27 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_free() argument
29 if (loader != NULL && loader->prov != NULL) { in OSSL_STORE_LOADER_free()
32 CRYPTO_DOWN_REF(&loader->refcnt, &i, loader->lock); in OSSL_STORE_LOADER_free()
35 ossl_provider_free(loader->prov); in OSSL_STORE_LOADER_free()
36 CRYPTO_THREAD_lock_free(loader->lock); in OSSL_STORE_LOADER_free()
38 OPENSSL_free(loader); in OSSL_STORE_LOADER_free()
47 OSSL_STORE_LOADER *loader; in new_loader() local
[all …]
H A Dstore_register.c56 const ENGINE *OSSL_STORE_LOADER_get0_engine(const OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_get0_engine() argument
58 return loader->engine; in OSSL_STORE_LOADER_get0_engine()
61 const char *OSSL_STORE_LOADER_get0_scheme(const OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_get0_scheme() argument
63 return loader->scheme; in OSSL_STORE_LOADER_get0_scheme()
66 int OSSL_STORE_LOADER_set_open(OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_open() argument
69 loader->open = open_function; in OSSL_STORE_LOADER_set_open()
74 (OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_open_ex() argument
77 loader->open_ex = open_ex_function; in OSSL_STORE_LOADER_set_open_ex()
81 int OSSL_STORE_LOADER_set_attach(OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_attach() argument
84 loader->attach = attach_function; in OSSL_STORE_LOADER_set_attach()
[all …]
H A Dstore_lib.c35 static int loader_set_params(OSSL_STORE_LOADER *loader, in loader_set_params() argument
40 if (!loader->p_set_ctx_params(loader_ctx, params)) in loader_set_params()
56 if (!loader->p_set_ctx_params(loader_ctx, propp)) in loader_set_params()
69 const OSSL_STORE_LOADER *loader = NULL; in OSSL_STORE_open_ex() local
117 if ((loader = ossl_store_get0_loader_int(scheme)) != NULL) { in OSSL_STORE_open_ex()
119 if (loader->open_ex != NULL) in OSSL_STORE_open_ex()
120 loader_ctx = loader->open_ex(loader, uri, libctx, propq, in OSSL_STORE_open_ex()
123 loader_ctx = loader->open(loader, uri, ui_method, ui_data); in OSSL_STORE_open_ex()
126 if (loader == NULL in OSSL_STORE_open_ex()
144 loader = fetched_loader; in OSSL_STORE_open_ex()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/store/
H A Dstore_register.c57 const ENGINE *OSSL_STORE_LOADER_get0_engine(const OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_get0_engine() argument
59 return loader->engine; in OSSL_STORE_LOADER_get0_engine()
62 const char *OSSL_STORE_LOADER_get0_scheme(const OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_get0_scheme() argument
64 return loader->scheme; in OSSL_STORE_LOADER_get0_scheme()
67 int OSSL_STORE_LOADER_set_open(OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_open() argument
70 loader->open = open_function; in OSSL_STORE_LOADER_set_open()
74 int OSSL_STORE_LOADER_set_ctrl(OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_ctrl() argument
77 loader->ctrl = ctrl_function; in OSSL_STORE_LOADER_set_ctrl()
81 int OSSL_STORE_LOADER_set_expect(OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_expect() argument
84 loader->expect = expect_function; in OSSL_STORE_LOADER_set_expect()
[all …]
H A Dstore_lib.c25 const OSSL_STORE_LOADER *loader; member
42 const OSSL_STORE_LOADER *loader = NULL; in OSSL_STORE_open() local
77 if ((loader = ossl_store_get0_loader_int(schemes[i])) != NULL) in OSSL_STORE_open()
78 loader_ctx = loader->open(loader, uri, ui_method, ui_data); in OSSL_STORE_open()
88 ctx->loader = loader; in OSSL_STORE_open()
112 (void)loader->close(loader_ctx); in OSSL_STORE_open()
131 if (ctx->loader->ctrl != NULL) in OSSL_STORE_vctrl()
132 return ctx->loader->ctrl(ctx->loader_ctx, cmd, args); in OSSL_STORE_vctrl()
145 if (ctx->loader->expect != NULL) in OSSL_STORE_expect()
146 return ctx->loader->expect(ctx->loader_ctx, expected_type); in OSSL_STORE_expect()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/
H A Dstore.h259 int OSSL_STORE_LOADER_up_ref(OSSL_STORE_LOADER *loader);
260 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader);
262 loader);
263 const char *OSSL_STORE_LOADER_get0_properties(const OSSL_STORE_LOADER *loader);
264 const char *OSSL_STORE_LOADER_get0_description(const OSSL_STORE_LOADER *loader);
265 int OSSL_STORE_LOADER_is_a(const OSSL_STORE_LOADER *loader,
268 void (*fn)(OSSL_STORE_LOADER *loader,
271 int OSSL_STORE_LOADER_names_do_all(const OSSL_STORE_LOADER *loader,
288 (const OSSL_STORE_LOADER *loader, const char *uri,
291 (const OSSL_STORE_LOADER *loader,
[all …]
/netbsd-src/sys/arch/ia64/stand/ia64/efi/
H A DMakefile7 PROGS= loader.sym loader.efi
9 MAN.loader.sym= # no man
10 MAN.loader.efi= # no man
12 SRCS.loader.efi= # no SRCS
26 SRCS.loader.sym:= start.S conf.c efimd.c main.c ${SRCS}
34 loader.sym: ${LDSCRIPT}
40 loader.efi: loader.sym
41 if [ `${OBJDUMP} -t loader.sym | fgrep '*UND*' | wc -l` != 0 ]; then \
42 ${OBJDUMP} -t loader.sym | fgrep '*UND*'; \
47 --target=efi-app-${MACHINE_ARCH} loader.sym ${.TARGET}
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/apps/lib/
H A Dengine_loader.c64 static OSSL_STORE_LOADER_CTX *engine_open(const OSSL_STORE_LOADER *loader, in engine_open() argument
169 OSSL_STORE_LOADER *loader = NULL; in setup_engine_loader() local
171 if ((loader = OSSL_STORE_LOADER_new(NULL, ENGINE_SCHEME)) == NULL in setup_engine_loader()
172 || !OSSL_STORE_LOADER_set_open(loader, engine_open) in setup_engine_loader()
173 || !OSSL_STORE_LOADER_set_expect(loader, engine_expect) in setup_engine_loader()
174 || !OSSL_STORE_LOADER_set_load(loader, engine_load) in setup_engine_loader()
175 || !OSSL_STORE_LOADER_set_eof(loader, engine_eof) in setup_engine_loader()
176 || !OSSL_STORE_LOADER_set_error(loader, engine_error) in setup_engine_loader()
177 || !OSSL_STORE_LOADER_set_close(loader, engine_close) in setup_engine_loader()
178 || !OSSL_STORE_register_loader(loader)) { in setup_engine_loader()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Dstore.h214 const ENGINE *OSSL_STORE_LOADER_get0_engine(const OSSL_STORE_LOADER *loader);
215 const char *OSSL_STORE_LOADER_get0_scheme(const OSSL_STORE_LOADER *loader);
219 *loader,
223 int OSSL_STORE_LOADER_set_open(OSSL_STORE_LOADER *loader,
227 int OSSL_STORE_LOADER_set_ctrl(OSSL_STORE_LOADER *loader,
230 int OSSL_STORE_LOADER_set_expect(OSSL_STORE_LOADER *loader,
234 int OSSL_STORE_LOADER_set_find(OSSL_STORE_LOADER *loader,
239 int OSSL_STORE_LOADER_set_load(OSSL_STORE_LOADER *loader,
242 int OSSL_STORE_LOADER_set_eof(OSSL_STORE_LOADER *loader,
245 int OSSL_STORE_LOADER_set_error(OSSL_STORE_LOADER *loader,
[all …]
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Daxm5516-cpus.dtsi77 cpu-release-addr = <0>; // Fixed by the boot loader
85 cpu-release-addr = <0>; // Fixed by the boot loader
93 cpu-release-addr = <0>; // Fixed by the boot loader
101 cpu-release-addr = <0>; // Fixed by the boot loader
109 cpu-release-addr = <0>; // Fixed by the boot loader
117 cpu-release-addr = <0>; // Fixed by the boot loader
125 cpu-release-addr = <0>; // Fixed by the boot loader
133 cpu-release-addr = <0>; // Fixed by the boot loader
141 cpu-release-addr = <0>; // Fixed by the boot loader
149 cpu-release-addr = <0>; // Fixed by the boot loader
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/unit/
H A D__init__.py15 def load_tests(loader, suite, _): argument
16 suite.addTests(loader.loadTestsFromModule(test_libear))
17 suite.addTests(loader.loadTestsFromModule(test_compilation))
18 suite.addTests(loader.loadTestsFromModule(test_clang))
19 suite.addTests(loader.loadTestsFromModule(test_report))
20 suite.addTests(loader.loadTestsFromModule(test_analyze))
21 suite.addTests(loader.loadTestsFromModule(test_intercept))
22 suite.addTests(loader.loadTestsFromModule(test_shell))
/netbsd-src/external/gpl3/gdb/dist/include/mach-o/
H A DChangeLog-11153 * loader.h (bfd_mach_o_header_flags): Add
11 * loader.h (bfd_mach_o_cpu_subtype): Add arm64 literals.
27 * loader.h: Add macros for rebase, bind and export constants.
31 * loader.h (BFD_MACH_O_CPU_ARCH_MASK, BFD_MACH_O_CPU_ARCH_ABI64)
46 * loader.h (bfd_mach_o_cpu_type): Add BFD_MACH_O_CPU_TYPE_ARM64.
62 * loader.h (bfd_mach_o_load_command_type): Add
84 * loader.h (BFD_MACH_O_INDIRECT_SYM_LOCAL): New.
93 * loader.h: Update copyright year.
108 * loader.h (bfd_mach_o_load_command_type): Add
116 * loader.h: Reorder declarations.
[all …]
/netbsd-src/external/gpl3/binutils/dist/include/mach-o/
H A DChangeLog-11153 * loader.h (bfd_mach_o_header_flags): Add
11 * loader.h (bfd_mach_o_cpu_subtype): Add arm64 literals.
27 * loader.h: Add macros for rebase, bind and export constants.
31 * loader.h (BFD_MACH_O_CPU_ARCH_MASK, BFD_MACH_O_CPU_ARCH_ABI64)
46 * loader.h (bfd_mach_o_cpu_type): Add BFD_MACH_O_CPU_TYPE_ARM64.
62 * loader.h (bfd_mach_o_load_command_type): Add
84 * loader.h (BFD_MACH_O_INDIRECT_SYM_LOCAL): New.
93 * loader.h: Update copyright year.
108 * loader.h (bfd_mach_o_load_command_type): Add
116 * loader.h: Reorder declarations.
[all …]
/netbsd-src/external/gpl3/gdb.old/dist/include/mach-o/
H A DChangeLog-11153 * loader.h (bfd_mach_o_header_flags): Add
11 * loader.h (bfd_mach_o_cpu_subtype): Add arm64 literals.
27 * loader.h: Add macros for rebase, bind and export constants.
31 * loader.h (BFD_MACH_O_CPU_ARCH_MASK, BFD_MACH_O_CPU_ARCH_ABI64)
46 * loader.h (bfd_mach_o_cpu_type): Add BFD_MACH_O_CPU_TYPE_ARM64.
62 * loader.h (bfd_mach_o_load_command_type): Add
84 * loader.h (BFD_MACH_O_INDIRECT_SYM_LOCAL): New.
93 * loader.h: Update copyright year.
108 * loader.h (bfd_mach_o_load_command_type): Add
116 * loader.h: Reorder declarations.
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/include/mach-o/
H A DChangeLog-11153 * loader.h (bfd_mach_o_header_flags): Add
11 * loader.h (bfd_mach_o_cpu_subtype): Add arm64 literals.
27 * loader.h: Add macros for rebase, bind and export constants.
31 * loader.h (BFD_MACH_O_CPU_ARCH_MASK, BFD_MACH_O_CPU_ARCH_ABI64)
46 * loader.h (bfd_mach_o_cpu_type): Add BFD_MACH_O_CPU_TYPE_ARM64.
62 * loader.h (bfd_mach_o_load_command_type): Add
84 * loader.h (BFD_MACH_O_INDIRECT_SYM_LOCAL): New.
93 * loader.h: Update copyright year.
108 * loader.h (bfd_mach_o_load_command_type): Add
116 * loader.h: Reorder declarations.
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DOSSL_STORE_LOADER.pod30 /* struct ossl_store_loader_ctx_st is defined differently by each loader */
43 int OSSL_STORE_LOADER_set_expect(OSSL_STORE_LOADER *loader,
47 int OSSL_STORE_LOADER_set_find(OSSL_STORE_LOADER *loader,
65 int OSSL_STORE_register_loader(OSSL_STORE_LOADER *loader);
75 B<OSSL_STORE_LOADER> is the type to hold a loader.
80 B<OSSL_STORE_LOADER_CTX> is a type template, to be defined by each loader
86 are the function pointer types used within a STORE loader.
87 The functions pointed at define the functionality of the given loader.
94 manner possible according to the scheme the loader implements, it also
105 B<cmd> and a B<va_list> B<args> and is used to manipulate loader
[all …]
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/apple/
H A Dt8103.dtsi28 cpu-release-addr = <0 0>; /* To be filled by loader */
36 cpu-release-addr = <0 0>; /* To be filled by loader */
44 cpu-release-addr = <0 0>; /* To be filled by loader */
52 cpu-release-addr = <0 0>; /* To be filled by loader */
60 cpu-release-addr = <0 0>; /* To be filled by loader */
68 cpu-release-addr = <0 0>; /* To be filled by loader */
76 cpu-release-addr = <0 0>; /* To be filled by loader */
84 cpu-release-addr = <0 0>; /* To be filled by loader */
H A Dt8103-j274.dts31 reg = <0 0 0 0>; /* To be filled by loader */
32 /* Format properties will be added by loader */
39 reg = <0x8 0 0x2 0>; /* To be filled by loader */
/netbsd-src/tests/libexec/ld.elf_so/
H A Dt_rtld_r_debug.c101 void *loader; in check_r_debug_return_link_map() local
104 loader = NULL; in check_r_debug_return_link_map()
119 loader = (void *)map->l_addr; in check_r_debug_return_link_map()
123 ATF_CHECK(loader != NULL); in check_r_debug_return_link_map()
128 ATF_CHECK_EQ_MSG(debug->r_ldbase, loader, in check_r_debug_return_link_map()
129 "debug->r_ldbase=%p loader=%p", in check_r_debug_return_link_map()
130 debug->r_ldbase, loader); in check_r_debug_return_link_map()
/netbsd-src/external/mit/xorg/lib/
H A Dlibloader.old.mk6 .PATH: ${X11SRCDIR.Mesa}/src/loader
8 SRCS.loader += \
9 loader.c \
13 .for _f in ${SRCS.loader}
H A Dlibloader.mk6 .PATH: ${X11SRCDIR.Mesa}/src/loader
8 SRCS.loader += \
9 loader.c \
14 .for _f in ${SRCS.loader}
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/functional/cases/
H A D__init__.py11 def load_tests(loader, suite, pattern): argument
13 suite.addTests(loader.loadTestsFromModule(test_from_cdb))
15 suite.addTests(loader.loadTestsFromModule(test_from_cmd))
17 suite.addTests(loader.loadTestsFromModule(test_create_cdb))
19 suite.addTests(loader.loadTestsFromModule(test_exec_anatomy))
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/
H A D__init__.py13 loader = unittest.TestLoader()
15 suite.addTests(loader.loadTestsFromModule(tests.unit))
16 suite.addTests(loader.loadTestsFromModule(tests.functional.cases))
/netbsd-src/distrib/sets/lists/base/
H A Dmd.ia645 # XXX loader.sym probably not necessary
7 ./usr/mdec/loader.efi base-sysutil-bin
8 ./usr/mdec/loader.sym base-sysutil-bin
/netbsd-src/crypto/external/bsd/openssl/dist/test/
H A Dprovfetchtest.c237 OSSL_STORE_LOADER *loader = NULL; in fetch_test() local
265 loader = OSSL_STORE_LOADER_fetch(libctx, "DUMMY", in fetch_test()
267 if (!TEST_ptr(loader)) in fetch_test()
285 OSSL_STORE_LOADER_free(loader); in fetch_test()

12345678910>>...20