Lines Matching defs:fileName
282 * If 'fileName' is an absolute path, this returns a simple copy.
283 * Otherwise, this returns a new string corresponding to <rootPath>/<fileName>
288 _getFullFilePath( const char* rootPath, const char* fileName )
290 if (path_is_absolute(fileName)) {
291 return ASTRDUP(fileName);
295 p = bufprint(temp, end, "%s/%s", rootPath, fileName);
566 _avdInfo_getContentFilePath(AvdInfo* i, const char* fileName)
570 p = bufprint(p, end, "%s/%s", i->contentPath, fileName);
632 _avdInfo_getSdkFilePath(AvdInfo* i, const char* fileName)
643 p = bufprint(temp, end, "%s/%s", searchDir, fileName);
645 DD("found %s in search dir: %s", fileName, searchDir);
648 DD(" no %s in search dir: %s", fileName, searchDir);
663 _avdInfo_getContentOrSdkFilePath(AvdInfo* i, const char* fileName)
667 path = _avdInfo_getContentFilePath(i, fileName);
671 path = _avdInfo_getSdkFilePath(i, fileName);
682 const char* fileName = _imageFileNames[id];
683 char* path = _avdInfo_getContentOrSdkFilePath(i, fileName);
1191 const char* fileName;
1198 fileName = fileNameBuff;
1200 fileName = charmapName;
1203 return _avdInfo_getContentOrSdkFilePath(i, fileName);