Lines Matching refs:_x
394 #define TEST_AND_RETURN_FALSE_ERRNO(_x) \ argument
396 bool _success = static_cast<bool>(_x); \
400 LOG(ERROR) << #_x " failed: " << _msg; \
405 #define TEST_AND_RETURN_FALSE(_x) \ argument
407 bool _success = static_cast<bool>(_x); \
409 LOG(ERROR) << #_x " failed."; \
414 #define TEST_AND_RETURN_ERRNO(_x) \ argument
416 bool _success = static_cast<bool>(_x); \
420 LOG(ERROR) << #_x " failed: " << _msg; \
425 #define TEST_AND_RETURN(_x) \ argument
427 bool _success = static_cast<bool>(_x); \
429 LOG(ERROR) << #_x " failed."; \
434 #define TEST_AND_RETURN_FALSE_ERRCODE(_x) \ argument
436 errcode_t _error = (_x); \
439 LOG(ERROR) << #_x " failed: " << _error; \