| /linux/Documentation/arch/powerpc/ |
| H A D | bootwrapper.rst | 2 The PowerPC boot wrapper 8 a boot wrapper to make it usable by the system firmware. There is no 9 standard PowerPC firmware interface, so the boot wrapper is designed to 12 The boot wrapper can be found in the arch/powerpc/boot/ directory. The 21 The boot wrapper is built from the makefile in arch/powerpc/boot/Makefile and 22 it uses the wrapper script (arch/powerpc/boot/wrapper) to generate target 30 the image. The boot wrapper, kernel and device tree 32 with boot wrapper code that extracts data from the old 45 the wrapper structure. 63 can be overridden by the wrapper script. [all …]
|
| /linux/drivers/accel/qaic/ |
| H A D | qaic_control.c | 292 struct wrapper_msg *wrapper = container_of(ref, struct wrapper_msg, ref_count); in free_wrapper() local 294 list_del(&wrapper->list); in free_wrapper() 295 kfree(wrapper); in free_wrapper() 361 struct wrapper_msg *wrapper; in encode_passthrough() local 365 wrapper = list_first_entry(&wrappers->list, struct wrapper_msg, list); in encode_passthrough() 366 msg = &wrapper->msg; in encode_passthrough() 568 struct wrapper_msg *wrapper; in encode_dma() local 576 wrapper = list_first_entry(&wrappers->list, struct wrapper_msg, list); in encode_dma() 577 msg = &wrapper->msg; in encode_dma() 638 struct wrapper_msg *wrapper; in encode_activate() local [all …]
|
| /linux/crypto/asymmetric_keys/ |
| H A D | verify_pefile.c | 125 struct win_certificate wrapper; in pefile_strip_sig_wrapper() local 129 if (ctx->sig_len < sizeof(wrapper)) { in pefile_strip_sig_wrapper() 134 memcpy(&wrapper, pebuf + ctx->sig_offset, sizeof(wrapper)); in pefile_strip_sig_wrapper() 136 wrapper.length, wrapper.revision, wrapper.cert_type); in pefile_strip_sig_wrapper() 144 if (wrapper.length > ctx->sig_len) { in pefile_strip_sig_wrapper() 146 ctx->sig_len, wrapper.length); in pefile_strip_sig_wrapper() 149 if (wrapper.revision != WIN_CERT_REVISION_2_0) { in pefile_strip_sig_wrapper() 153 if (wrapper.cert_type != WIN_CERT_TYPE_PKCS_SIGNED_DATA) { in pefile_strip_sig_wrapper() 163 ctx->sig_len = wrapper.length; in pefile_strip_sig_wrapper() 164 ctx->sig_offset += sizeof(wrapper); in pefile_strip_sig_wrapper() [all …]
|
| /linux/drivers/net/ethernet/mellanox/mlx4/ |
| H A D | cmd.c | 1069 .wrapper = mlx4_QUERY_FW_wrapper 1078 .wrapper = NULL 1087 .wrapper = mlx4_QUERY_DEV_CAP_wrapper 1096 .wrapper = mlx4_QUERY_FUNC_CAP_wrapper 1105 .wrapper = NULL 1114 .wrapper = mlx4_INIT_PORT_wrapper 1123 .wrapper = mlx4_CLOSE_PORT_wrapper 1132 .wrapper = mlx4_QUERY_PORT_wrapper 1141 .wrapper = mlx4_SET_PORT_wrapper 1150 .wrapper = mlx4_MAP_EQ_wrapper [all …]
|
| /linux/Documentation/devicetree/bindings/sound/ |
| H A D | mt6351.txt | 3 The communication between MT6351 and SoC is through Mediatek PMIC wrapper. 4 For more detail, please visit Mediatek PMIC wrapper documentation. 6 Must be a child node of PMIC wrapper.
|
| H A D | mt6358.txt | 3 The communication between MT6358 and SoC is through Mediatek PMIC wrapper. 4 For more detail, please visit Mediatek PMIC wrapper documentation. 6 Must be a child node of PMIC wrapper.
|
| /linux/arch/powerpc/boot/ |
| H A D | Makefile | 134 $(addprefix $(obj)/,$(libfdt) libfdt-wrapper.o simpleboot.o epapr.o opal.o \ 139 $(libfdt) libfdt-wrapper.c \ 175 src-plat-$(CONFIG_EPAPR_BOOT) += epapr.c epapr-wrapper.c 241 $(obj)/wrapper.a: $(obj-wlib) FORCE 246 targets += $(patsubst $(obj)/%,%,$(obj-boot) wrapper.a) zImage.lds 247 always-y := $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \ 252 wrapper := $(src)/wrapper macro 254 $(wrapper) FORCE 274 cmd_wrap =$(CONFIG_SHELL) $(wrapper) -Z $(compressor-y) -c -o $@ -p $2 \ 455 WRAPPER_OBJDIR := /usr/lib/kernel-wrapper [all …]
|
| /linux/kernel/liveupdate/ |
| H A D | kexec_handover_debugfs.c | 22 struct debugfs_blob_wrapper wrapper; member 36 f->wrapper.data = (void *)fdt; in __kho_debugfs_fdt_add() 37 f->wrapper.size = fdt_totalsize(fdt); in __kho_debugfs_fdt_add() 39 file = debugfs_create_blob(name, 0400, dir, &f->wrapper); in __kho_debugfs_fdt_add() 69 if (ff->wrapper.data == fdt) { in kho_debugfs_fdt_remove()
|
| /linux/lib/ |
| H A D | sort.c | 128 struct wrapper { struct 140 ((const struct wrapper *)priv)->swap(a, b, (int)size); in do_swap() argument 159 return ((const struct wrapper *)priv)->cmp(a, b); in do_cmp() 206 if (swap_func == SWAP_WRAPPER && !((struct wrapper *)priv)->swap) in __sort_r() 337 struct wrapper w = { in sort() 350 struct wrapper w = { in sort_nonatomic()
|
| /linux/tools/usb/ |
| H A D | testusb.c | 282 struct usbdevfs_ioctl wrapper; in usbdev_ioctl() local 284 wrapper.ifno = ifno; in usbdev_ioctl() 285 wrapper.ioctl_code = request; in usbdev_ioctl() 286 wrapper.data = param; in usbdev_ioctl() 288 return ioctl (fd, USBDEVFS_IOCTL, &wrapper); in usbdev_ioctl()
|
| /linux/Documentation/driver-api/thermal/ |
| H A D | exynos_thermal.rst | 74 TMU configuration data -----> TMU Driver <----> Exynos Core thermal wrapper 87 c) Exynos Core thermal wrapper: 88 This provides 3 wrapper function to use the
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | test_bpftool.py | 55 def wrapper(*args, **kwargs): function 58 return wrapper
|
| /linux/arch/alpha/lib/ |
| H A D | callback_srm.S | 20 ldl $25,0($25) # Pick up the wrapper data. 32 jmp ($3) # Return directly to caller of wrapper.
|
| /linux/include/kunit/ |
| H A D | resource.h | 406 #define KUNIT_DEFINE_ACTION_WRAPPER(wrapper, orig, arg_type) \ argument 407 static void wrapper(void *in) \
|
| /linux/drivers/android/binder/ |
| H A D | process.rs | 256 wrapper: Option<CritIncrWrapper>, in new_node_ref_with_thread() 258 let push = match wrapper { in new_node_ref_with_thread() 262 Some(wrapper) => node.incr_refcount_allow_zero2one_with_wrapper(strong, wrapper, self), in new_node_ref_with_thread() 761 wrapper: Option<CritIncrWrapper>, in get_node_inner() 767 return Ok(inner.new_node_ref_with_thread(node, strong, thread, wrapper)); in get_node_inner() 776 return Ok(inner.new_node_ref_with_thread(node, strong, thread, wrapper)); in get_node_inner() 783 .new_node_ref_with_thread(node, strong, thread, wrapper) in get_node_inner() 797 let mut wrapper = None; in get_node() localVariable 799 match self.get_node_inner(ptr, cookie, flags, strong, thread, wrapper) { in get_node() 803 wrapper = Some(CritIncrWrapper::new()?); in get_node()
|
| /linux/tools/usb/usbip/ |
| H A D | configure.ac | 69 [use tcp wrapper]) wrap_LIB="-lwrap"], 83 AC_DEFINE([HAVE_LIBWRAP], [1], [use tcp wrapper])],
|
| /linux/Documentation/core-api/wrappers/ |
| H A D | atomic_t.rst | 2 This is a simple wrapper to bring atomic_t.txt into the RST world
|
| H A D | atomic_bitops.rst | 2 This is a simple wrapper to bring atomic_bitops.txt into the RST world
|
| H A D | memory-barriers.rst | 2 This is a simple wrapper to bring memory-barriers.txt into the RST world
|
| /linux/Documentation/admin-guide/ |
| H A D | mono.rst | 6 wrapper, you can use the BINFMT_MISC kernel support. 62 wrapper script, simply by launching the ``.exe`` file directly
|
| /linux/tools/testing/selftests/net/lib/py/ |
| H A D | ksft.py | 204 def wrapper(*args, **kwargs): 208 return wrapper 172 def wrapper(*args, **kwargs): global() function
|
| /linux/Documentation/translations/sp_SP/wrappers/ |
| H A D | memory-barriers.rst | 2 This is a simple wrapper to bring memory-barriers.txt (Spanish
|
| /linux/Documentation/leds/ |
| H A D | leds-class-flash.rst | 26 V4L2 flash wrapper for flash LEDs 82 v4l2 flash wrapper.
|
| /linux/drivers/dma-buf/ |
| H A D | dma-buf.c | 59 struct sg_table wrapper; member 873 ret = sg_alloc_table(&to->wrapper, from->nents, GFP_KERNEL); in dma_buf_wrap_sg_table() 877 to_sg = to->wrapper.sgl; in dma_buf_wrap_sg_table() 888 *sg_table = &to->wrapper; in dma_buf_wrap_sg_table() 903 copy = container_of(*sg_table, typeof(*copy), wrapper); in dma_buf_unwrap_sg_table() 905 sg_free_table(©->wrapper); in dma_buf_unwrap_sg_table()
|
| /linux/drivers/net/wireless/virtual/ |
| H A D | Kconfig | 15 tristate "Wifi wrapper for ethernet drivers"
|