summaryrefslogtreecommitdiffstats
path: root/src/lib/statistics (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [3172] Make more clang++ fixesMukund Sivaraman2013-09-191-4/+0
|
* [3016] 64bit value requires "LL"Kazunori Fujiwara2013-07-171-2/+2
|
* [3016] Counter::Value is changed to uint64_t and auth outputs 63bit of valuesKazunori Fujiwara2013-07-081-1/+3
|
* [3016] added 64bit counter test (it takes 10 seconds)Kazunori Fujiwara2013-07-081-0/+5
|
* [2726] Pass params by referenceMichal 'vorner' Vaner2013-06-141-2/+2
| | | | | | This is mostly to silence cppcheck, than to save some CPU power (with int it makes little sense) and it is less noisy than to put suppression there.
* Merge branch 'trac2157_2' into trac2157_mergeYoshitaka Aharen2013-02-062-46/+62
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac src/bin/auth/Makefile.am src/bin/auth/auth_srv.cc src/bin/auth/auth_srv.h src/bin/auth/b10-auth.xml.pre src/bin/auth/statistics.cc src/bin/auth/statistics.h src/bin/auth/statistics_items.h src/bin/auth/tests/Makefile.am src/bin/auth/tests/auth_srv_unittest.cc src/bin/auth/tests/statistics_unittest.cc src/lib/statistics/counter.h src/lib/statistics/counter_dict.h tests/lettuce/configurations/example.org.inmem.config
| * [2157] removed a wrong noteYoshitaka Aharen2013-01-301-4/+0
| |
| * [2157] use common idiom to check an element existsYoshitaka Aharen2013-01-301-1/+1
| |
| * [2157] removed unused member variableYoshitaka Aharen2013-01-301-1/+0
| |
| * [2157] fixed misuse of constant; simply use a constant numericYoshitaka Aharen2013-01-302-5/+3
| |
| * [2157] minor editorial fixes: add \brief and an empty line for readabilityJINMEI Tatuya2013-01-301-4/+5
| |
| * [2157] update doxygen commentsYoshitaka Aharen2013-01-292-5/+43
| |
| * [2157] avoid using unnamed namespace in header fileYoshitaka Aharen2013-01-282-8/+3
| |
| * [2157] editorial/style fixes: removed unnecessary ';', constifyJINMEI Tatuya2012-12-211-8/+8
| |
| * [2157] editorial: removed unnecessary ';'JINMEI Tatuya2012-12-211-3/+3
| |
| * [2157] remove empty explicit destructorYoshitaka Aharen2012-11-152-10/+0
| |
| * [2155] removed inline keywords from methods inside class definitionYoshitaka Aharen2012-11-152-18/+18
| | | | | | | | | | Conflicts: src/bin/auth/statistics.h
| * [2155] inline methods in a canonical wayYoshitaka Aharen2012-11-152-104/+71
| | | | | | | | | | Conflicts: src/bin/auth/statistics.h
| * [2155] use auto-generated copy constructorYoshitaka Aharen2012-11-151-20/+1
| |
| * [2155] added notes for including header files with EXTRA_DISTYoshitaka Aharen2012-11-151-1/+3
| |
| * [2157] add header files to EXTRA_DISTYoshitaka Aharen2012-10-021-0/+3
| | | | | | | | add statistics header files to EXTRA_DIST
* | Merge branch 'master' into trac2155_2Yoshitaka Aharen2012-10-302-4/+4
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/Doxyfile src/bin/auth/Makefile.am src/bin/auth/benchmarks/Makefile.am src/bin/auth/statistics.h src/bin/auth/tests/Makefile.am src/bin/auth/tests/auth_srv_unittest.cc
| * | [2357] Update scaffolding using fix-scaffolding.py toolMukund Sivaraman2012-10-252-4/+4
| | | | | | | | | | | | See bug #2367 for the fix-scaffolding.py tool.
* | | [2155] removed inline keywords from methods inside class definitionYoshitaka Aharen2012-10-252-18/+18
| | |
* | | [2155] inline methods in a canonical wayYoshitaka Aharen2012-10-102-104/+71
| | |
* | | [2155] use auto-generated copy constructorYoshitaka Aharen2012-10-101-20/+1
| | |
* | | [2155] added notes for including header files with EXTRA_DISTYoshitaka Aharen2012-10-101-1/+3
| | |
* | | [2157] add header files to EXTRA_DISTYoshitaka Aharen2012-10-031-0/+3
| |/ |/| | | | | add statistics header files to EXTRA_DIST
* | [2155] inlining isc::statistics::CounterYoshitaka Aharen2012-09-286-443/+167
|/ | | | | make isc::statistics::Counter and isc::statistics::CounterDict inline for performance
* [2071] Add b10 prefix to libstatistics.laMukund Sivaraman2012-08-022-4/+4
|
* [2071] Add b10 prefix to liblog.laMukund Sivaraman2012-08-021-1/+1
|
* [2071] Add b10 prefix to libexceptions.laMukund Sivaraman2012-08-021-1/+1
|
* [master] Use libtool from top_builddirMukund Sivaraman2012-06-211-1/+1
|
* [2036] Integrate valgrind into our test suiteMukund Sivaraman2012-06-121-0/+3
| | | | | | | | | | | | * Supply --enable-valgrind to configure to run tests (make check) under valgrind * Use two classes of suppressions files: + src/valgrind-suppressions for permanent suppressions that we never want to re-consider again + src/valgrind-suppressions.revisit for temporary suppressions (such as issues in testcases) that are not a priority to fix, but we'd like to fix them sometime
* [master] added missing copyright statementYoshitaka Aharen2012-05-294-0/+56
| | | | This fix is trivial, so directly committing without review.
* Add more .gitignore files (for unit tests)Mukund Sivaraman2012-03-091-0/+1
|
* [master] whitespace policeJeremy C. Reed2011-12-141-1/+1
|
* [master] address SunStudio build failureYoshitaka Aharen2011-12-141-3/+5
|
* [510] modify interface for enumerating zone names in CounterDictionaryYoshitaka Aharen2011-12-133-27/+20
|
* [510] fix unused variableYoshitaka Aharen2011-12-131-1/+1
|
* [510] use std::map instead of boost::unordered_mapYoshitaka Aharen2011-12-091-2/+2
| | | | | boost/unordered_map.hpp is available since Boost 1.36. we should consider to check if the header file is present with configure.
* Revert "[510] do not use BOOST_FOREACH to address build failure on Mac OS X"Yoshitaka Aharen2011-12-091-10/+8
| | | | This reverts commit 1cd21e93810b18a4aa90d7d20afa6dbc3c0a8861.
* [510] do not use BOOST_FOREACH to address build failure on Mac OS XYoshitaka Aharen2011-12-081-8/+10
|
* [510] move initialization in every test case into fixtureYoshitaka Aharen2011-12-082-51/+21
|
* [510] move declaration into fixtureJelte Jansen2011-12-071-7/+3
|
* [trac510] Modify testcase incrementCounterItem as suggested onYoshitaka Aharen2011-12-051-0/+11
| | | | ticket #510.
* [510] style fixesJelte Jansen2011-08-244-183/+182
|
* [trac510] throw exceptions instead of assertion for parameter checkYoshitaka Aharen2011-08-226-23/+39
|
* [trac510] define a struct as a value_type of CounterDictionaryYoshitaka Aharen2011-08-223-40/+47
|
* [trac510] remove unnecessary headerYoshitaka Aharen2011-08-021-1/+0
|