Home
last modified time | relevance | path

Searched refs:LOGDB (Results 1 – 19 of 19) sorted by path

/dports/comms/xlog/xlog-2.0.22/src/
H A Dgui_importdialog.c162 LOGDB *lp; in on_wizard_close_clicked()
H A Dgui_mergedialog.c94 LOGDB *lp1, *lp2; in on_menu_merge_activate()
H A Dgui_newlogdialog.c89 LOGDB *lp; in on_menu_new_activate()
H A Dgui_openlogdialog.c70 LOGDB *lp; in on_menu_open_activate()
H A Dlog.c104 fillin_list (LOGDB * handle, qso_t q[], gpointer arg) in fillin_list()
306 openlogwindow (LOGDB * lp, gchar * name, gint page) in openlogwindow()
457 LOGDB *lp; in savelog()
H A Dlog.h47 gint fillin_list (LOGDB * handle, qso_t q[], gpointer arg);
48 logtype *openlogwindow (LOGDB * lp, gchar * name, gint page);
H A Dmain.c212 LOGDB *lp = NULL; in main()
/dports/comms/xlog/xlog-2.0.22/src/logfile/
H A Dadif3.c56 (LOGDB *handle, gint (*fn)(LOGDB*, qso_t*, gpointer arg), gpointer arg) in adif_qso_foreach() argument
292 gint adif_open(LOGDB *handle) in adif_open()
312 gint adif_create(LOGDB *handle) in adif_create()
348 void adif_close(LOGDB *handle) in adif_close()
396 gint adif_qso_append(LOGDB *handle, const qso_t *q) in adif_qso_append()
H A Dadif3.h40 static LOGDB *adif_handle;
41 static gint (*adif_fn)(LOGDB*, qso_t*, gpointer);
46 static gint adif_open(LOGDB*);
47 static void adif_close(LOGDB*);
48 static gint adif_create(LOGDB*);
49 static gint adif_qso_append(LOGDB*, const qso_t*);
50 static gint adif_qso_foreach(LOGDB*, gint (*fn)(LOGDB*, qso_t*, gpointer), gpointer);
H A Dcabrillo3.c66 static gint cabrillo3_open (LOGDB *);
67 static void cabrillo3_close (LOGDB *);
68 static gint cabrillo3_create (LOGDB *);
69 static gint cabrillo3_qso_append (LOGDB *, const qso_t *);
70 static gint cabrillo3_qso_foreach (LOGDB *, gint (*fn) (LOGDB *, qso_t *, gpointer arg), gpointer a…
87 cabrillo3_open (LOGDB * handle) in cabrillo3_open()
111 cabrillo3_create (LOGDB * handle) in cabrillo3_create()
156 cabrillo3_close (LOGDB * handle) in cabrillo3_close()
172 cabrillo3_qso_append (LOGDB * handle, const qso_t * q) in cabrillo3_qso_append()
311 cabrillo3_qso_foreach (LOGDB * handle, in cabrillo3_qso_foreach() argument
[all …]
H A Dedi.c69 static gint edi_open (LOGDB *);
70 static void edi_close (LOGDB *);
71 static gint edi_create (LOGDB *);
72 static gint edi_qso_append (LOGDB *, const qso_t *);
73 static gint edi_qso_foreach (LOGDB *,
74 gint (*fn) (LOGDB *, qso_t *, gpointer arg), gpointer arg);
91 edi_open (LOGDB * handle) in edi_open()
111 edi_create (LOGDB * handle) in edi_create()
157 edi_close (LOGDB * handle) in edi_close()
166 edi_qso_append (LOGDB * handle, const qso_t * q) in edi_qso_append()
[all …]
H A Deditest.c57 static gint editest_open (LOGDB *);
58 static void editest_close (LOGDB *);
59 static gint editest_create (LOGDB *);
61 static gint editest_qso_foreach (LOGDB *,
62 gint (*fn) (LOGDB *, qso_t *, gpointer arg),
80 editest_open (LOGDB * handle) in editest_open()
100 editest_create (LOGDB * handle) in editest_create()
112 editest_close (LOGDB * handle) in editest_close()
121 editest_qso_append (LOGDB * handle, const qso_t * q) in editest_qso_append()
198 editest_qso_foreach (LOGDB * handle, in editest_qso_foreach() argument
[all …]
H A Dflog.c44 static gint flog_open (LOGDB *);
45 static void flog_close (LOGDB *);
46 static gint flog_create (LOGDB *);
47 static gint flog_qso_append (LOGDB *, const qso_t *);
49 (LOGDB *, gint (*fn) (LOGDB *, qso_t *, gpointer arg), gpointer arg);
64 flog_open (LOGDB * handle) in flog_open()
142 flog_create (LOGDB * handle) in flog_create()
167 flog_close (LOGDB * handle) in flog_close()
174 flog_qso_append (LOGDB * handle, const qso_t * q) in flog_qso_append()
191 flog_qso_foreach (LOGDB * handle, gint (*fn) (LOGDB *, qso_t *, gpointer arg), in flog_qso_foreach() argument
H A Dlabels.c49 static gint labels_open (LOGDB *);
50 static void labels_close (LOGDB *);
51 static gint labels_create (LOGDB *);
52 static gint labels_qso_append (LOGDB *, const qso_t *);
53 static gint labels_qso_foreach (LOGDB *,
54 gint (*fn) (LOGDB *, qso_t *, gpointer arg), gpointer arg);
78 labels_open (LOGDB * handle) in labels_open()
101 labels_create (LOGDB * handle) in labels_create()
120 labels_close (LOGDB * handle) in labels_close()
133 labels_qso_append (LOGDB * handle, const qso_t * q) in labels_qso_append()
[all …]
H A Dlogfile.c49 LOGDB *
52 LOGDB *handle; in log_file_open()
54 handle = (LOGDB *) g_malloc (sizeof (LOGDB)); in log_file_open()
103 LOGDB *
108 LOGDB *handle; in log_file_create()
110 handle = (LOGDB *) g_malloc (sizeof (LOGDB)); in log_file_create()
163 log_file_close (LOGDB * handle) in log_file_close()
171 log_file_qso_append (LOGDB * handle, const qso_t * q) in log_file_qso_append()
177 log_file_qso_foreach (LOGDB * handle, in log_file_qso_foreach() argument
178 gint (*fn) (LOGDB *, qso_t *, gpointer arg), gpointer arg) in log_file_qso_foreach()
[all …]
H A Dlogfile.h67 typedef struct log_file LOGDB; typedef
88 gint (*open) (LOGDB *);
89 void (*close) (LOGDB *);
90 gint (*create) (LOGDB *);
92 gint (*delete_column) (LOGDB *, gint pos);
93 gint (*qso_append) (LOGDB *, const qso_t *);
94 gint (*qso_foreach) (LOGDB *, gint (*fn) (LOGDB *, qso_t *, gpointer arg), gpointer arg);
114 void log_file_close (LOGDB *);
116 gint log_file_delete_column (LOGDB *, gint pos);
117 gint log_file_qso_append (LOGDB *, const qso_t *);
[all …]
H A Doh1aa.c52 static gint oh1aa_open (LOGDB *);
53 static void oh1aa_close (LOGDB *);
54 static gint oh1aa_qso_foreach (LOGDB *, gint (*fn) (LOGDB *, qso_t *, gpointer arg), gpointer arg);
69 oh1aa_open (LOGDB * handle) in oh1aa_open()
86 oh1aa_close (LOGDB * handle) in oh1aa_close()
96 (LOGDB * handle, gint (*fn) (LOGDB *, qso_t *, gpointer arg), gpointer arg) in oh1aa_qso_foreach()
H A Dtrlog.c53 static gint trlog_open (LOGDB *);
54 static void trlog_close (LOGDB *);
55 static gint trlog_create (LOGDB *);
56 static gint trlog_qso_append (LOGDB *, const qso_t *);
57 static gint trlog_qso_foreach (LOGDB *, gint (*fn) (LOGDB *, qso_t *, gpointer arg), gpointer arg);
74 trlog_open (LOGDB * handle) in trlog_open()
94 trlog_create (LOGDB * handle) in trlog_create()
105 trlog_close (LOGDB * handle) in trlog_close()
116 trlog_qso_append (LOGDB * handle, const qso_t * q) in trlog_qso_append()
144 (LOGDB * handle, gint (*fn) (LOGDB *, qso_t *, gpointer arg), gpointer arg) in trlog_qso_foreach()
H A Dtwlog.c43 static gint twlog_open (LOGDB *);
44 static void twlog_close (LOGDB *);
45 static gint twlog_create (LOGDB *);
46 static gint twlog_qso_append (LOGDB *, const qso_t *);
47 static gint twlog_qso_foreach (LOGDB *,
48 gint (*fn) (LOGDB *, qso_t *, gpointer arg),
66 twlog_open (LOGDB * handle) in twlog_open()
88 twlog_create (LOGDB * handle) in twlog_create()
100 twlog_close (LOGDB * handle) in twlog_close()
110 twlog_qso_append (LOGDB * handle, const qso_t * q) in twlog_qso_append()
[all …]