Symbol: cr2
sys/amd64/include/vmm.h
691
void vm_inject_pf(struct vcpu *vcpu, int error_code, uint64_t cr2);
sys/amd64/vmm/amd/vmcb.c
182
*retval = state->cr2;
sys/amd64/vmm/amd/vmcb.c
290
state->cr2 = val;
sys/amd64/vmm/amd/vmcb.h
336
uint64_t cr2;
sys/amd64/vmm/vmm.c
1513
vm_inject_pf(struct vcpu *vcpu, int error_code, uint64_t cr2)
sys/amd64/vmm/vmm.c
1518
error_code, cr2);
sys/amd64/vmm/vmm.c
1520
error = vm_set_register(vcpu, VM_REG_GUEST_CR2, cr2);
sys/kern/kern_sig.c
185
#define CANSIGIO(cr1, cr2) \
sys/kern/kern_sig.c
187
(cr1)->cr_ruid == (cr2)->cr_ruid || \
sys/kern/kern_sig.c
188
(cr1)->cr_uid == (cr2)->cr_ruid || \
sys/kern/kern_sig.c
189
(cr1)->cr_ruid == (cr2)->cr_uid || \
sys/kern/kern_sig.c
190
(cr1)->cr_uid == (cr2)->cr_uid)
sys/security/mac/mac_cred.c
389
mac_cred_check_visible(struct ucred *cr1, struct ucred *cr2)
sys/security/mac/mac_cred.c
393
MAC_POLICY_CHECK_NOSLEEP(cred_check_visible, cr1, cr2);
sys/security/mac/mac_cred.c
394
MAC_CHECK_PROBE2(cred_check_visible, error, cr1, cr2);
sys/security/mac/mac_framework.h
136
int mac_cred_check_visible(struct ucred *cr1, struct ucred *cr2);
sys/security/mac/mac_framework.h
137
void mac_cred_copy(struct ucred *cr1, struct ucred *cr2);
sys/security/mac/mac_policy.h
168
struct ucred *cr2);
sys/security/mac_lomac/mac_lomac.c
982
lomac_cred_check_visible(struct ucred *cr1, struct ucred *cr2)
sys/security/mac_lomac/mac_lomac.c
990
obj = SLOT(cr2->cr_label);
sys/security/mac_mls/mac_mls.c
848
mls_cred_check_visible(struct ucred *cr1, struct ucred *cr2)
sys/security/mac_mls/mac_mls.c
856
obj = SLOT(cr2->cr_label);
sys/security/mac_partition/mac_partition.c
135
partition_cred_check_visible(struct ucred *cr1, struct ucred *cr2)
sys/security/mac_partition/mac_partition.c
139
error = partition_check(cr1->cr_label, cr2->cr_label);
sys/security/mac_seeotheruids/mac_seeotheruids.c
102
seeotheruids_check(struct ucred *cr1, struct ucred *cr2)
sys/security/mac_seeotheruids/mac_seeotheruids.c
109
if (cr1->cr_rgid == cr2->cr_rgid)
sys/security/mac_seeotheruids/mac_seeotheruids.c
119
if (cr1->cr_ruid == cr2->cr_ruid)
sys/security/mac_seeotheruids/mac_seeotheruids.c
153
seeotheruids_cred_check_visible(struct ucred *cr1, struct ucred *cr2)
sys/security/mac_seeotheruids/mac_seeotheruids.c
156
return (seeotheruids_check(cr1, cr2));
sys/security/mac_stub/mac_stub.c
310
stub_cred_check_visible(struct ucred *cr1, struct ucred *cr2)
tools/test/stress2/tools/bench.c
49
static void cr2(void);
tools/test/stress2/tools/bench.c
54
static void (*functions[])(void) = {&cr1, &cr2, &cr3, &rn1, &rw1, &rw2};
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
456
uint64_t cr0, cr2, cr3, cr4, dr0, dr1, dr2, dr3, dr6, dr7;
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
475
error = vm_get_register(vcpu, VM_REG_GUEST_CR2, &cr2);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
477
printf("cr2[%d]\t\t0x%016lx\n", vcpuid, cr2);