Searched refs:InstanceType (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/include/qom/ |
H A D | object.h | 175 #define DECLARE_INSTANCE_CHECKER(InstanceType, OBJ_NAME, TYPENAME) \ argument 176 static inline G_GNUC_UNUSED InstanceType * \ 178 { return OBJECT_CHECK(InstanceType, obj, TYPENAME); } 214 #define DECLARE_OBJ_CHECKERS(InstanceType, ClassType, OBJ_NAME, TYPENAME) \ argument 215 DECLARE_INSTANCE_CHECKER(InstanceType, OBJ_NAME, TYPENAME) \ 233 #define OBJECT_DECLARE_TYPE(InstanceType, ClassType, MODULE_OBJ_NAME) \ argument 234 typedef struct InstanceType InstanceType; \ 237 G_DEFINE_AUTOPTR_CLEANUP_FUNC(InstanceType, object_unref) \ 239 DECLARE_OBJ_CHECKERS(InstanceType, ClassType, \ 253 #define OBJECT_DECLARE_SIMPLE_TYPE(InstanceType, MODULE_OBJ_NAME) \ argument [all …]
|