Home
last modified time | relevance | path

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

/linux/tools/perf/util/
H A Dzlib.c19 int input_fd; in gzip_decompress_to_file() local
32 input_fd = open(input, O_RDONLY); in gzip_decompress_to_file()
33 if (input_fd < 0) in gzip_decompress_to_file()
36 if (fstat(input_fd, &stbuf) < 0) in gzip_decompress_to_file()
39 ptr = mmap(NULL, stbuf.st_size, PROT_READ, MAP_PRIVATE, input_fd, 0); in gzip_decompress_to_file()
78 close(input_fd); in gzip_decompress_to_file()
/linux/sound/core/
H A Dcompress_offload.c1061 utask->input_fd = fd_i; in snd_compr_task_new()