Searched refs:KBps (Results 1 - 12 of 12) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/qt/
H A Dspeed.h25 double KBps( ) const;
28 static Speed fromKBps( double KBps );
H A Dformatter.cc79 Speed :: KBps( ) const function in class:Speed
85 Speed :: fromKBps( double KBps )
87 return int( KBps * speed_K );
129 tr_formatter_speed_KBps( buf, speed.KBps( ), sizeof( buf ) );
H A Ddetails.cc719 setIfIdle( mySingleDownSpin, int(tor->downloadLimit().KBps()) );
720 setIfIdle( mySingleUpSpin, int(tor->uploadLimit().KBps()) );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/gtk/
H A Dtr-icon.c62 double KBps; local
74 KBps = tr_sessionGetRawSpeed_KBps( session, TR_UP );
75 if( KBps < 0.001 )
78 tr_formatter_speed_KBps( up, KBps, sizeof( up ) );
90 KBps = tr_sessionGetRawSpeed_KBps( session, TR_DOWN );
91 if( KBps < 0.001 )
94 tr_formatter_speed_KBps( down, KBps, sizeof( down ) );
H A Dtr-window.c400 const int KBps = GPOINTER_TO_INT( g_object_get_data( o, SPEED_KEY ) ); local
404 gtr_core_set_pref_int( p->core, key, KBps );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dsession.h305 toSpeedBytes ( unsigned int KBps ) { return KBps * tr_speed_K; }
H A Dutils.h552 /* format a speed from KBps into a user-readable string. */
553 char* tr_formatter_speed_KBps( char * buf, double KBps, size_t buflen );
H A Dtransmission.h655 void tr_sessionSetSpeedLimit_KBps ( tr_session *, tr_direction, unsigned int KBps );
1230 void tr_torrentSetSpeedLimit_KBps ( tr_torrent *, tr_direction, unsigned int KBps );
H A Dsession.c1409 tr_sessionSetSpeedLimit_KBps( tr_session * s, tr_direction d, unsigned int KBps )
1411 tr_sessionSetSpeedLimit_Bps( s, d, toSpeedBytes( KBps ) );
1465 tr_sessionSetAltSpeed_KBps( tr_session * s, tr_direction d, unsigned int KBps )
1467 tr_sessionSetAltSpeed_Bps( s, d, toSpeedBytes( KBps ) );
H A Dutils.c1782 tr_formatter_speed_KBps( char * buf, double KBps, size_t buflen ) argument
1785 double speed = KBps;
H A Dtorrent.c185 tr_torrentSetSpeedLimit_KBps( tr_torrent * tor, tr_direction dir, unsigned int KBps )
187 tr_torrentSetSpeedLimit_Bps( tor, dir, toSpeedBytes( KBps ) );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/web/javascript/
H A Dformatter.js167 speed: function(KBps)
169 var speed = KBps;
171 if (speed <= 999.95) // 0 KBps to 999 K

Completed in 70 milliseconds