H A D | epoll_io_waiter_mingw.cpp | 29 #define UVERRLOG(call, err) HILOGE(#call " failed because %{public}s", uv_strerror(err)) argument 30 #define UVERR(call, err) { if (err) { UVERRLOG(call, err); } } argument 31 #define UVERRRET(call, err) { if (err) { UVERRLOG(call, err); return; } } argument 32 #define UVERRRETVAL(call, err) { if (err) { UVERRLOG(call, err); return err; } } argument 33 #define UVCALL(call, ...) { if (auto err = call(__VA_ARGS__)) { UVERR(#call, err); } } argument 34 #define UVCALLRET(call, ...) { if (auto err = call(__VA_ARGS__)) { UVERRRET(#call, err); } } argument 35 #define UVCALLRETVAL(call, ...) { if (auto err = call(__VA_ARGS__)) { UVERRRETVAL(#call, err); } } argument
|