Lines Matching defs:szIfName
321 char szIfName[/*IFNAMSIZ*/ 16 + 36];
323 RTStrPrintf(szIfName, sizeof(szIfName), "/sys/class/net/%s/statistics/rx_bytes", pszFile);
324 if (!RTLinuxSysFsExists(szIfName))
327 int64_t cSize = RTLinuxSysFsReadIntFile(0, szIfName);
333 RTStrPrintf(szIfName, sizeof(szIfName), "/sys/class/net/%s/statistics/tx_bytes", pszFile);
334 if (!RTLinuxSysFsExists(szIfName))
337 cSize = RTLinuxSysFsReadIntFile(0, szIfName);
349 char szIfName[/*IFNAMSIZ*/ 16 + 36];
352 RTStrPrintf(szIfName, sizeof(szIfName), "/sys/class/block/%s/stat", name);
353 FILE *f = fopen(szIfName, "r");