Searched refs:filePathBufSize (Results 1 – 3 of 3) sorted by relevance
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
D | file_utils.cpp | 74 const int filePathBufSize = getFilePathBufSize(dirPath, dirent->d_name); in removeDirAndFiles() local 75 char filePath[filePathBufSize]; in removeDirAndFiles() 76 getFilePath(dirPath, dirent->d_name, filePathBufSize, filePath); in removeDirAndFiles() 103 const char *const suffix, const int filePathBufSize, char *const outFilePath) { in getFilePathWithSuffix() argument 104 snprintf(outFilePath, filePathBufSize, "%s%s", filePath, suffix); in getFilePathWithSuffix() 113 const int filePathBufSize, char *const outFilePath) { in getFilePath() argument 114 snprintf(outFilePath, filePathBufSize, "%s/%s", dirPath, fileName); in getFilePath() 158 const int filePathBufSize = strlen(filePath) + 1 /* terminator */; in getBasename() local 159 char filePathBuf[filePathBufSize]; in getBasename() 160 snprintf(filePathBuf, filePathBufSize, "%s", filePath); in getBasename()
|
D | dict_file_writing_utils.cpp | 84 const int filePathBufSize = FileUtils::getFilePathWithSuffixBufSize(basePath, suffix); in flushBufferToFileWithSuffix() local 85 char filePath[filePathBufSize]; in flushBufferToFileWithSuffix() 86 FileUtils::getFilePathWithSuffix(basePath, suffix, filePathBufSize, filePath); in flushBufferToFileWithSuffix()
|
D | file_utils.h | 37 const int filePathBufSize, char *const outFilePath); 42 const int filePathBufSize, char *const outFilePath);
|