Home | History | Annotate | Download | only in toolbox

Lines Matching refs:st

31     struct statfs st;
33 if (statfs(s, &st) < 0) {
37 if (st.f_blocks == 0 && !always)
40 printsize((long long)st.f_blocks * (long long)st.f_bsize);
42 printsize((long long)(st.f_blocks - (long long)st.f_bfree) * st.f_bsize);
44 printsize((long long)st.f_bfree * (long long)st.f_bsize);
45 printf(" %d\n", (int) st.f_bsize);