Home
last modified time | relevance | path

Searched refs:statline (Results 1 – 2 of 2) sorted by relevance

/system/core/toolbox/
Dps.c36 char statline[1024]; in ps_line() local
49 sprintf(statline, "/proc/%d", pid); in ps_line()
50 stat(statline, &stats); in ps_line()
53 sprintf(statline, "/proc/%d/task/%d/stat", pid, tid); in ps_line()
57 sprintf(statline, "/proc/%d/stat", pid); in ps_line()
71 fd = open(statline, O_RDONLY); in ps_line()
73 r = read(fd, statline, 1023); in ps_line()
76 statline[r] = 0; in ps_line()
78 ptr = statline; in ps_line()
/system/core/libcutils/
Dsched_policy.c273 char statline[1024]; in set_sched_policy() local
282 int rc = read(fd, statline, 1023); in set_sched_policy()
284 statline[rc] = 0; in set_sched_policy()
285 char *p = statline; in set_sched_policy()
288 for (p = statline; *p != '('; p++); in set_sched_policy()