• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/gtk/

Lines Matching refs:TrCore

36 #define TR_CORE(o)   (G_TYPE_CHECK_INSTANCE_CAST ((o), TR_CORE_TYPE, TrCore))
45 TrCore;
58 void (* add_error) (TrCore*, enum tr_core_err, const char * name);
59 void (* add_prompt) (TrCore*, gpointer ctor);
60 void (* blocklist_updated) (TrCore*, int ruleCount );
61 void (* busy) (TrCore*, gboolean is_busy);
62 void (* prefs_changed) (TrCore*, const char* key);
63 void (* port_tested) (TrCore*, gboolean is_open);
64 void (* quit) (TrCore*);
70 TrCore * gtr_core_new( tr_session * );
72 void gtr_core_close( TrCore* );
75 GtkTreeModel * gtr_core_model( TrCore * self );
77 void gtr_core_clear( TrCore * self );
79 tr_session * gtr_core_session( TrCore * self );
81 size_t gtr_core_get_active_torrent_count( TrCore * self );
83 size_t gtr_core_get_torrent_count( TrCore * self );
85 tr_torrent * gtr_core_find_torrent( TrCore * core, int id );
87 void gtr_core_pref_changed( TrCore * core, const char * key );
98 void gtr_core_load( TrCore * self, gboolean forcepaused );
107 void gtr_core_add_files( TrCore * core,
114 bool gtr_core_add_from_url( TrCore * core, const char * url );
118 void gtr_core_add_ctor( TrCore * core, tr_ctor * ctor );
121 void gtr_core_add_torrent( TrCore*, tr_torrent*, gboolean do_notify );
127 void gtr_core_torrents_added( TrCore * self );
134 void gtr_core_remove_torrent( TrCore * self, int id, gboolean delete_files );
137 void gtr_core_update( TrCore * self );
143 void gtr_core_set_pref ( TrCore * self, const char * key, const char * val );
144 void gtr_core_set_pref_bool ( TrCore * self, const char * key, gboolean val );
145 void gtr_core_set_pref_int ( TrCore * self, const char * key, int val );
146 void gtr_core_set_pref_double( TrCore * self, const char * key, double val );
152 void gtr_core_port_test( TrCore * core );
154 void gtr_core_blocklist_update( TrCore * core );
156 void gtr_core_exec( TrCore * core, const tr_benc * benc );
158 void gtr_core_exec_json( TrCore * core, const char * json );
160 void gtr_core_open_folder( TrCore * core, int torrent_id );