Lines Matching refs:fps
129 if (strncmp(pTempBuf, "fps:", strlen("fps:")) == 0) {
130 pTempBuf += strlen("fps:");
133 uint32_t fps = static_cast<uint32_t>(std::stoi(stringBuf.substr(0, npos)));
134 if (fps > 0) {
167 // format: fps:123|1501960484673
168 if (strncmp(buf, "fps:", strlen("fps:")) != 0 && strncmp(buf, "sectionsFps:", strlen("sectionsFps:")) != 0) {
170 PROFILER_LOG_ERROR(LOG_CORE, "HidumpPlugin: fps command not found!");
177 if (strncmp(buf, "fps:", strlen("fps:")) == 0) {
178 buf += strlen("fps:");
187 uint32_t fps = 0;
188 strvalue >> fps;
193 eve->set_fps(fps);