search for: n_time

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

Did you mean: _time
2018 Dec 12
2
[PATCH] drop old netinet/in_systm.h include
This header provides only three typedefs: n_long, n_short, and n_time. OpenSSH doesn't use it at all, and the headers it includes don't. So punt this ancient include since it offers nothing useful. --- defines.h | 1 - includes.h | 1 - misc.c | 1 - readconf.c | 1 - servconf.c | 1 - 5 files changed, 5 deletions(-) diff --git a/defines.h b/defines.h...
2007 Aug 13
0
Branch 'vivi' - 2 commits - vivified/core
...ack_state = playback; + app->playback_count = steps; +} + +void +vivi_application_play (ViviApplication *app) +{ + g_return_if_fail (VIVI_IS_APPLICATION (app)); + + vivi_application_set_playback (app, VIVI_APPLICATION_PLAYING, 1); +} + +void +vivi_application_step (ViviApplication *app, guint n_times) +{ + g_return_if_fail (VIVI_IS_APPLICATION (app)); + + vivi_application_set_playback (app, VIVI_APPLICATION_STEPPING, n_times); +} diff-tree 41394382ea0de8a1937d2392baf699e28589f059 (from bd466511d940904f33e8b3553f529e1b2eca5c7d) Author: Benjamin Otte <otte at gnome.org> Date: Fri Aug 1...
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
...if (is_breakpoint) + g_main_loop_quit (app->loop); + break; case VIVI_APPLICATION_STOPPED: if (is_playing) swfdec_gtk_player_set_playing (SWFDEC_GTK_PLAYER (app->player), FALSE); @@ -314,3 +321,13 @@ vivi_application_step (ViviApplication * app->playback_count = n_times; } +void +vivi_application_quit (ViviApplication *app) +{ + g_return_if_fail (VIVI_IS_APPLICATION (app)); + + app->playback_state = VIVI_APPLICATION_EXITING; + app->playback_count = 1; + gtk_main_quit (); +} + diff --git a/vivified/core/vivi_application.h b/vivified/core/vivi_applicat...
2000 Jun 07
1
[PATCH]: Port of openssh-2.1.0p3 to Cygwin environment
...e in file open calls. - Disable some file permission checks for Cygwin to allow working on FAT file systems. - [bsd-daemon.c} When working in daemon mode, let parent process sleep a second to avoid a race condition in Cygwin. - [defines.h] typedef the types `n_short', `n_long' and `n_time' instead of including netinet/in_systm.h for Cygwin. - [includes.h] include getopt.h for Cygwin. Define O_BINARY as far as it's not already defined. - [login.c] Cast -1 to uid_t to avoid compiler warnings. - [packet.c] IPTOS_LOWDELAY and IPTOS_THROUGHPUT are defined in Cygwin bu...
2007 Aug 13
0
Branch 'vivi' - 24 commits - configure.ac libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_tag.c libswfdec/swfdec_tag.h vivified/core vivified/dock vivified/ui
...PLICATION_PLAYING, 1); + app->playback_state = VIVI_APPLICATION_PLAYING; + app->playback_count = 1; } void @@ -248,5 +294,7 @@ vivi_application_step (ViviApplication * { g_return_if_fail (VIVI_IS_APPLICATION (app)); - vivi_application_set_playback (app, VIVI_APPLICATION_STEPPING, n_times); + app->playback_state = VIVI_APPLICATION_STEPPING; + app->playback_count = n_times; } + diff --git a/vivified/core/vivi_application.h b/vivified/core/vivi_application.h index f801c50..d250989 100644 --- a/vivified/core/vivi_application.h +++ b/vivified/core/vivi_application.h @@ -50,6 +...
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
...tion_check (app); } void @@ -311,8 +355,11 @@ vivi_application_step (ViviApplication * { g_return_if_fail (VIVI_IS_APPLICATION (app)); + if (app->playback_state == VIVI_APPLICATION_EXITING) + return; app->playback_state = VIVI_APPLICATION_STEPPING; app->playback_count = n_times; + vivi_application_check (app); } void @@ -320,8 +367,11 @@ vivi_application_quit (ViviApplication * { g_return_if_fail (VIVI_IS_APPLICATION (app)); + if (app->playback_state == VIVI_APPLICATION_EXITING) + return; app->playback_state = VIVI_APPLICATION_EXITING; app->...
2007 Aug 15
0
Branch 'vivi' - 13 commits - doc/swfdec-sections.txt libswfdec/swfdec_as_debugger.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_types.h vivified/core vivified/ui
...ue val; SwfdecAsObject *object; diff --git a/vivified/core/vivi_application.h b/vivified/core/vivi_application.h index d1f0da7..1e0d4c0 100644 --- a/vivified/core/vivi_application.h +++ b/vivified/core/vivi_application.h @@ -89,7 +89,7 @@ void vivi_application_step (ViviAppli guint n_times); void vivi_application_quit (ViviApplication * app); -void vivi_applciation_execute (ViviApplication * app, +void vivi_application_execute (ViviApplication * app, const char * command); G_END_DECLS diff --git a/vivified/core/vivi_function.c b/vivified/core/vivi_function.c i...
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
...tion_check (app); } void @@ -311,8 +355,11 @@ vivi_application_step (ViviApplication * { g_return_if_fail (VIVI_IS_APPLICATION (app)); + if (app->playback_state == VIVI_APPLICATION_EXITING) + return; app->playback_state = VIVI_APPLICATION_STEPPING; app->playback_count = n_times; + vivi_application_check (app); } void @@ -320,8 +367,11 @@ vivi_application_quit (ViviApplication * { g_return_if_fail (VIVI_IS_APPLICATION (app)); + if (app->playback_state == VIVI_APPLICATION_EXITING) + return; app->playback_state = VIVI_APPLICATION_EXITING; app->...