Lines Matching defs:tmp
19 const char *const *tmp;
21 tmp = t_strsplit(buf, "\n");
22 for (; *tmp != NULL; tmp++) {
23 if (strncmp(*tmp, "rchar: ", 7) == 0) {
24 if (str_to_uint64(*tmp + 7, &stats->read_bytes) < 0)
26 } else if (strncmp(*tmp, "wchar: ", 7) == 0) {
27 if (str_to_uint64(*tmp + 7, &stats->write_bytes) < 0)
29 } else if (strncmp(*tmp, "syscr: ", 7) == 0) {
30 if (str_to_uint32(*tmp + 7, &stats->read_count) < 0)
32 } else if (strncmp(*tmp, "syscw: ", 7) == 0) {
33 if (str_to_uint32(*tmp + 7, &stats->write_count) < 0)