Lines Matching refs:_resp
75 QDict *_resp; \
78 _resp = do_query(qts, cpu_type, fmt, ##__VA_ARGS__); \
79 g_assert(_resp); \
80 _error = resp_get_error(_resp); \
83 qobject_unref(_resp); \
132 QDict *_resp = do_query_no_props(qts, cpu_type); \
133 g_assert(_resp); \
134 g_assert(resp_has_props(_resp)); \
135 g_assert(qdict_get(resp_get_props(_resp), feature)); \
136 qobject_unref(_resp); \
141 QDict *_resp = do_query_no_props(qts, cpu_type); \
142 g_assert(_resp); \
143 g_assert(!resp_has_props(_resp) || \
144 !qdict_get(resp_get_props(_resp), feature)); \
145 qobject_unref(_resp); \
152 g_assert(_resp); \
153 g_assert(resp_has_props(_resp)); \
154 _props = resp_get_props(_resp); \
161 QDict *_resp; \
163 _resp = do_query_no_props(qts, cpu_type); \
164 g_assert(_resp); \
165 resp_assert_feature(_resp, feature, expected_value); \
166 qobject_unref(_resp); \
172 QDict *_resp; \
174 _resp = do_query(qts, cpu_type, _fmt, feature); \
175 g_assert(_resp); \
176 resp_assert_feature(_resp, feature, value); \
177 qobject_unref(_resp); \
258 QDict *_resp = do_query(qts, cpu_type, fmt, ##__VA_ARGS__); \
259 g_assert(_resp); \
260 g_assert(resp_has_props(_resp)); \
261 g_assert(resp_get_sve_vls(_resp) == expected_vls); \
262 qobject_unref(_resp); \