Home
last modified time | relevance | path

Searched refs:error1 (Results 1 – 12 of 12) sorted by relevance

/f-stack/freebsd/security/mac/
H A Dmac_framework.c694 mac_error_select(int error1, int error2) in mac_error_select() argument
698 if (error1 == EDEADLK || error2 == EDEADLK) in mac_error_select()
702 if (error1 == EINVAL || error2 == EINVAL) in mac_error_select()
706 if (error1 == ESRCH || error2 == ESRCH) in mac_error_select()
709 if (error1 == ENOENT || error2 == ENOENT) in mac_error_select()
713 if (error1 == EACCES || error2 == EACCES) in mac_error_select()
717 if (error1 == EPERM || error2 == EPERM) in mac_error_select()
721 if (error1 != 0) in mac_error_select()
722 return (error1); in mac_error_select()
H A Dmac_internal.h202 int mac_error_select(int error1, int error2);
/f-stack/dpdk/lib/librte_cfgfile/
H A Drte_cfgfile.c190 goto error1; in rte_cfgfile_load_with_params()
212 goto error1; in rte_cfgfile_load_with_params()
228 goto error1; in rte_cfgfile_load_with_params()
252 goto error1; in rte_cfgfile_load_with_params()
256 goto error1; in rte_cfgfile_load_with_params()
264 error1: in rte_cfgfile_load_with_params()
292 goto error1; in rte_cfgfile_create()
301 goto error1; in rte_cfgfile_create()
311 error1: in rte_cfgfile_create()
/f-stack/freebsd/kern/
H A Dkern_procctl.c246 int error1; in reap_kill_proc() local
249 error1 = p_cansignal(td, p2, rk->rk_sig); in reap_kill_proc()
250 if (error1 == 0) { in reap_kill_proc()
253 *error = error1; in reap_kill_proc()
256 *error = error1; in reap_kill_proc()
590 int error, error1, flags, signum; in sys_procctl() local
655 error1 = copyout(&x.rk, uap->data, sizeof(x.rk)); in sys_procctl()
657 error = error1; in sys_procctl()
H A Dkern_prot.c1177 int error1 = 0, error2 = 0, error3 = 0; in sys_getresuid() local
1181 error1 = copyout(&cred->cr_ruid, in sys_getresuid()
1189 return (error1 ? error1 : error2 ? error2 : error3); in sys_getresuid()
1204 int error1 = 0, error2 = 0, error3 = 0; in sys_getresgid() local
1208 error1 = copyout(&cred->cr_rgid, in sys_getresgid()
1216 return (error1 ? error1 : error2 ? error2 : error3); in sys_getresgid()
H A Dsys_pipe.c986 goto error1; in pipe_direct_write()
1000 goto error1; in pipe_direct_write()
1015 goto error1; in pipe_direct_write()
1021 goto error1; in pipe_direct_write()
1054 error1: in pipe_direct_write()
H A Dvfs_mount.c905 int error, error1; in vfs_domount_first() local
967 error1 = 0; in vfs_domount_first()
970 (error1 = VFS_STATFS(mp, &mp->mnt_stat)) != 0 || in vfs_domount_first()
971 (error1 = VFS_ROOT(mp, LK_EXCLUSIVE, &newdp)) != 0) { in vfs_domount_first()
973 if (error1 != 0) { in vfs_domount_first()
990 error1, error); in vfs_domount_first()
993 error = error1; in vfs_domount_first()
H A Dkern_umtx.c2691 int error, error1, rv; in do_rw_rdlock() local
2849 error1 = thread_check_susp(td, false); in do_rw_rdlock()
2850 if (error1 != 0) { in do_rw_rdlock()
2852 error = error1; in do_rw_rdlock()
2877 int error, error1, rv; in do_rw_wrlock() local
3033 error1 = thread_check_susp(td, false); in do_rw_wrlock()
3039 if (error1 != 0) { in do_rw_wrlock()
3041 error = error1; in do_rw_wrlock()
H A Dsubr_bus.c3891 int error, error1; in bus_helper_reset_post() local
3896 error1 = (flags & DEVF_RESET_DETACH) != 0 ? in bus_helper_reset_post()
3899 if (error == 0 && error1 != 0) in bus_helper_reset_post()
3900 error = error1; in bus_helper_reset_post()
H A Dkern_sig.c3739 int error, error1, locked; in coredump() local
3858 error1 = vn_close(vp, FWRITE, cred, td); in coredump()
3860 error = error1; in coredump()
/f-stack/freebsd/x86/iommu/
H A Dintel_ctx.c243 int error, error1; in domain_init_rmrr() local
285 error1 = iommu_gas_map_region(DOM2IODOM(domain), entry, in domain_init_rmrr()
294 if (error1 == 0 && entry->end != entry->start) { in domain_init_rmrr()
300 if (error1 != 0) { in domain_init_rmrr()
307 error1); in domain_init_rmrr()
308 error = error1; in domain_init_rmrr()
/f-stack/dpdk/drivers/net/ice/
H A Dice_switch_filter.c1524 goto error1; in ice_switch_parse_action()
1569 error1: in ice_switch_parse_action()