Home
last modified time | relevance | path

Searched +full:load +full:- +full:reserved (Results 1 – 25 of 1271) sorted by relevance

12345678910>>...51

/freebsd/sys/contrib/openzfs/man/man8/
H A Dzfs-load-key.81 .\" SPDX-License-Identifier: CDDL-1.0
10 .\" or https://opensource.org/licenses/CDDL-1.0.
22 .\" Copyright (c) 2009 Sun Microsystems, Inc. All Rights Reserved.
24 .\" Copyright (c) 2011, 2019 by Delphix. All rights reserved.
25 .\" Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
26 .\" Copyright (c) 2014, Joyent, Inc. All rights reserved.
27 .\" Copyright (c) 2014 by Adam Stevko. All rights reserved.
29 .\" Copyright 2019 Richard Laager. All rights reserved.
38 .Nm zfs-load-key
39 .Nd load, unload, or change encryption key of ZFS dataset
[all …]
H A Dzfs-unload-key.81 .\" SPDX-License-Identifier: CDDL-1.0
10 .\" or https://opensource.org/licenses/CDDL-1.0.
22 .\" Copyright (c) 2009 Sun Microsystems, Inc. All Rights Reserved.
24 .\" Copyright (c) 2011, 2019 by Delphix. All rights reserved.
25 .\" Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
26 .\" Copyright (c) 2014, Joyent, Inc. All rights reserved.
27 .\" Copyright (c) 2014 by Adam Stevko. All rights reserved.
29 .\" Copyright 2019 Richard Laager. All rights reserved
[all...]
H A Dzfs-change-key.81 .\" SPDX-License-Identifier: CDDL-1.0
10 .\" or https://opensource.org/licenses/CDDL-1.0.
22 .\" Copyright (c) 2009 Sun Microsystems, Inc. All Rights Reserved.
24 .\" Copyright (c) 2011, 2019 by Delphix. All rights reserved.
25 .\" Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
26 .\" Copyright (c) 2014, Joyent, Inc. All rights reserved.
27 .\" Copyright (c) 2014 by Adam Stevko. All rights reserved.
29 .\" Copyright 2019 Richard Laager. All rights reserved
[all...]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_load-key/
H A Dzfs_load-key.ksh1 #!/bin/ksh -p
2 # SPDX-License-Identifier: CDDL-1.0
19 # Copyright (c) 2017 Datto, Inc. All rights reserved.
23 . $STF_SUITE/tests/functional/cli_root/zfs_load-key/zfs_load-key_common.kshlib
27 # 'zfs load-key' should only load a key for an unloaded encrypted dataset.
30 # 1. Attempt to load the default dataset's key
32 # 3. Attempt to load the default dataset's key
35 # 6. Attempt to load the dataset's key
37 # 8. Attempt to load the dataset's key again
40 # 11. Attempt to load the pool's key
[all …]
H A Dzfs_load-key_noop.ksh1 #!/bin/ksh -p
2 # SPDX-License-Identifier: CDDL-1.0
19 # Copyright (c) 2017 Datto, Inc. All rights reserved.
23 . $STF_SUITE/tests/functional/cli_root/zfs_load-key/zfs_load-key_common.kshlib
27 # 'zfs load-key -n' should load the key for an already loaded dataset.
31 # 2. Attempt to load the dataset's key
33 # 4. Attempt to load the dataset's key with an invalid key
45 log_assert "'zfs load-key -n' should load the key for a loaded dataset"
47 log_must eval "echo $PASSPHRASE | zfs create -o encryption=on" \
48 "-o keyformat=passphrase -o keylocation=prompt $TESTPOOL/$TESTFS1"
[all …]
H A Dzfs_load-key_file.ksh1 #!/bin/ksh -p
2 # SPDX-License-Identifier: CDDL-1.0
19 # Copyright (c) 2017 Datto, Inc. All rights reserved.
23 . $STF_SUITE/tests/functional/cli_root/zfs_load-key/zfs_load-key_common.kshlib
27 # 'zfs load-key' should load a dataset's key from a file.
32 # 3. Attempt to load the dataset's key
46 log_assert "'zfs load-key' should load a key from a file"
49 log_must zfs create -o encryption=on -o keyformat=passphrase \
50 -o keylocation=file:///$TESTPOOL/pkey $TESTPOOL/$TESTFS1
53 log_must zfs unload-key $TESTPOOL/$TESTFS1
[all …]
H A Dzfs_load-key_location.ksh1 #!/bin/ksh -p
2 # SPDX-License-Identifier: CDDL-1.0
19 # Copyright (c) 2017 Datto, Inc. All rights reserved.
23 . $STF_SUITE/tests/functional/cli_root/zfs_load-key/zfs_load-key_common.kshlib
27 # 'zfs load-key -L' should override keylocation with provided value.
34 # 5. Attempt to load the dataset specifying a keylocation of file
38 # 9. Attempt to load the dataset specifying a keylocation of prompt
52 log_assert "'zfs load-key -L' should override keylocation with provided value"
59 log_must zfs create -o encryption=on -o keyformat=passphrase \
60 -o keylocation=file://$key_location $TESTPOOL/$TESTFS1
[all …]
H A Dzfs_load-key_recursive.ksh1 #!/bin/ksh -p
2 # SPDX-License-Identifier: CDDL-1.0
19 # Copyright (c) 2017 Datto, Inc. All rights reserved.
23 . $STF_SUITE/tests/functional/cli_root/zfs_load-key/zfs_load-key_common.kshlib
27 # 'zfs load-key -r' should recursively load keys.
33 # 4. Attempt to load all dataset keys
43 destroy_dataset $TESTPOOL/$TESTFS1 -r
47 log_assert "'zfs load-key -r' should recursively load keys"
50 log_must zfs create -o encryption=on -o keyformat=passphrase \
51 -o keylocation=file:///$TESTPOOL/pkey $TESTPOOL/$TESTFS1
[all …]
H A Dzfs_load-key_all.ksh1 #!/bin/ksh -p
2 # SPDX-License-Identifier: CDDL-1.0
19 # Copyright (c) 2017 Datto, Inc. All rights reserved.
23 . $STF_SUITE/tests/functional/cli_root/zfs_load-key/zfs_load-key_common.kshlib
27 # 'zfs load-key -a' should load keys for all datasets.
32 # 3. Attempt to load all dataset keys
48 log_assert "'zfs load-key -a' should load keys for all datasets"
51 log_must zfs create -o encryption=on -o keyformat=passphrase \
52 -o keylocation=file:///$TESTPOOL/pkey $TESTPOOL/$TESTFS1
54 log_must zfs create -o encryption=on -o keyformat=passphrase \
[all …]
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dfsl,imx8qxp-dc-intc.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/interrupt-controller/fsl,imx8qxp-dc-intc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 The Display Controller has a built-in interrupt controller with the following
18 Each interrupt can be connected as IRQ (maskable) and/or NMI (non-maskable).
19 Alternatively the un-masked trigger signals for all HW events are provided,
26 - Liu Ying <victor.liu@nxp.com>
30 const: fsl,imx8qxp-dc-intc
38 interrupt-controller: true
[all …]
/freebsd/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_getopt.sh4 # All rights reserved.
30 atf_check -e save:stderr -x "$(atf_get_srcdir)/h_getopt" <<EOF
31 load: $1
36 rm -f stderr
41 atf_check -e save:stderr -x "$(atf_get_srcdir)/h_getopt_long" <<EOF
47 rm -f stderr
57 load="c:d"
59 h_getopt "${load}" "foo -c 1 -d foo" "c=1,d|1"
60 h_getopt "${load}" "foo -d foo bar" "d|2"
61 h_getopt "${load}" "foo -c 2 foo bar" "c=2|2"
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dmsm8994-msft-lumia-octagon.dtsi1 // SPDX-License-Identifier: BSD-3-Clause
12 #include <dt-bindings/gpio/gpio.h>
13 #include <dt-bindings/input/gpio-keys.h>
14 #include <dt-bindings/pinctrl/qcom,pmic-gpio.h>
17 * Delete all generic (msm8994.dtsi) reserved
20 /delete-node/ &adsp_mem;
21 /delete-node/ &audio_mem;
22 /delete-node/ &cont_splash_mem;
23 /delete-node/ &mba_mem;
24 /delete-node/ &mpss_mem;
[all …]
H A Dsdm660-xiaomi-lavender.dts1 // SPDX-License-Identifier: GPL-2.0-only
7 /dts-v1/;
12 #include <dt-bindings/input/input.h>
13 #include <dt-bindings/input/gpio-keys.h>
18 chassis-type = "handset";
25 #address-cells = <2>;
26 #size-cells = <2>;
29 stdout-path = "serial0:115200n8";
32 compatible = "simple-framebuffer";
41 vph_pwr: vph-pwr-regulator {
[all …]
H A Dmsm8956-sony-xperia-loire.dtsi1 // SPDX-License-Identifier: BSD-3-Clause
3 * Copyright (c) 2016-2022, AngeloGioacchino Del Regno
16 qcom,msm-id = <266 0x10001>; /* MSM8956 v1.1 */
17 qcom,board-id = <8 0>;
27 stdout-path = "serial0:115200n8";
30 reserved-memory {
31 cont-splash@83000000 {
38 record-size = <0x20000>;
39 console-size = <0x40000>;
40 ftrace-size = <0x20000>;
[all …]
H A Dsm6125-xiaomi-ginkgo.dts1 // SPDX-License-Identifier: BSD-3-Clause
6 /dts-v1/;
8 #include <dt-bindings/arm/qcom,ids.h>
9 #include <dt-bindings/gpio/gpio.h>
10 #include <dt-bindings/input/input.h>
11 #include <dt-bindings/input/gpio-keys.h>
12 #include <dt-bindings/pinctrl/qcom,pmic-gpio.h>
19 chassis-type = "handset";
22 qcom,msm-id = <QCOM_ID_SM6125>;
23 qcom,board-id = <22 0>;
[all …]
/freebsd/sys/contrib/edk2/Include/Guid/
H A DGlobalVariable.h4 Copyright (c) 2006 - 2024, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
27 // only permit the creation of variables with a UEFI Specification-defined
31 // L"Boot####" - A boot load option.
32 // L"Driver####" - A driver load option.
33 // L"SysPrep####" - A System Prep application load option.
34 // L"Key####" - Describes hot key relationship with a Boot#### load option.
80 /// The ordered boot option load list.
95 /// The types of boot options supported by the boot manager. Should be treated as read-only.
100 /// The ordered driver load option list.
[all …]
/freebsd/sbin/kldload/
H A Dkldload.83 .\" All rights reserved.
31 .Nd load a file into the kernel
43 be made to load them all, even if some fail.
54 To load a module from the current directory it must be specified as a full or
62 .Bl -tag -width indent
64 Do not try to load module if already loaded.
75 .Bl -tag -width /boot/kernel -compact
82 .Ex -std
84 To load by module name:
85 .Bd -literal -offset indent
[all …]
/freebsd/sys/contrib/edk2/Include/Protocol/
H A DLoadFile.h2 Load File protocol as defined in the UEFI 2.0 specification.
4 The load file protocol exists to supports the addition of new boot devices,
10 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
11 SPDX-License-Identifier: BSD-2-Clause-Patent
31 /// Backward-compatible with EFI1.1
36 Causes the driver to load a specified file.
39 @param FilePath The device specific path of the file to load.
41 boot manager is attempting to load FilePath as a boot
56 @retval EFI_NO_MEDIA No medium was present to load the file.
60 @retval EFI_ABORTED The file load process was manually cancelled.
[all …]
/freebsd/contrib/kyua/doc/
H A Dresults-file-flag-read.mdoc2 .\" All rights reserved.
33 to automatically load the latest results file from the current test suite.
36 .Bl -tag -width XX
38 Requests the load of the latest results file available for the test suite rooted
41 Requests the load of the latest results file available for the test suite rooted
44 Requests the load of the latest results file available for the given test suite.
46 Requests the load of a specific results file.
48 Load the specified results file.
/freebsd/stand/efi/boot1/
H A Dproto.c1 /*-
3 * All rights reserved.
5 * All rights reserved.
7 * All rights reserved.
9 * All rights reserved.
72 return (-1); in probe_handle()
88 return (-1); in probe_handle()
91 if (!blkio->Media->LogicalPartition) in probe_handle()
96 /* Run through each module, see if it can load this partition */ in probe_handle()
100 return (-1); in probe_handle()
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DOPENSSL_LH_stats.pod7 OPENSSL_LH_node_stats_bio, OPENSSL_LH_node_usage_stats_bio - LHASH statistics
40 hash table. It prints the 'load' and the 'actual load'. The load is
42 'actual load' is the average number of items per 'bucket', but only
43 for buckets which contain entries. So the 'actual load' is the
45 table, while the 'load' is the average number that will be done to
73 Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved.
/freebsd/share/man/man4/
H A Dwpi.41 .\"-
2 .\" SPDX-License-Identifier: BSD-2-Clause
4 .\" Copyright (c) 2004-2007
5 .\" Damien Bergamini <damien.bergamini@free.fr>. All rights reserved.
6 .\" Benjamin Close <Benjamin.Close@clearchain.com>. All rights reserved.
8 .\" All rights reserved.
42 .Bd -ragged -offset indent
51 Alternatively, to load the driver as a
63 .Cm adhoc-demo ,
79 Wi-Fi Protected Access (WPA-PSK and WPA2-PSK).
[all …]
/freebsd/usr.sbin/uathload/
H A Duathload.83 .\" All rights reserved.
31 .Nd load firmware for Atheros USB wireless devices
35 .Fl d Ar ugen-device
36 .Op Ar firmware-file
40 utility provides a way to load the firmware for Atheros USB wireless
44 .Bl -tag -width ".Fl f Ar file"
45 .It Fl d Ar ugen-device
54 .Ar firmware-file
57 tries to load it instead of the built-in firmware image.
59 Load the built-in firmware image into a specific
[all …]
/freebsd/stand/i386/mbr/
H A Dmbr.S3 # All rights reserved.
18 .set LOAD,0x7c00 # Load address define
37 movw $LOAD,%sp # stack
40 # we load in the bootstrap from the partition to boot.
42 movw $main-EXEC+LOAD,%si # Source
44 movw $0x200-(main-start),%cx # Byte count
50 jmp main-LOAD+EXEC # To relocated code
81 main.4: movb (%si),%dl # Load drive
83 # Ok, now that we have a valid drive and partition entry, load the CHS from
87 movb 0x1(%si),%dh # Load head
[all …]
/freebsd/share/examples/kld/cdev/
H A DREADME2 # All rights reserved.
32 # All rights reserved.
68 A kld module may be used to load any data or
91 open(2) -> ioctl(2) -> write(2) -> read(2) -> close(2).
106 make load
108 A load message (the copyright) will be printed on the console.
111 make load
114 This message will be printed when running "make load" in

12345678910>>...51