Home
last modified time | relevance | path

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

/third_party/toybox/toys/pending/
Dwget.c106 *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/
Dps.c745 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/
Dps.c788 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/
Dvmstat.c67 } else p = strafter(file, vmstuff[i]); in get_vmstat_proc()
/third_party/toybox/lib/
Dlib.h239 char *strafter(char *haystack, char *needle);
Dlib.c412 char *strafter(char *haystack, char *needle) in strafter() function
/third_party/toybox/porting/liteos_a/lib/
Dlib.h232 char *strafter(char *haystack, char *needle);