| /openbsd-src/regress/usr.bin/ssh/ |
| H A D | hostkey-rotate.sh | 17 primary="ssh-ed25519" 18 secondary="$primary" 65 dossh -oHostKeyAlgorithms=$primary -oStrictHostKeyChecking=no 68 check_key_present $primary || fail "unstrict didn't learn key" 92 if [ "$primary" != "$secondary" ]; then 108 ${SSHKEYGEN} -qt ${primary} -f $OBJ/hkr.${primary}-new -N '' || fatal "ssh-keygen ed25519" 109 ( cat $OBJ/sshd_proxy.orig ; echo HostKey $OBJ/hkr.${primary}-new ) \ 112 dossh -oStrictHostKeyChecking=yes -oHostKeyAlgorithms=${primary},$all_algs 114 check_key_present ${primary} || fail "current key missing" 115 check_key_present ${primary} $OBJ/hkr.${primary}-new.pub || fail "new key missing" [all …]
|
| /openbsd-src/sys/dev/pci/drm/ |
| H A D | drm_modeset_helper.c | 144 struct drm_plane *primary; in drm_crtc_init() local 148 primary = __drm_universal_plane_alloc(dev, sizeof(*primary), 0, 0, in drm_crtc_init() 153 if (IS_ERR(primary)) in drm_crtc_init() 154 return PTR_ERR(primary); in drm_crtc_init() 160 primary->format_default = true; in drm_crtc_init() 162 ret = drm_crtc_init_with_planes(dev, crtc, primary, NULL, funcs, NULL); in drm_crtc_init() 169 drm_plane_cleanup(primary); in drm_crtc_init() 170 kfree(primary); in drm_crtc_init()
|
| H A D | drm_crtc.c | 248 struct drm_plane *primary, in __drm_crtc_init_with_planes() argument 256 WARN_ON(primary && primary->type != DRM_PLANE_TYPE_PRIMARY); in __drm_crtc_init_with_planes() 299 crtc->primary = primary; in __drm_crtc_init_with_planes() 301 if (primary && !primary->possible_crtcs) in __drm_crtc_init_with_planes() 302 primary->possible_crtcs = drm_crtc_mask(crtc); in __drm_crtc_init_with_planes() 326 * specified primary and cursor planes. 329 * @primary 355 drm_crtc_init_with_planes(struct drm_device * dev,struct drm_crtc * crtc,struct drm_plane * primary,struct drm_plane * cursor,const struct drm_crtc_funcs * funcs,const char * name,...) drm_crtc_init_with_planes() argument 385 __drmm_crtc_init_with_planes(struct drm_device * dev,struct drm_crtc * crtc,struct drm_plane * primary,struct drm_plane * cursor,const struct drm_crtc_funcs * funcs,const char * name,va_list args) __drmm_crtc_init_with_planes() argument 437 drmm_crtc_init_with_planes(struct drm_device * dev,struct drm_crtc * crtc,struct drm_plane * primary,struct drm_plane * cursor,const struct drm_crtc_funcs * funcs,const char * name,...) drmm_crtc_init_with_planes() argument 458 __drmm_crtc_alloc_with_planes(struct drm_device * dev,size_t size,size_t offset,struct drm_plane * primary,struct drm_plane * cursor,const struct drm_crtc_funcs * funcs,const char * name,...) __drmm_crtc_alloc_with_planes() argument [all...] |
| H A D | aperture.c | 349 bool primary = false; in aperture_remove_conflicting_pci_devices() local 354 primary = true; in aperture_remove_conflicting_pci_devices() 356 if (primary) in aperture_remove_conflicting_pci_devices() 373 if (primary) in aperture_remove_conflicting_pci_devices()
|
| H A D | drm_crtc_helper.c | 207 crtc->primary->fb = NULL; in __drm_helper_disable_unused_functions() 638 save_set.fb = set->crtc->primary->fb; in drm_crtc_helper_set_config() 642 if (set->crtc->primary->fb != set->fb) { in drm_crtc_helper_set_config() 644 if (set->crtc->primary->fb == NULL) { in drm_crtc_helper_set_config() 647 } else if (set->fb->format != set->crtc->primary->fb->format) { in drm_crtc_helper_set_config() 767 set->crtc->primary->fb = set->fb; in drm_crtc_helper_set_config() 773 set->crtc->primary->fb = save_set.fb; in drm_crtc_helper_set_config() 788 set->crtc->primary->fb = set->fb; in drm_crtc_helper_set_config() 794 set->crtc->primary->fb = save_set.fb; in drm_crtc_helper_set_config() 995 crtc->x, crtc->y, crtc->primary->fb); in drm_helper_resume_force_mode()
|
| H A D | drm_mode_config.c | 654 WARN(!crtc->primary, "Missing primary plane on [CRTC:%d:%s]\n", in drm_mode_config_validate() 667 if (crtc->primary) { in drm_mode_config_validate() 668 WARN(!(crtc->primary->possible_crtcs & drm_crtc_mask(crtc)), in drm_mode_config_validate() 670 crtc->primary->base.id, crtc->primary->name, in drm_mode_config_validate() 672 WARN(primary_with_crtc & drm_plane_mask(crtc->primary), in drm_mode_config_validate() 674 crtc->primary->base.id, crtc->primary->name); in drm_mode_config_validate() 675 primary_with_crtc |= drm_plane_mask(crtc->primary); in drm_mode_config_validate()
|
| /openbsd-src/regress/usr.sbin/ifstated/ |
| H A D | ifstated | 92 init-state primary 94 state primary { 108 set-state primary 121 changing state to primary 123 changing state to primary 125 changing state to primary 127 changing state to primary 129 changing state to primary 130 changing state to primary
|
| /openbsd-src/usr.bin/ssh/ |
| H A D | auth-options.c | 529 sshauthopt_merge(const struct sshauthopt *primary, in sshauthopt_merge() argument 546 tmp = primary->required_from_host_cert; in sshauthopt_merge() 551 tmp = primary->required_from_host_keys; in sshauthopt_merge() 561 ret->force_tun_device = primary->force_tun_device; in sshauthopt_merge() 564 if (primary->nenv > 0) { in sshauthopt_merge() 566 primary->env, primary->nenv) != 0) in sshauthopt_merge() 573 if (primary->npermitopen > 0) { in sshauthopt_merge() 575 primary->permitopen, primary->npermitopen) != 0) in sshauthopt_merge() 583 if (primary->npermitlisten > 0) { in sshauthopt_merge() 585 primary->permitlisten, primary->npermitlisten) != 0) in sshauthopt_merge() [all …]
|
| /openbsd-src/sys/dev/pci/drm/include/drm/ |
| H A D | drm_crtc.h | 971 struct drm_plane *primary; member 1210 struct drm_plane *primary, 1218 struct drm_plane *primary, 1228 struct drm_plane *primary, 1252 #define drmm_crtc_alloc_with_planes(dev, type, member, primary, cursor, funcs, name, ...) \ argument 1255 primary, cursor, funcs, \
|
| /openbsd-src/gnu/usr.bin/texinfo/makeinfo/ |
| H A D | xml.c | 416 { "primary", 0, 1, 0 }, /* PRIMARY */ 1697 /* Used to separate primary and secondary entries in an index -- we need 1734 char *primary = NULL, *secondary = NULL; in xml_insert_indexterm() 1737 primary = xmalloc (strlen (indexterm) + 1); in xml_insert_indexterm() 1738 strcpy (primary, indexterm); in xml_insert_indexterm() 1739 secondary = strstr (primary+1, INDEX_SEP); in xml_insert_indexterm() 1746 if (primary) in xml_insert_indexterm() 1747 execute_string ("%s", primary); in xml_insert_indexterm() 1751 if (primary) in xml_insert_indexterm() 1902 char *primary in xml_insert_indexentry() 1732 char *primary = NULL, *secondary = NULL; xml_insert_indexterm() local 1900 char *primary = NULL, *secondary; xml_insert_indexentry() local [all...] |
| /openbsd-src/usr.sbin/ldomctl/ |
| H A D | config.c | 1480 struct guest *primary; in hvmd_add_console() local 1485 primary = guest_lookup("primary"); in hvmd_add_console() 1487 server_channel = primary->endpoint_id++; in hvmd_add_console() 1503 console->client_endpoint->target_guest = primary->gid; in hvmd_add_console() 1508 console->server_endpoint = hvmd_add_endpoint(primary); in hvmd_add_console() 1525 struct guest *primary; in hvmd_add_domain_services() local 1529 primary = guest_lookup("primary"); in hvmd_add_domain_services() 1531 server_channel = primary->endpoint_id++; in hvmd_add_domain_services() 1537 ds->client_endpoint->target_guest = primary->gid; in hvmd_add_domain_services() 1541 ds->server_endpoint = hvmd_add_endpoint(primary); in hvmd_add_domain_services() [all …]
|
| /openbsd-src/sys/dev/pci/drm/i915/display/ |
| H A D | intel_dp_mst.c | 80 struct intel_dp *intel_dp = &intel_mst->primary->dp; in intel_dp_mst_find_vcpi_slots_for_bpp() 182 struct intel_dp *intel_dp = &intel_mst->primary->dp; in intel_dp_dsc_mst_compute_link_config() 275 struct intel_dp *intel_dp = &intel_mst->primary->dp; in intel_dp_mst_update_slots() 311 struct intel_dp *intel_dp = &intel_mst->primary->dp; in intel_dp_mst_compute_config() 437 struct intel_dp *intel_dp = &intel_mst->primary->dp; in intel_dp_mst_compute_config_late() 540 struct intel_dp *intel_dp = &intel_mst->primary->dp; in wait_for_act_sent() 555 struct intel_digital_port *dig_port = intel_mst->primary; in intel_mst_disable_dp() 586 struct intel_digital_port *dig_port = intel_mst->primary; in intel_mst_post_disable_dp() 657 struct intel_digital_port *dig_port = intel_mst->primary; in intel_mst_post_pll_disable_dp() 671 struct intel_digital_port *dig_port = intel_mst->primary; in intel_mst_pre_pll_enable_dp() [all …]
|
| H A D | intel_crtc.c | 299 struct intel_plane *primary, *cursor; in intel_crtc_init() local 312 primary = skl_universal_plane_create(dev_priv, pipe, in intel_crtc_init() 315 primary = intel_primary_plane_create(dev_priv, pipe); in intel_crtc_init() 316 if (IS_ERR(primary)) { in intel_crtc_init() 317 ret = PTR_ERR(primary); in intel_crtc_init() 320 crtc->plane_ids_mask |= BIT(primary->id); in intel_crtc_init() 366 &primary->base, &cursor->base, in intel_crtc_init()
|
| /openbsd-src/sys/dev/pci/drm/i915/gvt/ |
| H A D | debugfs.c | 196 struct drm_minor *minor = gvt->gt->i915->drm.primary; in intel_gvt_debugfs_remove_vgpu() 210 struct drm_minor *minor = gvt->gt->i915->drm.primary; in intel_gvt_debugfs_init() 224 struct drm_minor *minor = gvt->gt->i915->drm.primary; in intel_gvt_debugfs_clean()
|
| H A D | cfg_space.c | 320 bool primary) in intel_vgpu_init_cfg_space() argument 331 if (!primary) { in intel_vgpu_init_cfg_space() 386 bool primary = vgpu_cfg_space(vgpu)[PCI_CLASS_DEVICE] != in intel_vgpu_reset_cfg_space() local 399 intel_vgpu_init_cfg_space(vgpu, primary); in intel_vgpu_reset_cfg_space()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/ |
| H A D | SearchableTable.td | 21 // Both a primary key and additional secondary keys / search indices can also 53 // table can have a searchable primary key, and it can also be referenced by 56 // The name of the record is used as the name of the global primary array of 103 // (Optional) List of fields that make up the primary key. 106 // (Optional) Name of the primary key search function.
|
| /openbsd-src/sys/dev/pci/drm/i915/gt/ |
| H A D | intel_gt_debugfs.c | 93 if (!gt->i915->drm.primary->debugfs_root) in intel_gt_debugfs_register() 97 root = debugfs_create_dir(gtname, gt->i915->drm.primary->debugfs_root); in intel_gt_debugfs_register()
|
| /openbsd-src/usr.bin/mandoc/ |
| H A D | read.c | 55 struct buf *primary; /* buffer currently being parsed */ member 108 cp = curp->primary->buf; in choose_parser() 109 ep = cp + curp->primary->sz; in choose_parser() 585 save_primary = curp->primary; in mparse_readfd() 590 curp->primary = &blk; in mparse_readfd() 619 curp->primary = save_primary; in mparse_readfd()
|
| /openbsd-src/sys/dev/pci/drm/apple/ |
| H A D | apple_drv.c | 321 struct drm_plane *primary; in apple_probe_per_dcp() local 324 primary = apple_plane_init(drm, 1U << num, DRM_PLANE_TYPE_PRIMARY); in apple_probe_per_dcp() 326 if (IS_ERR(primary)) in apple_probe_per_dcp() 327 return PTR_ERR(primary); in apple_probe_per_dcp() 330 ret = drm_crtc_init_with_planes(drm, &crtc->base, primary, NULL, in apple_probe_per_dcp()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/ |
| H A D | MIBEntryDef.inc | 18 * This file has two identical copies. The primary copy lives in LLVM and 20 * in this file, first modify the primary copy and copy it over to compiler-rt.
|
| /openbsd-src/gnu/llvm/compiler-rt/include/profile/ |
| H A D | MIBEntryDef.inc | 18 * This file has two identical copies. The primary copy lives in LLVM and 20 * in this file, first modify the primary copy and copy it over to compiler-rt.
|
| /openbsd-src/gnu/gcc/intl/ |
| H A D | localename.c | 426 int primary, sub; local 447 primary = PRIMARYLANGID (langid); 453 switch (primary)
|
| /openbsd-src/sys/dev/pci/drm/radeon/ |
| H A D | radeon_legacy_crtc.c | 393 if (!atomic && !crtc->primary->fb) { in radeon_crtc_do_set_base() 401 target_fb = crtc->primary->fb; in radeon_crtc_do_set_base() 448 if (!atomic && fb && fb != crtc->primary->fb) { in radeon_crtc_do_set_base() 558 if (!atomic && fb && fb != crtc->primary->fb) { in radeon_crtc_do_set_base() 578 const struct drm_framebuffer *fb = crtc->primary->fb; in radeon_set_crtc_timing() 1091 if (crtc->primary->fb) { in radeon_crtc_disable() 1095 rbo = gem_to_radeon_bo(crtc->primary->fb->obj[0]); in radeon_crtc_disable()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/ |
| H A D | ptype.c | 210 enum {red, green, blue} primary; variable 277 primary = blue; in main()
|
| /openbsd-src/sys/dev/pci/drm/i915/selftests/ |
| H A D | mock_drm.h | 37 return mock_drm_getfile(i915->drm.primary, O_RDWR); in mock_file()
|