Home
last modified time | relevance | path

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

/system/core/toolbox/
Dps.c46 char statline[1024]; in ps_line() local
60 sprintf(statline, "/proc/%d", tid ? tid : pid); in ps_line()
61 stat(statline, &stats); in ps_line()
64 sprintf(statline, "/proc/%d/task/%d/stat", pid, tid); in ps_line()
68 sprintf(statline, "/proc/%d/stat", pid); in ps_line()
82 int fd = open(statline, O_RDONLY); in ps_line()
84 r = read(fd, statline, 1023); in ps_line()
87 statline[r] = 0; in ps_line()
89 ptr = statline; in ps_line()
/system/core/libcutils/
Dsched_policy.c336 char statline[1024]; in set_sched_policy() local
345 int rc = read(fd, statline, 1023); in set_sched_policy()
347 statline[rc] = 0; in set_sched_policy()
348 char *p = statline; in set_sched_policy()
351 for (p = statline; *p != '('; p++); in set_sched_policy()