Lines Matching refs:state_hint
55 GVariant *state_hint; member
116 if (simple->state_hint != NULL) in g_simple_action_get_state_hint()
117 return g_variant_ref (simple->state_hint); in g_simple_action_get_state_hint()
336 if (simple->state_hint) in g_simple_action_finalize()
337 g_variant_unref (simple->state_hint); in g_simple_action_finalize()
581 GVariant *state_hint) in g_simple_action_set_state_hint() argument
585 if (simple->state_hint != NULL) in g_simple_action_set_state_hint()
587 g_variant_unref (simple->state_hint); in g_simple_action_set_state_hint()
588 simple->state_hint = NULL; in g_simple_action_set_state_hint()
591 if (state_hint != NULL) in g_simple_action_set_state_hint()
592 simple->state_hint = g_variant_ref (state_hint); in g_simple_action_set_state_hint()