Home | History | Annotate | Download | only in avd

Lines Matching refs:fileName

254  * If 'fileName' is an absolute path, this returns a simple copy.
255 * Otherwise, this returns a new string corresponding to <rootPath>/<fileName>
260 _getFullFilePath( const char* rootPath, const char* fileName )
262 if (path_is_absolute(fileName)) {
263 return ASTRDUP(fileName);
267 p = bufprint(temp, end, "%s/%s", rootPath, fileName);
553 _avdInfo_getContentFilePath(AvdInfo* i, const char* fileName)
557 p = bufprint(p, end, "%s/%s", i->contentPath, fileName);
619 _avdInfo_getSdkFilePath(AvdInfo* i, const char* fileName)
630 p = bufprint(temp, end, "%s/%s", searchDir, fileName);
632 DD("found %s in search dir: %s", fileName, searchDir);
635 DD(" no %s in search dir: %s", fileName, searchDir);
650 _avdInfo_getContentOrSdkFilePath(AvdInfo* i, const char* fileName)
654 path = _avdInfo_getContentFilePath(i, fileName);
658 path = _avdInfo_getSdkFilePath(i, fileName);
669 const char* fileName = _imageFileNames[id];
670 char* path = _avdInfo_getContentOrSdkFilePath(i, fileName);
1199 const char* fileName;
1206 fileName = fileNameBuff;
1208 fileName = charmapName;
1211 return _avdInfo_getContentOrSdkFilePath(i, fileName);