Home
last modified time | relevance | path

Searched refs:uerror (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/libpcap/
H A Dpcap-dlpi.c952 int uerror; local
966 if (dlbindack(fd, (char *)buf, ebuf, &uerror) >= 0)
971 if (uerror != EBUSY) {
1006 int uerror; local
1014 p->errbuf, &uerror);
1019 (uerror == EPERM) ? "EPERM" : "EACCES");
1177 recv_ack(int fd, int size, const char *what, char *bufp, char *ebuf, int *uerror) argument
1189 if (uerror != NULL)
1190 *uerror = 0;
1219 if (uerror != NULL)
[all …]
/freebsd/sys/dev/usb/wlan/
H A Dif_rum.c935 usb_error_t uerror; in rum_set_power_state() local
942 uerror = rum_do_mcu_request(sc, in rum_set_power_state()
944 if (uerror != USB_ERR_NORMAL_COMPLETION) { in rum_set_power_state()
947 __func__, usbd_errstr(uerror)); in rum_set_power_state()
966 usb_error_t uerror; in rum_newstate() local
1042 uerror = rum_setbits(sc, RT2573_MAC_CSR11, RT2573_AUTO_WAKEUP); in rum_newstate()
1043 if (uerror != USB_ERR_NORMAL_COMPLETION) { in rum_newstate()
1048 uerror = rum_setbits(sc, RT2573_TXRX_CSR4, RT2573_ACKCTS_PWRMGT); in rum_newstate()
1049 if (uerror != USB_ERR_NORMAL_COMPLETION) { in rum_newstate()
1058 __func__, usbd_errstr(uerror)); in rum_newstate()
[all …]
/freebsd/sys/fs/unionfs/
H A Dunion_vnops.c91 int error, uerror, lerror; in unionfs_lookup() local
94 error = uerror = lerror = ENOENT; in unionfs_lookup()
260 uerror = VOP_LOOKUP(udvp, &uvp, cnp); in unionfs_lookup()
268 if (uerror == 0) { in unionfs_lookup()
276 error = uerror; in unionfs_lookup()
283 if ((uerror == ENOENT || uerror == EJUSTRETURN) && in unionfs_lookup()
306 error = (udvp != NULLVP ? uerror : lerror); in unionfs_lookup()
321 if (uerror != 0 && uerror != EJUSTRETURN && udvp != NULLVP && in unionfs_lookup()
365 error = uerror; in unionfs_lookup()
/freebsd/contrib/atf/atf-c/detail/
H A Dfs_test.c622 int uerror; in ATF_TC_BODY() member
680 const int experr = atf_user_is_root() ? t->rerror : t->uerror; in ATF_TC_BODY()