Home | History | Annotate | Download | only in avd

Lines Matching full:temp

45     char         temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
67 (void) bufprint_app_dir(temp, end);
68 sdkPath = path_parent(temp, 1);
87 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
89 p = bufprint_config_path(temp, end);
94 if (!path_exists(temp)) {
97 return ASTRDUP(temp);
104 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
105 p = bufprint_config_path(temp, end);
107 APANIC("User path too long!: %s\n", temp);
109 return strdup(temp);
116 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
137 p = bufprint_config_path(temp, end);
139 if (p < end && path_is_dir(temp)) {
141 avdPath = ASTRDUP(temp);
157 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
158 p = bufprint(temp, end, "%s" PATH_SEP "config.ini", avdPath);
162 ini = iniFile_newFromFile(temp);
164 APANIC("Could not open AVD config file: %s\n", temp);
192 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
202 while (fgets(temp, sizeof temp, file) != NULL) {
204 p = memchr(temp, '\0', sizeof temp);
207 if (p > temp && p[-1] == '\n') {
210 if (p > temp && p[-1] == '\r') {
218 if (memcmp(temp, propName, propNameLen) != 0) {
221 p = temp + propNameLen;
242 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
244 p = bufprint(temp, end, "%s/system/build.prop", androidOut);
249 return _getSystemProperty(temp, propName);