Searched refs:qbool_from_bool (Results 1 – 11 of 11) sorted by relevance
/openbmc/qemu/tests/unit/ |
H A D | check-qobject.c | 111 g_autoptr(QBool) btrue_0 = qbool_from_bool(true); in qobject_is_equal_bool_test() 112 g_autoptr(QBool) btrue_1 = qbool_from_bool(true); in qobject_is_equal_bool_test() 113 g_autoptr(QBool) bfalse_0 = qbool_from_bool(false); in qobject_is_equal_bool_test() 114 g_autoptr(QBool) bfalse_1 = qbool_from_bool(false); in qobject_is_equal_bool_test() 251 g_autoptr(QBool) bfalse = qbool_from_bool(false); in qobject_is_equal_conversion_test()
|
/openbmc/qemu/scripts/coccinelle/ |
H A D | qobject.cocci | 18 - qdict_put(Obj, Key, qbool_from_bool(E)); 39 - qlist_append(Obj, qbool_from_bool(E));
|
/openbmc/qemu/include/qapi/qmp/ |
H A D | qbool.h | 28 QBool *qbool_from_bool(bool value);
|
/openbmc/qemu/qobject/ |
H A D | qbool.c | 23 QBool *qbool_from_bool(bool value) in qbool_from_bool() function
|
H A D | json-parser.c | 435 return QOBJECT(qbool_from_bool(true)); in parse_keyword() 437 return QOBJECT(qbool_from_bool(false)); in parse_keyword() 455 return QOBJECT(qbool_from_bool(va_arg(*ctxt->ap, int))); in parse_interpolation()
|
H A D | qlit.c | 119 return QOBJECT(qbool_from_bool(qlit->value.qbool)); in qobject_from_qlit()
|
H A D | qlist.c | 74 qlist_append(qlist, qbool_from_bool(value)); in qlist_append_bool()
|
H A D | qdict.c | 141 qdict_put(qdict, key, qbool_from_bool(value)); in qdict_put_bool()
|
/openbmc/qemu/target/riscv/ |
H A D | riscv-qmp-cmds.c | 111 value = QOBJECT(qbool_from_bool(flag_val)); in riscv_obj_add_named_feats_qdict() 124 value = QOBJECT(qbool_from_bool(profile->enabled)); in riscv_obj_add_profiles_qdict()
|
/openbmc/qemu/qapi/ |
H A D | qobject-output-visitor.c | 171 qobject_output_add(qov, name, qbool_from_bool(*obj)); in qobject_output_type_bool()
|
/openbmc/qemu/qom/ |
H A D | object.c | 1524 QBool *qbool = qbool_from_bool(value); in object_property_set_bool() 1607 object_property_set_default(prop, QOBJECT(qbool_from_bool(value))); in object_property_set_default_bool()
|