/src/sys/arch/powerpc/include/ibm4xx/ |
vmparam.h | 99 char *attrs; member in struct:pmap_physseg
|
/src/sys/arch/x86/include/ |
pmap_pv.h | 82 uint8_t attrs; member in struct:pmap_page::__anond0af0539010a::__anond0af05390208 90 #define pp_attrs pp_u.s.attrs
|
/src/tests/fs/vfs/ |
t_ro.c | 121 attrs(const atf_tc_t *tc, const char *mp) function in typeref:typename:void 185 ATF_TC_FSAPPLY_RO(attrs, "can query but not change attributes", filegen); 197 ATF_TP_FSAPPLY_RO(attrs);
|
t_vnops.c | 739 attrs(const atf_tc_t *tc, const char *mp) function in typeref:typename:void 1083 ATF_TC_FSAPPLY(attrs, "check setting attributes works"); 1117 ATF_TP_FSAPPLY(attrs);
|
/src/tests/fs/ffs/ |
t_extattr.c | 63 static const char *attrs[] = { E, T }; variable in typeref:typename:const char * [] 69 for (size_t i = 0; i < __arraycount(attrs); i++) { 71 if (l != strlen(attrs[i])) 73 strlen(attrs[i])); 74 if (strncmp(&buf[p], attrs[i], l) != 0) 76 &buf[p], attrs[i]); 156 check_list(buf, __arraycount(attrs)); 161 check_list(buf, __arraycount(attrs));
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_symbolizer_win.cc | 202 SECURITY_ATTRIBUTES attrs; local in function:__sanitizer::SymbolizerProcess::StartSymbolizerSubprocess 203 attrs.nLength = sizeof(SECURITY_ATTRIBUTES); 204 attrs.bInheritHandle = TRUE; 205 attrs.lpSecurityDescriptor = nullptr; 206 if (!::CreatePipe(stdin_read.receive(), stdin_write.receive(), &attrs, 0) || 207 !::CreatePipe(stdout_read.receive(), stdout_write.receive(), &attrs, 0)) {
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/instmem/ |
nouveau_nvkm_subdev_instmem_gk20a.c | 134 unsigned long attrs; member in struct:gk20a_instmem 349 node->base.vaddr, node->handle, imem->attrs); 455 imem->attrs); 711 imem->attrs = DMA_ATTR_NON_CONSISTENT |
|
/src/share/examples/puffs/pgfs/ |
pgfs_puffs.c | 761 unsigned int attrs; local in function:pgfs_node_setattr 768 attrs = 0; 771 attrs |= GETATTR_UID|GETATTR_GID|GETATTR_MODE; 774 attrs |= GETATTR_TYPE|GETATTR_UID|GETATTR_GID; 779 attrs |= GETATTR_UID|GETATTR_GID|GETATTR_MODE; 784 error = getattr(xc, fileid, &ova, attrs);
|
/src/sys/nfs/ |
nfs_vfsops.c | 689 struct vattr *attrs; local in function:mountnfs 780 attrs = malloc(sizeof(struct vattr), M_TEMP, M_WAITOK); 781 VOP_GETATTR(vp, attrs, l->l_cred); 784 kauth_cred_setuid(cr, attrs->va_uid); 785 kauth_cred_seteuid(cr, attrs->va_uid); 786 kauth_cred_setsvuid(cr, attrs->va_uid); 787 kauth_cred_setgid(cr, attrs->va_gid); 788 kauth_cred_setegid(cr, attrs->va_gid); 789 kauth_cred_setsvgid(cr, attrs->va_gid); 793 free(attrs, M_TEMP) [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/ |
kfd_topology.c | 390 static ssize_t perf_show(struct kobject *kobj, struct kobj_attribute *attrs, 396 attr = container_of(attrs, struct kfd_perf_attr, attr); 622 struct attribute **attrs; local in function:kfd_build_sysfs_node_entry 743 attrs = (struct attribute **)(perf->attr_group + 1); 751 attrs[i] = &perf_attr_iommu[i].attr.attr; 754 perf->attr_group->attrs = attrs;
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_perf_types.h | 57 struct attribute *attrs[2]; member in struct:i915_oa_config
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_ras.c | 949 struct attribute *attrs[] = { local in function:amdgpu_ras_sysfs_create_feature_node 959 .attrs = attrs, 981 sysfs_attr_init(attrs[0]); 990 struct attribute *attrs[] = { local in function:amdgpu_ras_sysfs_remove_feature_node 1000 .attrs = attrs,
|
/src/sys/external/bsd/drm2/dist/drm/ttm/ |
ttm_page_alloc_dma.c | 292 unsigned long attrs = 0; local in function:__ttm_dma_free_page 296 attrs = DMA_ATTR_NO_WARN; 298 dma_free_attrs(pool->dev, pool->size, (void *)d_page->vaddr, dma, attrs); 306 unsigned long attrs = 0; local in function:__ttm_dma_alloc_page 314 attrs = DMA_ATTR_NO_WARN; 317 pool->gfp_flags, attrs);
|
/src/sys/dev/wscons/ |
wsdisplay_vcons.c | 91 long *attrs; member in struct:vcons_data_private 222 vdp->attrs = NULL; 359 if (vdp->attrs != NULL) 360 free(vdp->attrs, M_DEVBUF); 364 vdp->attrs = malloc(size * sizeof(long), M_DEVBUF, 746 vdp->attrs[boffset] = attrptr[offset]; 792 vdp->attrs[vdp->cursor_offset] = 0xffffffff; 803 (vdp->attrs[boffset] != attrptr[offset])) { 807 vdp->attrs[boffset] = attrptr[offset]; 1042 (scr->scr_attrs[pos] != vdp->attrs[ppos])) [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_overlay.c | 1221 static int check_gamma(struct drm_intel_overlay_attrs *attrs) 1223 if (!check_gamma_bounds(0, attrs->gamma0) || 1224 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) || 1225 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) || 1226 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) || 1227 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) | 1241 struct drm_intel_overlay_attrs *attrs = data; local in function:intel_overlay_attrs_ioctl [all...] |
/src/usr.bin/sdpquery/ |
print.c | 57 attr_t * attrs; member in struct:__anonef619e070208 734 service_list[j].attrs, service_list[j].nattr))
|
/src/sys/arch/alpha/alpha/ |
pmap.c | 2358 uintptr_t attrs = 0; local in function:pmap_enter 2363 attrs |= (PGA_REFERENCED|PGA_MODIFIED); 2365 attrs |= PGA_REFERENCED; 2369 attrs = (md->pvh_listx |= attrs); 2373 if ((attrs & PGA_REFERENCED) == 0) 2375 else if ((attrs & PGA_MODIFIED) == 0) 3224 printf("pa 0x%lx (attrs = 0x%lx):\n", pa, md->pvh_listx & PGA_ATTRS); 3325 uintptr_t const attrs = md->pvh_listx & PGA_ATTRS; local in function:pmap_pv_enter 3327 md->pvh_listx = (uintptr_t)newpv | attrs; [all...] |
/src/sys/kern/ |
kern_exec.c | 2212 handle_posix_spawn_attrs(struct posix_spawnattr *attrs, struct proc *parent) 2219 if (attrs == NULL) 2244 if (attrs->sa_flags & POSIX_SPAWN_SETPGROUP) { 2246 pid_t pgrp = attrs->sa_pgroup; 2257 if (attrs->sa_flags & POSIX_SPAWN_SETSCHEDULER) 2258 error = do_sched_setparam(p->p_pid, 0, attrs->sa_schedpolicy, 2259 &attrs->sa_schedparam); 2260 else if (attrs->sa_flags & POSIX_SPAWN_SETSCHEDPARAM) { 2262 SCHED_NONE, &attrs->sa_schedparam); 2268 if (attrs->sa_flags & POSIX_SPAWN_RESETIDS) 2342 struct posix_spawnattr *attrs = spawn_data->sed_attrs; local in function:spawn_return [all...] |
/src/tests/lib/libcurses/slave/ |
curses_commands.c | 247 attr_t attrs; local in function:cmd_attr_get 253 retval = attr_get(&attrs, &colours, NULL); 257 report_int(attrs); 4502 ARG_INT(attrs); 4507 report_return(setcchar(&wcval, wch, attrs, color_pair, NULL)); 4516 attr_t attrs; local in function:cmd_getcchar 4528 report_return(getcchar(wcval, wch, &attrs, &color_pair, NULL)); 4530 report_int(attrs); 4876 ARG_INT(attrs); 4879 report_return(slk_attr_off(attrs, NULL)) [all...] |
/src/usr.bin/xlint/lint1/ |
lint1.h | 572 attribute *attrs; member in struct:__anondcf084d02008
|