Lines Matching refs:temp

99     IMAGE_STATE_TEMPORARY,    /* copied to temp file (no lock needed) */
227 char temp[PATH_MAX], *p = temp, *end= p+sizeof temp;
233 p = bufprint(temp, end, "%s%d", SEARCH_PREFIX, nn+1 );
237 path = iniFile_getString(configIni, temp, NULL);
241 p = bufprint(temp, end, "%s/%s", sdkRootPath, path);
243 path = ASTRDUP(temp);
276 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
278 p = bufprint(temp, end, "%s/%s", rootPath, fileName);
282 return ASTRDUP(temp);
292 char temp[MAX_PATH], *p=temp, *end=p+sizeof(temp);
295 p = bufprint(temp, end, "%s/layout", skinPath);
296 if (p >= end || !path_exists(temp))
312 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp);
314 p = bufprint(temp, end, "%s/skins/%s", skinDirRoot, skinName);
315 DD("Probing skin directory: %s", temp);
316 if (p >= end || !path_exists(temp)) {
317 DD(" ignore bad skin directory %s", temp);
322 if (_checkSkinPath(temp)) {
324 DD(" found skin directory: %s", temp);
325 return ASTRDUP(temp);
331 scanner = dirScanner_new(temp);
342 p = bufprint(temp, end, "%s/skins/%s", skinDirRoot, file+6);
343 if (p < end && _checkSkinPath(temp)) {
346 file+6, temp);
347 result = ASTRDUP(temp);
367 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
389 p = bufprint(temp, end, "%s/%s", sdkRootPath, skinName);
390 if (p < end && _checkSkinPath(temp)) {
391 skinName = temp;
462 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
477 p = bufprint_config_path(temp, end);
479 if (p < end && path_is_dir(temp)) {
481 i->contentPath = ASTRDUP(temp);
572 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp);
579 if (!path_exists(temp)) {
582 return ASTRDUP(temp);
638 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp);
647 p = bufprint(temp, end, "%s/%s", searchDir, fileName);
648 if (p < end && path_exists(temp)) {
660 return ASTRDUP(temp);
865 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
867 p = bufprint(temp, end, "%s/%s/hardware.ini", skinDirPath, skinName);
868 if (p >= end || !path_exists(temp)) {
873 D("found skin-specific hardware.ini: %s", temp);
876 i->skinHardwareIni = iniFile_newFromFile(temp);
984 char temp[PATH_MAX], *p = temp, *end = p + sizeof(temp);
994 p = bufprint(temp, end, "%s/kernel", i->androidOut);
995 if (p < end && path_exists(temp)) {
996 kernelPath = ASTRDUP(temp);
1000 p = bufprint(temp, end, "%s/prebuilts/qemu-kernel/%s/kernel-qemu%s",
1002 if (p >= end || !path_exists(temp)) {
1003 derror("bad workspace: cannot find prebuilt kernel in: %s", temp);
1006 kernelPath = ASTRDUP(temp);
1180 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
1212 p = bufprint(temp, end, "%s/skin", i->contentPath);
1213 if (p < end && _checkSkinPath(temp)) {
1214 D("using skin content from %s", temp);
1237 p = bufprint( temp, end, "%s/%s",
1240 skinPath = _checkSkinSkinsDir(temp, skinName);