Lines Matching refs:filename
103 char* filename; in __initialize() local
107 filename = "/dev/cpuctl/tasks"; in __initialize()
108 fg_cgroup_fd = open(filename, O_WRONLY | O_CLOEXEC); in __initialize()
110 SLOGE("open of %s failed: %s\n", filename, strerror(errno)); in __initialize()
113 filename = "/dev/cpuctl/bg_non_interactive/tasks"; in __initialize()
114 bg_cgroup_fd = open(filename, O_WRONLY | O_CLOEXEC); in __initialize()
116 SLOGE("open of %s failed: %s\n", filename, strerror(errno)); in __initialize()
125 filename = "/dev/cpuset/foreground/tasks"; in __initialize()
126 fg_cpuset_fd = open(filename, O_WRONLY | O_CLOEXEC); in __initialize()
127 filename = "/dev/cpuset/background/tasks"; in __initialize()
128 bg_cpuset_fd = open(filename, O_WRONLY | O_CLOEXEC); in __initialize()