Searched refs:strafter (Results 1 – 4 of 4) sorted by relevance
/external/toybox/toys/posix/ |
D | ps.c | 780 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/ |
D | vmstat.c | 67 } else p = strafter(file, vmstuff[i]); in get_vmstat_proc()
|
/external/toybox/lib/ |
D | lib.h | 227 char *strafter(char *haystack, char *needle);
|
D | lib.c | 412 char *strafter(char *haystack, char *needle) in strafter() function
|