Lines Matching refs:stats
55 statistics.getIfaceRxBytes("wlan0").then((stats: number) => {
56 console.log(JSON.stringify(stats));
60 statistics.getIfaceTxBytes("wlan0").then((stats: number) => {
61 console.log(JSON.stringify(stats));
65 statistics.getCellularRxBytes().then((stats: number) => {
66 console.log(JSON.stringify(stats));
70 statistics.getCellularTxBytes().then((stats: number) => {
71 console.log(JSON.stringify(stats));
75 statistics.getAllRxBytes().then((stats: number) => {
76 console.log(JSON.stringify(stats));
80 statistics.getAllTxBytes().then((stats: number) => {
81 console.log(JSON.stringify(stats));
86 statistics.getUidRxBytes(uid).then((stats: number) => {
87 console.log(JSON.stringify(stats));
92 statistics.getUidTxBytes(uids).then((stats: number) => {
93 console.log(JSON.stringify(stats));
99 statistics.getSockfdRxBytes(sockfd).then((stats: number) => {
100 console.log(JSON.stringify(stats));
108 statistics.getSockfdTxBytes(sockfd).then((stats: number) => {
109 console.log(JSON.stringify(stats));