Home
last modified time | relevance | path

Searched refs:post_install_commands (Results 1 – 3 of 3) sorted by relevance

/dports/devel/gnome-builder/gnome-builder-41.3/src/libide/foundry/
H A Dide-config.c44 gchar **post_install_commands; member
324 g_clear_pointer (&priv->post_install_commands, g_strfreev); in ide_config_finalize()
1320 return (const gchar * const *)priv->post_install_commands; in ide_config_get_post_install_commands()
1325 const gchar * const *post_install_commands) in ide_config_set_post_install_commands() argument
1331 if (priv->post_install_commands != (gchar **)post_install_commands) in ide_config_set_post_install_commands()
1333 g_strfreev (priv->post_install_commands); in ide_config_set_post_install_commands()
1334 priv->post_install_commands = g_strdupv ((gchar **)post_install_commands); in ide_config_set_post_install_commands()
H A Dide-config.h159 … const gchar *const *post_install_commands);
H A Dide-pipeline.c1114 const gchar * const *post_install_commands; in register_post_install_commands_stage() local
1120 if (!(post_install_commands = ide_config_get_post_install_commands (self->config))) in register_post_install_commands_stage()
1123 for (guint i = 0; post_install_commands[i]; i++) in register_post_install_commands_stage()
1136 ide_subprocess_launcher_push_argv (launcher, post_install_commands[i]); in register_post_install_commands_stage()