HomeSort by relevance Sort by last modified time
    Searched refs:filePathBufSize (Results 1 - 3 of 3) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
file_utils.h 37 const int filePathBufSize, char *const outFilePath);
42 const int filePathBufSize, char *const outFilePath);
file_utils.cpp 74 const int filePathBufSize = getFilePathBufSize(dirPath, dirent->d_name);
75 char filePath[filePathBufSize];
76 getFilePath(dirPath, dirent->d_name, filePathBufSize, filePath);
103 const char *const suffix, const int filePathBufSize, char *const outFilePath) {
104 snprintf(outFilePath, filePathBufSize, "%s%s", filePath, suffix);
113 const int filePathBufSize, char *const outFilePath) {
114 snprintf(outFilePath, filePathBufSize, "%s/%s", dirPath, fileName);
158 const int filePathBufSize = strlen(filePath) + 1 /* terminator */;
159 char filePathBuf[filePathBufSize];
160 snprintf(filePathBuf, filePathBufSize, "%s", filePath)
    [all...]
dict_file_writing_utils.cpp 84 const int filePathBufSize = FileUtils::getFilePathWithSuffixBufSize(basePath, suffix);
85 char filePath[filePathBufSize];
86 FileUtils::getFilePathWithSuffix(basePath, suffix, filePathBufSize, filePath);

Completed in 37 milliseconds