Lines Matching refs:_x
397 #define TEST_AND_RETURN_FALSE_ERRNO(_x) \ argument
399 bool _success = static_cast<bool>(_x); \
403 LOG(ERROR) << #_x " failed: " << _msg; \
408 #define TEST_AND_RETURN_FALSE(_x) \ argument
410 bool _success = static_cast<bool>(_x); \
412 LOG(ERROR) << #_x " failed."; \
417 #define TEST_AND_RETURN_ERRNO(_x) \ argument
419 bool _success = static_cast<bool>(_x); \
423 LOG(ERROR) << #_x " failed: " << _msg; \
428 #define TEST_AND_RETURN(_x) \ argument
430 bool _success = static_cast<bool>(_x); \
432 LOG(ERROR) << #_x " failed."; \
437 #define TEST_AND_RETURN_FALSE_ERRCODE(_x) \ argument
439 errcode_t _error = (_x); \
442 LOG(ERROR) << #_x " failed: " << _error; \