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 687 s = strafter(buf, "\nUid:");
689 s = strafter(buf, "\nGid:");
691 if ((s = strafter(buf, "\nVmLck:"))) slot[SLOT_vmlck] = atoll(s);
692 if ((s = strafter(buf, "\nVmSwap:"))) slot[SLOT_swap] = atoll(s);
701 if ((s = strafter(buf, "rchar:"))) slot[SLOT_rchar] = atoll(s);
702 if ((s = strafter(buf, "wchar:"))) slot[SLOT_wchar] = atoll(s);
703 if ((s = strafter(buf, "read_bytes:"))) slot[SLOT_rbytes] = atoll(s);
704 if ((s = strafter(buf, "write_bytes:"))) slot[SLOT_wbytes] = atoll(s);
    [all...]
  /external/toybox/lib/
lib.h 208 char *strafter(char *haystack, char *needle);
lib.c 374 char *strafter(char *haystack, char *needle) function

Completed in 625 milliseconds