Symbol: maps_file
tools/testing/selftests/prctl/set-anon-vma-name-test.c
38
FILE *maps_file;
tools/testing/selftests/prctl/set-anon-vma-name-test.c
49
maps_file = fopen("/proc/self/maps", "r");
tools/testing/selftests/prctl/set-anon-vma-name-test.c
50
if (!maps_file) {
tools/testing/selftests/prctl/set-anon-vma-name-test.c
56
while (fgets(line_buf, sizeof(line_buf), maps_file)) {
tools/testing/selftests/prctl/set-anon-vma-name-test.c
70
fclose(maps_file);
tools/testing/selftests/proc/proc-maps-race.c
103
const enum maps_file maps_file;
tools/testing/selftests/proc/proc-maps-race.c
107
.maps_file = MAPS,
tools/testing/selftests/proc/proc-maps-race.c
111
.maps_file = SMAPS,
tools/testing/selftests/proc/proc-maps-race.c
303
if (self->maps_file == MAPS) {
tools/testing/selftests/proc/proc-maps-race.c
306
} else if (self->maps_file == SMAPS) {
tools/testing/selftests/proc/proc-maps-race.c
578
self->maps_file = variant->maps_file;
tools/testing/selftests/proc/proc-maps-race.c
645
switch (self->maps_file) {
tools/testing/selftests/proc/proc-maps-race.c
788
if (self->maps_file == MAPS) {
tools/testing/selftests/proc/proc-maps-race.c
871
if (self->maps_file == MAPS) {
tools/testing/selftests/proc/proc-maps-race.c
91
enum maps_file maps_file;
tools/testing/selftests/proc/proc-maps-race.c
952
if (self->maps_file == MAPS) {
tools/testing/selftests/sgx/main.c
182
FILE *maps_file;
tools/testing/selftests/sgx/main.c
234
maps_file = fopen("/proc/self/maps", "r");
tools/testing/selftests/sgx/main.c
235
if (maps_file != NULL) {
tools/testing/selftests/sgx/main.c
236
while (fgets(maps_line, sizeof(maps_line), maps_file) != NULL) {
tools/testing/selftests/sgx/main.c
243
fclose(maps_file);