Home
last modified time | relevance | path

Searched refs:strafter (Results 1 – 4 of 4) sorted by relevance

/external/toybox/toys/posix/
Dps.c780 s = strafter(buf, "\nUid:"); in get_ps()
782 s = strafter(buf, "\nGid:"); in get_ps()
784 if ((s = strafter(buf, "\nVmLck:"))) slot[SLOT_vmlck] = atoll(s); in get_ps()
785 if ((s = strafter(buf, "\nVmSwap:"))) slot[SLOT_swap] = atoll(s); in get_ps()
794 if ((s = strafter(buf, "rchar:"))) slot[SLOT_rchar] = atoll(s); in get_ps()
795 if ((s = strafter(buf, "wchar:"))) slot[SLOT_wchar] = atoll(s); in get_ps()
796 if ((s = strafter(buf, "read_bytes:"))) slot[SLOT_rbytes] = atoll(s); in get_ps()
797 if ((s = strafter(buf, "write_bytes:"))) slot[SLOT_wbytes] = atoll(s); in get_ps()
1582 pos = strafter(toybuf, (char *[]){"MemTotal:","\nMemFree:", in top_common()
/external/toybox/toys/other/
Dvmstat.c67 } else p = strafter(file, vmstuff[i]); in get_vmstat_proc()
/external/toybox/lib/
Dlib.h227 char *strafter(char *haystack, char *needle);
Dlib.c412 char *strafter(char *haystack, char *needle) in strafter() function