Home | History | Annotate | Download | only in process_monitor

Lines Matching refs:Network

16         "<td>Network</td>" +
36 // Format network string like task manager
37 var network = process.network;
38 if (network > 1024) {
39 network = (network / 1024).toFixed(1) + " kB/s";
40 } else if (network > 0) {
41 network += " B/s";
42 } else if (network == -1) {
43 network = "N/A";
53 "<td>" + network + "</td>";