Lines Matching refs:_x
459 #define TEST_AND_RETURN_FALSE_ERRNO(_x) \ argument
461 bool _success = static_cast<bool>(_x); \
465 LOG(ERROR) << #_x " failed: " << _msg; \
470 #define TEST_AND_RETURN_FALSE(_x) \ argument
472 bool _success = static_cast<bool>(_x); \
474 LOG(ERROR) << #_x " failed."; \
479 #define TEST_AND_RETURN_ERRNO(_x) \ argument
481 bool _success = static_cast<bool>(_x); \
485 LOG(ERROR) << #_x " failed: " << _msg; \
490 #define TEST_AND_RETURN(_x) \ argument
492 bool _success = static_cast<bool>(_x); \
494 LOG(ERROR) << #_x " failed."; \
499 #define TEST_AND_RETURN_FALSE_ERRCODE(_x) \ argument
501 errcode_t _error = (_x); \
504 LOG(ERROR) << #_x " failed: " << _error; \