Home | History | Annotate | Download | only in ltp-aiodio

Lines Matching refs:filename

68 int dio_read(char *filename)
80 while ((fd = open(filename, O_DIRECT | O_RDONLY)) < 0) {
105 void dio_append(char *filename, int fill)
112 fd = open(filename, O_DIRECT | O_WRONLY | O_CREAT, 0666);
138 char filename[PATH_MAX];
143 snprintf(filename, sizeof(filename), "%s/aiodio/file",
149 return dio_read(filename);
166 dio_append(filename, 0);
167 truncate(filename, 0);