Home | History | Annotate | Download | only in avd

Lines Matching defs:file

78 /* Return the path to the AVD's root configuration .ini file. it is located in
81 * This file contains the path to the AVD's content directory, which
164 APANIC("Could not open AVD config file: %s\n", temp);
182 * file. This is a text file that contains definitions of the format:
191 FILE* file;
196 file = fopen(propFile, "rb");
197 if (file == NULL) {
198 D("Could not open file: %s: %s", propFile, strerror(errno));
202 while (fgets(temp, sizeof temp, file) != NULL) {
235 fclose(file);