Symbol: cr1
sys/arm/include/vfp.h
35
#define VFPSCR cr1
sys/dev/vr/if_vr.c
299
uint8_t cr0, cr1, fc;
sys/dev/vr/if_vr.c
323
cr1 = CSR_READ_1(sc, VR_CR1);
sys/dev/vr/if_vr.c
324
mfdx = (cr1 & VR_CR1_FULLDUPLEX) != 0;
sys/dev/vr/if_vr.c
339
cr1 |= VR_CR1_FULLDUPLEX;
sys/dev/vr/if_vr.c
341
cr1 &= ~VR_CR1_FULLDUPLEX;
sys/dev/vr/if_vr.c
342
CSR_WRITE_1(sc, VR_CR1, cr1);
sys/kern/kern_sig.c
185
#define CANSIGIO(cr1, cr2) \
sys/kern/kern_sig.c
186
((cr1)->cr_uid == 0 || \
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
167
typedef int (*mpo_cred_check_visible_t)(struct ucred *cr1,
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
989
subj = SLOT(cr1->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
855
subj = SLOT(cr1->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
114
if (cr1->cr_rgid == specificgid ||
sys/security/mac_seeotheruids/mac_seeotheruids.c
115
groupmember(specificgid, cr1))
sys/security/mac_seeotheruids/mac_seeotheruids.c
119
if (cr1->cr_ruid == cr2->cr_ruid)
sys/security/mac_seeotheruids/mac_seeotheruids.c
123
if (priv_check_cred(cr1, PRIV_SEEOTHERUIDS) == 0)
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
48
static void cr1(void);
tools/test/stress2/tools/bench.c
54
static void (*functions[])(void) = {&cr1, &cr2, &cr3, &rn1, &rw1, &rw2};
usr.sbin/mountd/mountd.c
2438
compare_cred(struct expcred *cr0, struct expcred *cr1)
usr.sbin/mountd/mountd.c
2441
if (cr0->cr_uid != cr1->cr_uid || cr0->cr_ngroups != cr1->cr_ngroups)
usr.sbin/mountd/mountd.c
2444
COMPARE_ARRAYS(cr0->cr_groups, cr1->cr_groups, cr0->cr_ngroups);