Home | History | Annotate | Download | only in avd

Lines Matching refs:FILE

77 /* Return the path to the AVD's root configuration .ini file. it is located in
80 * This file contains the path to the AVD's content directory, which
120 /* Look for the root .ini file */
152 APANIC("Could not open AVD config file: %s", temp);
170 * file. This is a text file that contains definitions of the format:
179 FILE* file;
184 file = fopen(propFile, "rb");
185 if (file == NULL) {
186 D("Could not open file: %s: %s", propFile, strerror(errno));
190 while (fgets(temp, sizeof temp, file) != NULL) {
223 fclose(file);