/src/sys/miscfs/overlay/ |
Makefile | 3 INCSDIR= /usr/include/miscfs/overlay 5 INCS= overlay.h
|
overlay_vnops.c | 76 * Overlay Layer 80 * The overlay layer has two purposes. First, it serves as a demonstration 83 * Second, the overlay layer can serve as a prototype layer. Since it 85 * created very easily by starting with an overlay layer. 87 * The remainder of this comment examines the overlay layer as a basis 91 * INSTANTIATING NEW OVERLAY LAYERS 93 * New overlay layers are created with mount_overlay(8). 95 * and the pathname which the overlay will mount over. After 96 * the overlay layer is put into place, all access to the mount 97 * point path will proceed through the overlay layer [all...] |
overlay_vfsops.c | 72 * Overlay Layer 88 #include <miscfs/overlay/overlay.h> 91 MODULE(MODULE_CLASS_VFS, overlay, "layerfs"); 98 * Mount overlay layer 169 * Fix up overlay node for root vnode 206 * Free reference to overlay layer 276 SYSCTL_SETUP(overlay_sysctl_setup, "overlay fs sysctl") 280 CTLFLAG_PERMANENT, CTLTYPE_NODE, "overlay", 281 SYSCTL_DESCR("Overlay file system") [all...] |
/src/sys/modules/secmodel_overlay/ |
Makefile | 5 .PATH: ${S}/secmodel/overlay
|
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_overlay.c | 48 /* Limits for overlay size. According to intel doc, the real limits are: 58 /* overlay register definitions */ 118 /* overlay flip addr flag */ 129 /* memory bufferd overlay registers */ 184 #ifdef __NetBSD__ /* XXX intel overlay iomem */ 243 alloc_request(struct intel_overlay *overlay, void (*fn)(struct intel_overlay *)) 248 overlay->flip_complete = fn; 250 rq = i915_request_create(overlay->context); 254 err = i915_active_add_request(&overlay->last_flip, rq); 263 /* overlay needs to be disable in OCMD reg * 406 struct intel_overlay *overlay = local in function:intel_overlay_last_flip_retire 505 struct intel_overlay *overlay = dev_priv->overlay; local in function:intel_overlay_reset 1081 struct intel_overlay *overlay; local in function:intel_overlay_put_image_ioctl 1243 struct intel_overlay *overlay; local in function:intel_overlay_attrs_ioctl 1355 struct intel_overlay *overlay; local in function:intel_overlay_setup 1401 struct intel_overlay *overlay; local in function:intel_overlay_cleanup 1432 struct intel_overlay *overlay = dev_priv->overlay; local in function:intel_overlay_capture_error_state [all...] |
intel_overlay.h | 20 int intel_overlay_switch_off(struct intel_overlay *overlay);
|
/src/sys/modules/overlay/ |
Makefile | 5 .PATH: ${S}/miscfs/overlay ${S}/miscfs/genfs 7 KMOD= overlay
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_overlay.c | 53 * Overlay control 57 * Each stream is a single overlay. In Xv these are called ports. 252 * The caller must hold the overlay lock. 261 struct vmw_overlay *overlay = dev_priv->overlay_priv; local in function:vmw_overlay_stop 262 struct vmw_stream *stream = &overlay->stream[stream_id]; 298 * The caller must hold the overlay lock. 309 struct vmw_overlay *overlay = dev_priv->overlay_priv; local in function:vmw_overlay_update_stream 310 struct vmw_stream *stream = &overlay->stream[arg->stream_id]; 368 * Takes the overlay lock. 372 struct vmw_overlay *overlay = dev_priv->overlay_priv local in function:vmw_overlay_stop_all 403 struct vmw_overlay *overlay = dev_priv->overlay_priv; local in function:vmw_overlay_resume_all 437 struct vmw_overlay *overlay = dev_priv->overlay_priv; local in function:vmw_overlay_pause_all 471 struct vmw_overlay *overlay = dev_priv->overlay_priv; local in function:vmw_overlay_ioctl 517 struct vmw_overlay *overlay = dev_priv->overlay_priv; local in function:vmw_overlay_num_free_overlays 536 struct vmw_overlay *overlay = dev_priv->overlay_priv; local in function:vmw_overlay_claim 561 struct vmw_overlay *overlay = dev_priv->overlay_priv; local in function:vmw_overlay_unref 580 struct vmw_overlay *overlay; local in function:vmw_overlay_init 604 struct vmw_overlay *overlay = dev_priv->overlay_priv; local in function:vmw_overlay_close [all...] |
/src/sys/miscfs/ |
Makefile | 3 SUBDIR= fdesc fifofs genfs kernfs nullfs overlay procfs specfs umapfs
|
/src/lib/libcurses/ |
overlay.c | 1 /* $NetBSD: overlay.c,v 1.18 2021/09/06 07:03:50 rin Exp $ */ 35 static char sccsid[] = "@(#)overlay.c 8.2 (Berkeley) 5/4/94"; 37 __RCSID("$NetBSD: overlay.c,v 1.18 2021/09/06 07:03:50 rin Exp $"); 47 * overlay -- 51 overlay(const WINDOW *win1, WINDOW *win2) function in typeref:typename:int 54 __CTRACE(__CTRACE_WINDOW, "overlay: (%p, %p);\n", win1, win2);
|
Makefile | 28 mvwin.c newwin.c nodelay.c notimeout.c overlay.c overwrite.c pause.c \ 148 curses_window.3 overlay.3 curses_window.3 overwrite.3 \
|
/src/sbin/mount_overlay/ |
mount_overlay.c | 51 #include <miscfs/overlay/overlay.h> 121 "usage: mount_overlay [-o options] /overlay mount_point\n");
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/device_include/ |
svga_overlay.h | 32 * Definitions for video-overlay support. 89 * Struct definitions for the video overlay commands built on 95 uint32 overlay; member in struct:__anon86a9d9660408
|
/src/sys/external/bsd/libfdt/dist/ |
fdt_overlay.c | 18 * @fdto: pointer to the device tree overlay blob 19 * @fragment: node offset of the fragment in the overlay 22 * overlay fragment when that fragment uses a phandle (target 48 * @fdto: Device tree overlay blob 49 * @fragment: node offset of the fragment in the overlay 88 * overlay 107 * @node: Device tree overlay blob 145 * @fdto: Device tree overlay blob 150 * of a given node. This is mainly use as part of the overlay 151 * application process, when we want to update all the overlay 625 int overlay; local in function:overlay_merge [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/qcom/ |
msm8996-v3.0.dtsi | 17 * overlay on top of 3.1 (the final one) than vice versa.
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_getparam.c | 41 value = !!i915->overlay;
|
i915_gpu_error.h | 178 struct intel_overlay_error_state *overlay; member in struct:i915_gpu_coredump
|
/src/sys/secmodel/overlay/ |
secmodel_overlay.c | 41 #include <secmodel/overlay/overlay.h> 51 #define OVERLAY_ISCOPE_GENERIC "org.netbsd.kauth.overlay.generic" 52 #define OVERLAY_ISCOPE_SYSTEM "org.netbsd.kauth.overlay.system" 53 #define OVERLAY_ISCOPE_PROCESS "org.netbsd.kauth.overlay.process" 54 #define OVERLAY_ISCOPE_NETWORK "org.netbsd.kauth.overlay.network" 55 #define OVERLAY_ISCOPE_MACHDEP "org.netbsd.kauth.overlay.machdep" 56 #define OVERLAY_ISCOPE_DEVICE "org.netbsd.kauth.overlay.device" 57 #define OVERLAY_ISCOPE_VNODE "org.netbsd.kauth.overlay.vnode" 73 * Initialize the overlay security model [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/ |
nouveau_dispnv04_overlay.c | 379 uint32_t overlay = 1; local in function:nv04_update_plane 430 overlay |= 0x10; 432 overlay |= 0x100; 434 nvif_wr32(dev, NV_PVIDEO_OVERLAY, overlay);
|
/src/usr.sbin/installboot/ |
evboards.c | 131 * Individual u-boot packages install their own overlay property list 132 * files that installboot(8) then scans for. These overlay files are 140 * overlay files one directory deep. For example: 163 * Each overlay includes complete board objects that entirely replace 165 * overlay board objects are computed at run-time and should not appear 168 * The schema of the overlay board plists are as follows: 223 * -- will cause the overlay to be rejected. 691 * "runtime-u-boot-path" (string) (required, overlay only) 696 * "u-boot-install" (string) (required, overlay only) 699 * "u-boot-install-*" (string) (required, overlay only 771 prop_dictionary_t overlay; local in function:evb_db_load_overlay [all...] |
/src/tests/lib/libcurses/tests/ |
Makefile | 157 FILES+= overlay
|
/src/lib/libform/ |
form.h | 125 #define REQ_NEW_LINE (KEY_MAX + 0x11f) /* insert/overlay a new line */ 140 #define REQ_OVL_MODE (KEY_MAX + 0x129) /* overlay mode */ 210 int overlay; /* set to true if field is in overlay mode */ member in struct:_form_field
|
internals.c | 1817 if ((field->overlay == 0) 1818 || ((field->overlay == 1) && (pos >= row->length))) { 1834 if ((field->overlay == 0) && (row->length > pos)) { 1850 * OR if we are at the end of the field in overlay mode. 1852 if ((field->overlay == 0) 1853 || ((field->overlay == 1) && (pos >= row->length))) { 1873 if ((field->overlay == 0) 1874 || ((field->overlay == 1) 1885 } else if (field->overlay == 1) { 1886 /* back out character overlay */ [all...] |
/src/tests/lib/libcurses/ |
t_curses.sh | 1970 atf_test_case overlay 1977 h_run overlay 2431 atf_add_test_case overlay
|
/src/sys/arch/arm/sunxi/ |
sunxi_mixer.c | 294 /* Set UI overlay line size */ 405 /* Set UI overlay layer size */ 407 /* Set UI overlay offset */ 409 /* Set UI overlay line size */ 411 /* Set UI overlay window size */ 522 /* Enable UI overlay */ 529 /* Set UI overlay layer size */ 531 /* Set UI overlay offset */ 533 /* Set UI overlay window size */ 1089 struct sunxi_mixer_plane *overlay = to_sunxi_mixer_plane(plane) local in function:sunxi_mixer_overlay_update_plane 1169 struct sunxi_mixer_plane *overlay = to_sunxi_mixer_plane(plane); local in function:sunxi_mixer_overlay_disable_plane [all...] |