BStopWatch
class BStopWatch {
BStopWatch(const char* name, bool silent = false);
virtual ~BStopWatch();
BStopWatch watch("PackageIconTarRepository::Init", true);
BStopWatch stopWatch("process", true);
BStopWatch stopWatch("download", true);
BStopWatch stopWatch("process local data", true);
BStopWatch watch("ServerPkgDataUpdateProcess::ProcessLocalData", true);
BStopWatch stopWatch("adopt_model", true);
fStopWatch = new BStopWatch("Filter Time");
BStopWatch* fStopWatch;
BStopWatch::Reset()
BStopWatch::Name() const
void BStopWatch::_ReservedStopWatch1() {}
void BStopWatch::_ReservedStopWatch2() {}
BStopWatch::BStopWatch(const char *name, bool silent)
BStopWatch::~BStopWatch()
BStopWatch::Suspend()
BStopWatch::Resume()
BStopWatch::Lap()
BStopWatch::ElapsedTime() const
BStopWatch watch("", true);
BStopWatch watch;
BStopWatch stopWatch("printJob", !MEASURE_PRINT_JOB_TIME);
BStopWatch* stopWatch = NULL;
stopWatch = new BStopWatch("PPDParser");
BStopWatch watch("catalogSpeed", true);
BStopWatch watch("catalogSpeed", true);
BStopWatch watch("catalogSpeed", true);
BStopWatch watch("catalogSpeed", true);
BStopWatch watch(name, true);
BStopWatch* watch = new BStopWatch("Cookie insertion");
watch = new BStopWatch("Cookie filtering");
BStopWatch sw("lap2", true);
BStopWatch sw("reset", true);
BStopWatch sw("multi", true);
BStopWatch sw(NULL, true);
BStopWatch sw("mywatch", true);
BStopWatch sw("et", true);
BStopWatch sw("sr", true);
BStopWatch sw("lap", true);
BStopWatch sw("lapoverflow", true);