MCPcopy Create free account
hub / github.com/apache/trafficserver / REC_readCounter

Function REC_readCounter

src/records/RecCore.cc:971–982  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

969}
970
971RecCounter
972REC_readCounter(char *name, bool *found, bool lock)
973{
974 ink_assert(name);
975 RecCounter _tmp = 0;
976 bool _found = (RecGetRecordCounter(name, &_tmp, lock) == REC_ERR_OKAY);
977
978 if (found) {
979 *found = _found;
980 }
981 return _tmp;
982}
983
984RecString
985REC_readString(const char *name, bool *found, bool lock)

Callers 1

marshal_recordMethod · 0.85

Calls 1

RecGetRecordCounterFunction · 0.85

Tested by

no test coverage detected