search for: g_main_loop_unref

Displaying 8 results from an estimated 8 matches for "g_main_loop_unref".

2007 Aug 02
1
player/swfplay.c
player/swfplay.c | 36 +++++++++++++++++++++++++----------- 1 files changed, 25 insertions(+), 11 deletions(-) New commits: diff-tree ba4f1da69d0c74c45b0b4d92330f2203d258bb49 (from 3398ec3ae1d036d76054f7ddec170dc158e47079) Author: Benjamin Otte <otte at gnome.org> Date: Thu Aug 2 11:54:25 2007 +0200 make swfplay open normal files again and not require complete URLs diff --git
2007 Aug 24
0
2 commits - player/swfplay.c
...); if (trace) g_signal_connect (player, "trace", G_CALLBACK (print_trace), NULL); @@ -171,9 +171,11 @@ main (int argc, char *argv[]) swfdec_gtk_player_set_playing (SWFDEC_GTK_PLAYER (player), TRUE); - gtk_main (); + g_main_loop_run (loop); g_object_unref (player); + g_main_loop_unref (loop); + loop = NULL; player = NULL; return 0; }
2007 Aug 16
0
Branch 'vivi' - 18 commits - configure.ac doc/swfdec-sections.txt libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_types.h libswfdec/swfdec_player.c vivified/core vivified/ui
.../core/vivi_debugger.c @@ -76,9 +76,7 @@ vivi_debugger_break (ViviDebugger *debug g_object_notify (G_OBJECT (app), "interrupted"); vivi_application_check (app); - g_print (">>>\n"); g_main_loop_run (app->loop); - g_print ("<<<\n"); g_main_loop_unref (app->loop); app->loop = NULL; diff-tree 46e54f2e89bcf81b9137cdba219d7322ee7055ad (from 19febb579adabc379bbb078c28d1afabf217dd38) Author: Benjamin Otte <otte at gnome.org> Date: Thu Aug 16 21:26:20 2007 +0200 add backtrace function diff --git a/vivified/core/vivi_initialize.a...
2007 Aug 14
0
Branch 'vivi' - 11 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/Makefile.am libswfdec/swfdec.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h vivified/core
...reak (ViviDebugger *debugger) +{ + ViviApplication *app = debugger->app; + + g_assert (app); + swfdec_player_unlock_soft (app->player); + + app->playback_state = 0; + app->playback_count = 0; + app->loop = g_main_loop_new (NULL, FALSE); + + g_main_loop_run (app->loop); + + g_main_loop_unref (app->loop); + app->loop = NULL; + swfdec_player_lock_soft (app->player); +} + +static void +vivi_debugger_step (SwfdecAsDebugger *debugger, SwfdecAsContext *context) +{ + gboolean retval = FALSE; + + g_signal_emit (debugger, signals[STEP], 0, &retval); + + if (retval) + vivi_d...
2020 Sep 25
20
[RFC PATCH 00/19] vhost-user-rpmb (Replay Protected Memory Block)
Hi, This is an initial implementation of a vhost-user backend for the VirtIO RPMB device. The device is currently in the draft of the next VirtIO specification and describes block device which uses combination of a key, nonce, hashing and a persistent write counter to prevent replay attacks (hence Replay Protected Memory Block). It is implemented as a vhost-user device because we want to
2007 Aug 16
0
Branch 'vivi' - 23 commits - libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_as_super.c libswfdec/swfdec_as_with.c libswfdec/swfdec_movie.c libswfdec/swfdec_net_stream.c libswfdec/swfdec_sprite_movie.c test/trace vivified/core
...ed/core/vivi_debugger.c @@ -72,11 +72,13 @@ vivi_debugger_break (ViviDebugger *debug app->playback_state = 0; app->playback_count = 0; app->loop = g_main_loop_new (NULL, FALSE); + g_object_notify (G_OBJECT (app), "interrupted"); g_main_loop_run (app->loop); g_main_loop_unref (app->loop); app->loop = NULL; + g_object_notify (G_OBJECT (app), "interrupted"); swfdec_player_lock_soft (app->player); } diff-tree dfa2a625eb1c2f036a30220c4606a8c010786272 (from af9936023a852946d0c23048d7d3195b757a7cdb) Author: Benjamin Otte <otte at gnome.org>...
2007 Aug 22
0
163 commits - autogen.sh configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_source.c libswfdec/Makefile.am libswfdec/swfdec_as_array.c
.../core/vivi_debugger.c @@ -76,9 +76,7 @@ vivi_debugger_break (ViviDebugger *debug g_object_notify (G_OBJECT (app), "interrupted"); vivi_application_check (app); - g_print (">>>\n"); g_main_loop_run (app->loop); - g_print ("<<<\n"); g_main_loop_unref (app->loop); app->loop = NULL; diff-tree 46e54f2e89bcf81b9137cdba219d7322ee7055ad (from 19febb579adabc379bbb078c28d1afabf217dd38) Author: Benjamin Otte <otte at gnome.org> Date: Thu Aug 16 21:26:20 2007 +0200 add backtrace function diff --git a/vivified/core/vivi_initialize.a...
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...erver = soup_socket_new ("non-blocking", TRUE, NULL); + soup_socket_listen (server, address); + g_signal_connect (server, "new-connection", G_CALLBACK (new_connection), NULL); + g_object_unref (address); + + loop = g_main_loop_new (NULL, FALSE); + g_main_loop_run (loop); + g_main_loop_unref (loop); + + return 0; +} +