Searched refs:strafter (Results 1 – 4 of 4) sorted by relevance
/external/toybox/toys/posix/ |
D | ps.c | 789 s = strafter(buf, "\nUid:"); in get_ps() 791 s = strafter(buf, "\nGid:"); in get_ps() 793 if ((s = strafter(buf, "\nVmLck:"))) slot[SLOT_vmlck] = atoll(s)*1024; in get_ps() 794 if ((s = strafter(buf, "\nVmSwap:"))) slot[SLOT_swap] = atoll(s)*1024; in get_ps() 803 if ((s = strafter(buf, "rchar:"))) slot[SLOT_rchar] = atoll(s); in get_ps() 804 if ((s = strafter(buf, "wchar:"))) slot[SLOT_wchar] = atoll(s); in get_ps() 805 if ((s = strafter(buf, "read_bytes:"))) slot[SLOT_rbytes] = atoll(s); in get_ps() 806 if ((s = strafter(buf, "write_bytes:"))) slot[SLOT_wbytes] = atoll(s); in get_ps() 1591 pos = strafter(toybuf+256, (char *[]){"MemTotal:","\nMemFree:", in top_common()
|
/external/toybox/toys/other/ |
D | vmstat.c | 67 } else p = strafter(file, vmstuff[i]); in get_vmstat_proc()
|
/external/toybox/lib/ |
D | lib.h | 233 char *strafter(char *haystack, char *needle);
|
D | lib.c | 414 char *strafter(char *haystack, char *needle) in strafter() function
|