Searched defs:dirent (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
H A Dfile_utils.cpp21 #include <dirent.h>
66 struct dirent *dirent; local
67 while ((dirent = readdir(dir)) != NULL) {
68 if (dirent->d_type == DT_DIR) {
71 if (strcmp(dirent->d_name, ".") == 0 || strcmp(dirent->d_name, "..") == 0) {
74 const int filePathBufSize = getFilePathBufSize(dirPath, dirent->d_name);
76 getFilePath(dirPath, dirent->d_name, filePathBufSize, filePath);

Completed in 44 milliseconds