Home
last modified time | relevance | path

Searched refs:rocksdb_perfcontext_t (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/include/rocksdb/
Dc.h113 typedef struct rocksdb_perfcontext_t rocksdb_perfcontext_t; typedef
1142 extern ROCKSDB_LIBRARY_API rocksdb_perfcontext_t* rocksdb_perfcontext_create();
1144 rocksdb_perfcontext_t* context);
1146 rocksdb_perfcontext_t* context, unsigned char exclude_zero_counters);
1148 rocksdb_perfcontext_t* context, int metric);
1150 rocksdb_perfcontext_t* context);
/rocksdb-6.9/db/
Dc.cc168 struct rocksdb_perfcontext_t { PerfContext* rep; }; struct
2779 rocksdb_perfcontext_t* rocksdb_perfcontext_create() { in rocksdb_perfcontext_create()
2780 rocksdb_perfcontext_t* context = new rocksdb_perfcontext_t; in rocksdb_perfcontext_create()
2785 void rocksdb_perfcontext_reset(rocksdb_perfcontext_t* context) { in rocksdb_perfcontext_reset()
2789 char* rocksdb_perfcontext_report(rocksdb_perfcontext_t* context, in rocksdb_perfcontext_report()
2794 uint64_t rocksdb_perfcontext_metric(rocksdb_perfcontext_t* context, in rocksdb_perfcontext_metric()
2940 void rocksdb_perfcontext_destroy(rocksdb_perfcontext_t* context) { in rocksdb_perfcontext_destroy()
Dc_test.c1095 rocksdb_perfcontext_t* perf = rocksdb_perfcontext_create(); in main()