HomeSort by: relevance | last modified time | path
    Searched defs:helper (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_fbcon.h 37 struct drm_fb_helper helper; /* must be first */ member in struct:nouveau_fbdev
nouveau_connector.c 60 const struct drm_connector_helper_funcs *helper = connector->helper_private; local in function:nouveau_conn_native_mode
68 if (helper->mode_valid(connector, mode) != MODE_OK ||
650 const struct drm_encoder_helper_funcs *helper = local in function:nouveau_connector_detect
653 if (helper->detect(encoder, connector) ==
  /src/sys/external/bsd/drm2/amdgpu/
amdgpufb.c 165 struct drm_fb_helper *const helper = sc->sc_afa.afa_fb_helper; local in function:amdgpufb_drmfb_mmapfb
166 struct drm_framebuffer *const fb = helper->fb;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/
nouveau_dispnv04_tvnv04.c 133 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; local in function:nv04_tv_prepare
135 helper->dpms(encoder, DRM_MODE_DPMS_OFF);
175 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; local in function:nv04_tv_commit
177 helper->dpms(encoder, DRM_MODE_DPMS_ON);
nouveau_dispnv04_dac.c 370 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; local in function:nv04_dac_prepare
374 helper->dpms(encoder, DRM_MODE_DPMS_OFF);
421 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; local in function:nv04_dac_commit
423 helper->dpms(encoder, DRM_MODE_DPMS_ON);
534 const struct drm_encoder_helper_funcs *helper; local in function:nv04_dac_create
552 helper = &nv17_dac_helper_funcs;
554 helper = &nv04_dac_helper_funcs;
558 drm_encoder_helper_add(encoder, helper);
nouveau_dispnv04_dfp.c 252 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; local in function:nv04_dfp_prepare
259 helper->dpms(encoder, DRM_MODE_DPMS_OFF);
454 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; local in function:nv04_dfp_commit
483 helper->dpms(encoder, DRM_MODE_DPMS_ON);
684 const struct drm_encoder_helper_funcs *helper; local in function:nv04_dfp_create
692 helper = &nv04_tmds_helper_funcs;
696 helper = &nv04_lvds_helper_funcs;
715 drm_encoder_helper_add(encoder, helper);
nouveau_dispnv04_tvnv17.c 405 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; local in function:nv17_tv_prepare
414 helper->dpms(encoder, DRM_MODE_DPMS_OFF);
583 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; local in function:nv17_tv_commit
604 helper->dpms(encoder, DRM_MODE_DPMS_ON);
  /src/sys/external/bsd/drm2/nouveau/
nouveaufb.c 170 struct drm_fb_helper *const helper = sc->sc_nfa.nfa_fb_helper; local in function:nouveaufb_drmfb_mmapfb
171 struct drm_framebuffer *const fb = helper->fb;
  /src/sys/external/bsd/drm2/radeon/
radeondrmkmsfb.c 165 struct drm_fb_helper *const helper = sc->sc_rfa.rfa_fb_helper; local in function:radeonfb_drmfb_mmapfb
166 struct drm_framebuffer *const fb = helper->fb;
  /src/sys/external/bsd/drm2/vmwgfx/
vmwgfxfb.c 161 struct drm_fb_helper *const helper = sc->sc_vfa.vfa_fb_helper; local in function:vmwgfxfb_drmfb_mmapfb
162 struct drm_framebuffer *const fb = helper->fb;
  /src/sys/external/bsd/drm2/i915drm/
intelfb.c 172 struct drm_fb_helper *const helper = sc->sc_ifa.ifa_fb_helper; local in function:intelfb_drmfb_mmapfb
173 struct intel_fbdev *const fbdev = container_of(helper,
174 struct intel_fbdev, helper);
175 struct drm_device *const dev = helper->dev;
  /src/tests/lib/libc/gen/posix_spawn/
t_spawnattr.c 114 char helper[FILENAME_MAX]; local in function:ATF_TC_BODY
142 snprintf(helper, sizeof(helper), "%s/h_spawnattr",
144 RZ(posix_spawn(&pid, helper, NULL, &attr, args, NULL));
t_fileactions.c 280 char helper[FILENAME_MAX]; local in function:ATF_TC_BODY
300 snprintf(helper, sizeof helper, "%s/h_fileactions",
302 RZ(posix_spawn(&pid, helper, &fa, NULL, args, NULL));
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_fb.c 53 * this contains a helper + a radeon fb
54 * the helper contains a pointer to radeon framebuffer baseclass.
57 struct drm_fb_helper helper; /* must be first */ member in struct:radeon_fbdev
224 static int radeonfb_create(struct drm_fb_helper *helper,
228 container_of(helper, struct radeon_fbdev, helper);
273 rfa.rfa_fb_helper = helper;
279 helper->fbdev = config_found(rdev->ddev->dev, &rfa, NULL,
282 if (helper->fbdev == NULL) {
288 rfbdev->helper.fb = fb
    [all...]
  /src/tests/lib/libc/sys/
t_eventfd.c 174 pthread_t helper; local in function:ATF_TC_BODY
181 ATF_REQUIRE(pthread_create(&helper, NULL,
185 * Wait for the helper to block in read(). Give it some time
194 /* Write a distinct value; helper will assert it. */
197 /* Wait for helper to read the value. */
200 /* Helper is now blocked in a barrier. */
206 /* Satisfy the barrier; helper will read value and assert 0xbeefcafe. */
212 /* Reap the helper. */
213 ATF_REQUIRE(pthread_join(helper, &join_val) == 0);
504 pthread_t helper; local in function:ATF_TC_BODY
691 pthread_t helper; local in function:ATF_TC_BODY
    [all...]
t_timerfd.c 476 pthread_t helper; local in function:ATF_TC_BODY
492 ATF_REQUIRE(pthread_create(&helper, NULL,
497 ATF_REQUIRE(pthread_join(helper, &join_val) == 0);
723 pthread_t helper; local in function:ATF_TC_BODY
738 ATF_REQUIRE(pthread_create(&helper, NULL,
742 * Wait for the helper to be ready, and then immediately block
743 * in read(). The helper will close the file, and we should get
753 /* Reap the helper. */
754 ATF_REQUIRE(pthread_join(helper, &join_val) == 0);
  /src/games/warp/
term.c 478 helper(void) function in typeref:typename:void
  /src/sys/arch/arm/rockchip/
rk_drm.h 88 struct drm_fb_helper helper; member in struct:rk_drm_fbdev
  /src/sys/arch/arm/sunxi/
sunxi_drm.h 90 struct drm_fb_helper helper; member in struct:sunxi_drm_fbdev
  /src/sys/arch/arm/ti/
ti_lcdc.h 98 struct drm_fb_helper helper; member in struct:tilcdc_fbdev
  /src/sys/arch/arm/nvidia/
tegra_drm.h 132 struct drm_fb_helper helper; member in struct:tegra_fbdev
164 #define to_tegra_fbdev(x) container_of(x, struct tegra_fbdev, helper)
  /src/sys/external/bsd/drm2/dist/drm/
drm_fb_helper.c 8 * DRM framebuffer helper functions
102 * The fb helper functions are useful to provide an fbdev on top of a drm kernel
104 * helper functions used by many drivers to implement the kernel mode setting
114 * They should also notify the fb helper code from updates to the output
121 * All other functions exported by the fb helper library can be used to
126 * helper must be called first to initialize the minimum required to make
131 * encoders and connectors. To finish up the fbdev helper initialization, the
166 * @info: fbdev registered by the helper
168 int drm_fb_helper_debug_enter_fb(struct drm_fb_helper *helper)
173 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list)
293 struct drm_fb_helper *helper; local in function:drm_fb_helper_force_kernel_mode
387 struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper, local in function:drm_fb_helper_resume_worker
418 struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper, local in function:drm_fb_helper_dirty_work
658 struct drm_fb_helper *helper = info->par; local in function:drm_fb_helper_dirty
    [all...]
  /src/sys/dev/i2c/
dbcool.c 128 int (*helper)(SYSCTLFN_PROTO); member in struct:dbc_sysctl_info
1759 dbc_sysctl_table[sysctl_index].helper,
1804 dbc_sysctl_table[j].helper,
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_mode.h 311 struct drm_fb_helper helper; member in struct:amdgpu_fbdev
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_display_types.h 104 struct drm_fb_helper helper; member in struct:intel_fbdev
579 * crtc_state->scaler_state.scaler_users by calling helper function
587 * crtc_state->scaler_state.scaler_users by calling helper function

Completed in 32 milliseconds

1 2