Home | History | Annotate | Download | only in gdb

Lines Matching refs:kve_protection

174 #define	KVE_PROTECTION		0x38
177 /* Flags in the 'kve_protection' field in struct kinfo_vmentry. These
1079 fbsd_vm_map_entry_flags (int kve_flags, int kve_protection)
1083 vm_flags[0] = (kve_protection & KINFO_VME_PROT_READ) ? 'r' : '-';
1084 vm_flags[1] = (kve_protection & KINFO_VME_PROT_WRITE) ? 'w' : '-';
1085 vm_flags[2] = (kve_protection & KINFO_VME_PROT_EXEC) ? 'x' : '-';
1124 int kve_flags, int kve_protection,
1134 fbsd_vm_map_entry_flags (kve_flags, kve_protection),
1144 fbsd_vm_map_entry_flags (kve_flags, kve_protection),
1191 LONGEST prot = bfd_get_signed_32 (cbfd, descdata + KVE_PROTECTION);