HomeSort by relevance Sort by last modified time
    Searched refs:strafter (Results 1 - 4 of 4) sorted by null

  /external/toybox/toys/other/
vmstat.c 65 } else if (!(p = strafter(toybuf, vmstuff[i]))) goto error;
  /external/toybox/toys/posix/
ps.c 616 s = strafter(buf, "\nUid:");
618 s = strafter(buf, "\nGid:");
620 if ((s = strafter(buf, "\nVmLck:"))) slot[SLOT_vmlck] = atoll(s);
621 if ((s = strafter(buf, "\nVmSwap:"))) slot[SLOT_swap] = atoll(s);
630 if ((s = strafter(buf, "rchar:"))) slot[SLOT_rchar] = atoll(s);
631 if ((s = strafter(buf, "wchar:"))) slot[SLOT_wchar] = atoll(s);
632 if ((s = strafter(buf, "read_bytes:"))) slot[SLOT_rbytes] = atoll(s);
633 if ((s = strafter(buf, "write_bytes:"))) slot[SLOT_wbytes] = atoll(s);
    [all...]
  /external/toybox/lib/
lib.h 182 char *strafter(char *haystack, char *needle);
lib.c 370 char *strafter(char *haystack, char *needle) function

Completed in 282 milliseconds