Searched refs:Torrent (Results 1 - 25 of 41) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/macosx/
H A DPiecesView.h27 @class Torrent;
35 Torrent * fTorrent;
39 - (void) setTorrent: (Torrent *) torrent;
H A DTrackerTableView.h27 @class Torrent;
32 Torrent * fTorrent;
36 - (void) setTorrent: (Torrent *) torrent;
H A DBadger.h28 @class Torrent;
40 - (void) addCompletedTorrent: (Torrent *) torrent;
41 - (void) removeTorrent: (Torrent *) torrent;
H A DTrackerNode.h28 @class Torrent;
34 Torrent * fTorrent;
37 @property (nonatomic, readonly) Torrent * torrent;
39 - (id) initWithTrackerStat: (tr_tracker_stat *) stat torrent: (Torrent *) torrent;
H A DFileOutlineController.h27 @class Torrent;
32 Torrent * fTorrent;
42 - (void) setTorrent: (Torrent *) torrent;
H A DAddMagnetWindowController.h28 @class Torrent;
46 Torrent * fTorrent;
52 - (id) initWithTorrent: (Torrent *) torrent destination: (NSString *) path controller: (Controller *) controller;
54 - (Torrent *) torrent;
H A DFileOutlineView.h27 @class Torrent;
H A DFileListNode.h27 @class Torrent;
37 Torrent * fTorrent;
46 @property (nonatomic, readonly) Torrent * torrent;
52 - (id) initWithFolderName: (NSString *) name path: (NSString *) path torrent: (Torrent *) torrent;
53 - (id) initWithFileName: (NSString *) name path: (NSString *) path size: (uint64_t) size index: (NSUInteger) index torrent: (Torrent *) torrent;
H A DAddWindowController.h29 @class Torrent;
47 Torrent * fTorrent;
57 - (id) initWithTorrent: (Torrent *) torrent destination: (NSString *) path lockDestination: (BOOL) lockDestination
61 - (Torrent *) torrent;
H A DInfoTrackersViewController.h28 @class Torrent;
H A DTorrentTableView.h29 @class Torrent;
51 Torrent * fMenuTorrent;
78 - (void) toggleControlForTorrent: (Torrent *) torrent;
H A DGroupsController.h27 @class Torrent;
68 - (NSInteger) groupIndexForTorrent: (Torrent *) torrent;
H A DInfoActivityViewController.h29 @class Torrent;
H A DController.h39 @class Torrent;
196 - (Torrent *) torrentForHash: (NSString *) hash;
271 - (void) rpcRemoveTorrent: (Torrent *) torrent;
272 - (void) rpcRemoveTorrentDeleteData: (Torrent *) torrent;
273 - (void) rpcStartedStoppedTorrent: (Torrent *) torrent;
274 - (void) rpcChangedTorrent: (Torrent *) torrent;
275 - (void) rpcMovedTorrent: (Torrent *) torrent;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/web/javascript/
H A Dtorrent.js8 function Torrent(data) class
19 // Torrent.fields.status
20 Torrent._StatusStopped = 0;
21 Torrent._StatusCheckWait = 1;
22 Torrent._StatusCheck = 2;
23 Torrent._StatusDownloadWait = 3;
24 Torrent._StatusDownload = 4;
25 Torrent._StatusSeedWait = 5;
26 Torrent._StatusSeed = 6;
28 // Torrent
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/qt/
H A Dtorrent-delegate-min.h22 class Torrent;
29 virtual QSize sizeHint( const QStyleOptionViewItem&, const Torrent& ) const;
30 void drawTorrent( QPainter* painter, const QStyleOptionViewItem& option, const Torrent& ) const;
H A Dtorrent-delegate.h23 class Torrent;
37 QString statusString( const Torrent& tor ) const;
38 QString progressString( const Torrent& tor ) const;
39 QString shortStatusString( const Torrent& tor ) const;
40 QString shortTransferString( const Torrent& tor ) const;
44 virtual QSize sizeHint( const QStyleOptionViewItem&, const Torrent& ) const;
45 virtual void setProgressBarPercentDone( const QStyleOptionViewItem& option, const Torrent& ) const;
46 virtual void drawTorrent( QPainter* painter, const QStyleOptionViewItem& option, const Torrent& ) const;
H A Dtorrent-model.h37 typedef QMap<int,Torrent*> id_to_torrent_t;
38 typedef QVector<Torrent*> torrents_t;
52 Torrent* getTorrentFromId( int id );
53 const Torrent* getTorrentFromId( int id ) const;
57 void addTorrent( Torrent * );
H A Dtorrent-filter.h25 class Torrent;
47 bool activityFilterAcceptsTorrent( const Torrent * tor, const FilterMode& mode ) const;
48 bool trackerFilterAcceptsTorrent( const Torrent * tor, const QString& tracker ) const;
H A Dtorrent-model.cc27 foreach( Torrent * tor, myTorrents ) delete tor;
48 const Torrent* t = myTorrents.at( row );
77 TorrentModel :: addTorrent( Torrent * t )
98 Torrent*
105 const Torrent*
141 QList<Torrent*> newTorrents;
158 Torrent * tor = getTorrentFromId( id );
161 tor = new Torrent( myPrefs, id );
190 foreach( Torrent * tor, newTorrents ) {
215 Torrent * to
[all...]
H A Dtorrent.cc35 Torrent :: Torrent( Prefs& prefs, int id ): function in class:Torrent
46 Torrent :: ~Torrent( )
54 Torrent :: Property
55 Torrent :: myProperties[] =
115 Torrent :: KeyList
116 Torrent :: buildKeyList( Group group )
128 const Torrent :: KeyList&
129 Torrent
[all...]
H A Dtorrent-filter.cc83 const Torrent * a = sourceModel()->data( left, TorrentModel::TorrentRole ).value<const Torrent*>();
84 const Torrent * b = sourceModel()->data( right, TorrentModel::TorrentRole ).value<const Torrent*>();
135 TorrentFilter :: trackerFilterAcceptsTorrent( const Torrent * tor, const QString& tracker ) const
141 TorrentFilter :: activityFilterAcceptsTorrent( const Torrent * tor, const FilterMode& m ) const
180 const Torrent * tor = childIndex.model()->data( childIndex, TorrentModel::TorrentRole ).value<const Torrent*>();
217 const Torrent * tor = index.data( TorrentModel::TorrentRole ).value<const Torrent*>();
[all...]
H A Drelocate.h23 class Torrent;
H A Dtorrent.h113 class Torrent: public QObject class in inherits:QObject
182 Torrent( Prefs&, int id );
183 virtual ~Torrent( );
273 int compareTracker( const Torrent& ) const;
274 int compareSeedRatio( const Torrent& ) const;
275 int compareRatio( const Torrent& ) const;
276 int compareETA( const Torrent& ) const;
344 Q_DECLARE_METATYPE(const Torrent*)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dpeer-mgr.c225 Torrent; typedef in typeref:struct:tr_torrent_peers
266 torrentLock( Torrent * torrent )
272 torrentUnlock( Torrent * torrent )
278 torrentIsLocked( const Torrent * t )
338 static Torrent*
354 getExistingAtom( const Torrent * t,
357 Torrent * tt = (Torrent*)t;
363 peerIsInUse( const Torrent * ct, const struct peer_atom * atom )
365 Torrent *
[all...]

Completed in 138 milliseconds

12