Searched refs:strafter (Results 1 – 7 of 7) sorted by relevance
/third_party/toybox/toys/pending/ |
D | wget.c | 106 *host = strafter(url, "://"); in wget_info() 117 *port = strafter(*host, "]:"); in wget_info() 316 status = strtol(strafter(toybuf, " "), NULL, 10); in wget_main()
|
/third_party/toybox/porting/liteos_a/toys/posix/ |
D | ps.c | 745 s = strafter(buf, "\nUid:"); in get_ps() 747 s = strafter(buf, "\nGid:"); in get_ps() 749 if ((s = strafter(buf, "\nVmLck:"))) slot[SLOT_vmlck] = atoll(s)*1024; in get_ps() 750 if ((s = strafter(buf, "\nVmSwap:"))) slot[SLOT_swap] = atoll(s)*1024; in get_ps() 759 if ((s = strafter(buf, "rchar:"))) slot[SLOT_rchar] = atoll(s); in get_ps() 760 if ((s = strafter(buf, "wchar:"))) slot[SLOT_wchar] = atoll(s); in get_ps() 761 if ((s = strafter(buf, "read_bytes:"))) slot[SLOT_rbytes] = atoll(s); in get_ps() 762 if ((s = strafter(buf, "write_bytes:"))) slot[SLOT_wbytes] = atoll(s); in get_ps() 1447 pos = strafter(toybuf+256, (char *[]){"MemTotal:","\nMemFree:", in top_common()
|
/third_party/toybox/toys/posix/ |
D | ps.c | 788 s = strafter(buf, "\nUid:"); in get_ps() 790 s = strafter(buf, "\nGid:"); in get_ps() 792 if ((s = strafter(buf, "\nVmLck:"))) slot[SLOT_vmlck] = atoll(s)*1024; in get_ps() 793 if ((s = strafter(buf, "\nVmSwap:"))) slot[SLOT_swap] = atoll(s)*1024; in get_ps() 802 if ((s = strafter(buf, "rchar:"))) slot[SLOT_rchar] = atoll(s); in get_ps() 803 if ((s = strafter(buf, "wchar:"))) slot[SLOT_wchar] = atoll(s); in get_ps() 804 if ((s = strafter(buf, "read_bytes:"))) slot[SLOT_rbytes] = atoll(s); in get_ps() 805 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()
|
/third_party/toybox/toys/other/ |
D | vmstat.c | 67 } else p = strafter(file, vmstuff[i]); in get_vmstat_proc()
|
/third_party/toybox/lib/ |
D | lib.h | 239 char *strafter(char *haystack, char *needle);
|
D | lib.c | 412 char *strafter(char *haystack, char *needle) in strafter() function
|
/third_party/toybox/porting/liteos_a/lib/ |
D | lib.h | 232 char *strafter(char *haystack, char *needle);
|