Home
last modified time | relevance | path

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

12345678910>>...15

/freebsd/crypto/openssl/crypto/store/
H A Dstore_meth.c19 int OSSL_STORE_LOADER_up_ref(OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_up_ref() argument
23 if (loader->prov != NULL) in OSSL_STORE_LOADER_up_ref()
24 CRYPTO_UP_REF(&loader->refcnt, &ref); in OSSL_STORE_LOADER_up_ref()
28 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_free() argument
30 if (loader != NULL && loader->prov != NULL) { in OSSL_STORE_LOADER_free()
33 CRYPTO_DOWN_REF(&loader->refcnt, &i); in OSSL_STORE_LOADER_free()
36 ossl_provider_free(loader->prov); in OSSL_STORE_LOADER_free()
37 CRYPTO_FREE_REF(&loader->refcnt); in OSSL_STORE_LOADER_free()
39 OPENSSL_free(loader); in OSSL_STORE_LOADER_free()
48 OSSL_STORE_LOADER *loader; in new_loader() local
[all …]
H A Dstore_register.c54 const ENGINE *OSSL_STORE_LOADER_get0_engine(const OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_get0_engine() argument
56 return loader->engine; in OSSL_STORE_LOADER_get0_engine()
59 const char *OSSL_STORE_LOADER_get0_scheme(const OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_get0_scheme() argument
61 return loader->scheme; in OSSL_STORE_LOADER_get0_scheme()
64 int OSSL_STORE_LOADER_set_open(OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_open() argument
67 loader->open = open_function; in OSSL_STORE_LOADER_set_open()
72 (OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_open_ex() argument
75 loader->open_ex = open_ex_function; in OSSL_STORE_LOADER_set_open_ex()
79 int OSSL_STORE_LOADER_set_attach(OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_attach() argument
82 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()
70 const OSSL_STORE_LOADER *loader = NULL; in OSSL_STORE_open_ex() local
126 if ((loader = ossl_store_get0_loader_int(scheme)) != NULL) { in OSSL_STORE_open_ex()
129 if (loader->open_ex != NULL) in OSSL_STORE_open_ex()
130 loader_ctx = loader->open_ex(loader, uri, libctx, propq, in OSSL_STORE_open_ex()
133 loader_ctx = loader->open(loader, uri, ui_method, ui_data); in OSSL_STORE_open_ex()
138 if (loader == NULL in OSSL_STORE_open_ex()
164 loader = fetched_loader; in OSSL_STORE_open_ex()
[all …]
/freebsd/stand/lua/
H A Dcore.lua50 local boot_single = loader.getenv("boot_single") or "no"
51 local boot_verbose = loader.getenv("boot_verbose") or "no"
68 local lua_path = loader.lua_path
115 loader.setenv("boot_verbose", "YES")
117 loader.unsetenv("boot_verbose")
128 loader.setenv("boot_single", "YES")
130 loader.unsetenv("boot_single")
140 if loader.getenv("acpi.rsdp") ~= nil then
153 local c = loader.getenv("hint.acpi.0.disabled")
164 loader.setenv("hint.acpi.0.disabled", "0")
[all …]
H A Dmenu.lua56 loader.setenv("vfs.root.mountfrom", env)
57 loader.setenv("currdev", env .. ":")
59 if loader.getenv("kernelname") ~= nil then
60 loader.perform("unload")
65 return loader.getenv("loader_menu_multi_user_prompt") or "Multi user"
324 loader.setenv("autoboot_delay", "NO")
332 loader.perform("reboot")
358 if loader.getenv("kernelname") ~= nil then
359 loader.perform("unload")
411 "oad " .. loader.getenv('chain_disk')
[all …]
H A Dconfig.lua92 local current_value = loader.getenv(k)
100 loader.setenv(k, restore_value)
102 loader.unsetenv(k)
121 return loader.getenv(key)
133 env_restore[key] = {value = loader.getenv(key)}
136 return loader.setenv(key, value)
199 local repl = loader.getenv(name) or ""
366 local blacklist_str = loader.getenv('module_blacklist')
391 loader.printc(module_name .. "...")
413 if loader.command_error then
[all …]
H A Ddrawer.lua59 gfx.term_drawrect = loader.term_drawrect
60 gfx.term_putimage = loader.term_putimage
206 if string.lower(loader.getenv("loader_menu") or "") == "none" then
258 return (loader.getenv("loader_gfx") or "yes"):lower() ~= "no"
270 local framestyle = loader.getenv("loader_menu_frame") or defaultframe()
322 local menu_header = loader.getenv("loader_menu_title") or
324 local menu_header_align = loader.getenv("loader_menu_title_align")
327 if string.lower(loader.getenv("loader_menu") or "") == "none" then
359 local x = tonumber(loader.getenv("loader_brand_x")) or
361 local y = tonumber(loader.getenv("loader_brand_y")) or
[all …]
H A Dpassword.lua114 loader.delay(3*1000*1000)
124 local boot_pwd = loader.getenv("bootlock_password")
127 local geli_prompt = loader.getenv("geom_eli_passphrase_prompt")
130 loader.setenv("kern.geom.eli.passphrase", passphrase)
133 local pwd = loader.getenv("password")
136 loader.setenv("autoboot_delay", "NO")
/freebsd/crypto/openssl/include/openssl/
H A Dstore.h267 int OSSL_STORE_LOADER_up_ref(OSSL_STORE_LOADER *loader);
268 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader);
270 loader);
271 const char *OSSL_STORE_LOADER_get0_properties(const OSSL_STORE_LOADER *loader);
272 const char *OSSL_STORE_LOADER_get0_description(const OSSL_STORE_LOADER *loader);
273 int OSSL_STORE_LOADER_is_a(const OSSL_STORE_LOADER *loader,
276 void (*fn)(OSSL_STORE_LOADER *loader,
279 int OSSL_STORE_LOADER_names_do_all(const OSSL_STORE_LOADER *loader,
296 (const OSSL_STORE_LOADER *loader, const char *uri,
299 (const OSSL_STORE_LOADER *loader,
[all …]
/freebsd/release/tools/
H A Dec2.conf49 echo 'autoboot_delay="-1"' >> ${DESTDIR}/boot/loader.conf
50 echo 'beastie_disable="YES"' >> ${DESTDIR}/boot/loader.conf
54 echo 'entropy_efi_seed_size="64"' >> ${DESTDIR}/boot/loader.conf
60 echo 'hint.atkbd.0.disabled=1' >> ${DESTDIR}/boot/loader.conf
61 echo 'hint.atkbdc.0.disabled=1' >> ${DESTDIR}/boot/loader.conf
64 echo 'hint.fd.0.disabled=1' >> ${DESTDIR}/boot/loader.conf
65 echo 'hint.fdc.0.disabled=1' >> ${DESTDIR}/boot/loader.conf
68 echo 'hint.ppc.0.disabled=1' >> ${DESTDIR}/boot/loader.conf
73 echo 'boot_multicons="YES"' >> ${DESTDIR}/boot/loader.conf
82 echo 'debug.acpi.quirks="56"' >> ${DESTDIR}/boot/loader.conf
[all …]
H A Dopenstack.conf33 echo 'autoboot_delay="-1"' >> ${DESTDIR}/boot/loader.conf
34 echo 'beastie_disable="YES"' >> ${DESTDIR}/boot/loader.conf
35 echo 'boot_multicons="YES"' >> ${DESTDIR}/boot/loader.conf
36 echo 'console="comconsole vidconsole"' >> ${DESTDIR}/boot/loader.conf
37 echo 'comconsole_speed="115200"' >> ${DESTDIR}/boot/loader.conf
H A Darm.subr136 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
138 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
140 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
149 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
151 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
153 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
162 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
164 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
169 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
171 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
[all …]
/freebsd/crypto/openssl/apps/lib/
H A Dengine_loader.c65 static OSSL_STORE_LOADER_CTX *engine_open(const OSSL_STORE_LOADER *loader, in engine_open() argument
168 OSSL_STORE_LOADER *loader = NULL; in setup_engine_loader() local
170 if ((loader = OSSL_STORE_LOADER_new(NULL, ENGINE_SCHEME)) == NULL in setup_engine_loader()
171 || !OSSL_STORE_LOADER_set_open(loader, engine_open) in setup_engine_loader()
172 || !OSSL_STORE_LOADER_set_expect(loader, engine_expect) in setup_engine_loader()
173 || !OSSL_STORE_LOADER_set_load(loader, engine_load) in setup_engine_loader()
174 || !OSSL_STORE_LOADER_set_eof(loader, engine_eof) in setup_engine_loader()
175 || !OSSL_STORE_LOADER_set_error(loader, engine_error) in setup_engine_loader()
176 || !OSSL_STORE_LOADER_set_close(loader, engine_close) in setup_engine_loader()
177 || !OSSL_STORE_register_loader(loader)) { in setup_engine_loader()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/intel/axm/
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 …]
/freebsd/usr.sbin/bhyve/
H A Dqemu_loader.c76 qemu_loader_alloc(struct qemu_loader *const loader, const uint8_t *name, in qemu_loader_alloc() argument
101 STAILQ_INSERT_HEAD(&loader->list, element, chain); in qemu_loader_alloc()
107 qemu_loader_add_checksum(struct qemu_loader *const loader, const uint8_t *name, in qemu_loader_add_checksum() argument
127 STAILQ_INSERT_TAIL(&loader->list, element, chain); in qemu_loader_add_checksum()
133 qemu_loader_add_pointer(struct qemu_loader *const loader, in qemu_loader_add_pointer() argument
157 STAILQ_INSERT_TAIL(&loader->list, element, chain); in qemu_loader_add_pointer()
166 struct qemu_loader *loader; in qemu_loader_create() local
172 loader = calloc(1, sizeof(struct qemu_loader)); in qemu_loader_create()
173 if (loader == NULL) { in qemu_loader_create()
178 strncpy(loader->fwcfg_name, fwcfg_name, QEMU_FWCFG_MAX_NAME); in qemu_loader_create()
[all …]
H A Dqemu_loader.h32 int qemu_loader_alloc(struct qemu_loader *loader, const uint8_t *name,
46 int qemu_loader_add_checksum(struct qemu_loader *loader, const uint8_t *name,
59 int qemu_loader_add_pointer(struct qemu_loader *loader,
77 int qemu_loader_finish(struct qemu_loader *loader);
/freebsd/crypto/openssl/doc/man3/
H A DOSSL_STORE_LOADER.pod39 int OSSL_STORE_LOADER_up_ref(OSSL_STORE_LOADER *loader);
40 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader);
42 loader);
43 const char *OSSL_STORE_LOADER_get0_properties(const OSSL_STORE_LOADER *loader);
44 const char *OSSL_STORE_LOADER_get0_description(const OSSL_STORE_LOADER *loader);
45 int OSSL_STORE_LOADER_is_a(const OSSL_STORE_LOADER *loader,
48 void (*user_fn)(OSSL_STORE_LOADER *loader,
51 int OSSL_STORE_LOADER_names_do_all(const OSSL_STORE_LOADER *loader,
65 /* struct ossl_store_loader_ctx_st is defined differently by each loader */
78 (const OSSL_STORE_LOADER *loader, BIO *bio,
[all …]
/freebsd/share/examples/bootforth/
H A DREADME6 automatically loaded by /boot/loader. You must choose between boot.4th or
7 loader.rc, though. Copy one or the other, but not both. Also, menu.4th is
8 only used by boot.4th, and menuconf.4th is only used by loader.rc, so you
13 boot.4th example of file which is always loaded by /boot/loader, if
15 loader.rc example of file which is always loader by /boot/loader, if
28 If you use loader.rc/menuconf.4th, be sure to create /boot/stable.conf and
29 /boot/current.conf, like described in loader.conf(5), with appropriate
H A Dloader.rc1 \ Example of the file which is automatically loaded by /boot/loader
8 cr .( - loader.4th...)
10 include /boot/loader.4th
25 \ Initialize loader.4th stuff
27 cr cr .( Initializing loader.4th...)
/freebsd/release/arm64/
H A DPINEBOOK.conf29 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
31 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
33 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
35 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
39 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
/freebsd/release/powerpc/
H A Dgenerate-hfs.sh23 # Create and bless a directory for the boot loader
28 # Make the CHRP boot script, which gets loader from the ISO9660 partition
41 boot &device;:,\ppc\loader &device;:0
45 echo 'Loader START' | dd of=loader.tmp cbs=$LOADER_SIZE count=1 conv=block
48 hcopy loader.tmp :loader
53 rm loader.tmp
/freebsd/stand/forth/
H A DMakefile8 loader.4th.8 \
21 FILES+= loader.4th
36 .for f in loader.rc menu.rc
37 .if exists(${BOOTSRC}/${MACHINE:C/amd64/i386/}/loader/${f})
38 FILES+= ${BOOTSRC}/${MACHINE:C/amd64/i386/}/loader/${f}
/freebsd/stand/efi/loader/
H A DMakefile37 CFLAGS+= -I${.CURDIR}/../loader
64 .PATH: ${.CURDIR}/../loader
65 .PATH: ${.CURDIR}/../loader/arch/${__arch}
96 VERSION_FILE?= ${.CURDIR}/../loader/version
97 HELP_FILENAME= loader.help.efi
111 LINKS+= ${BINDIR}/${LOADER}.efi ${BINDIR}/loader.efi
114 LDSCRIPT= ${.CURDIR}/../loader/arch/${__arch}/${__arch}.ldscript
/freebsd/usr.sbin/bsdinstall/scripts/
H A Dconfig44 cat $BSDINSTALL_TMPBOOT/loader.conf.* >> $BSDINSTALL_TMPBOOT/loader.conf
45 rm $BSDINSTALL_TMPBOOT/loader.conf.*
46 df -t zfs $BSDINSTALL_CHROOT > /dev/null && echo "zfs_load=\"YES\"" >> $BSDINSTALL_TMPBOOT/loader.c…
/freebsd/sys/contrib/device-tree/src/arm64/apple/
H A Dt8011-common.dtsi24 reg = <0 0 0 0>; /* To be filled by loader */
26 /* Format properties will be added by loader */
33 reg = <0x8 0 0 0>; /* To be filled by loader */
41 /* To be filled by loader */

12345678910>>...15