Home | History | Annotate | Download | only in co

Lines Matching defs:de

61     struct dirent *de;
81 de = readdir(dir);
83 if (de == NULL) {
89 if (0 == strcmp(de->d_name, ".") || 0 == strcmp(de->d_name, ".."))
92 if((int)strlen(de->d_name) > PATH_MAX - nameLen) {
93 BTIF_TRACE_DEBUG1("d_name len:%d is too big", strlen(de->d_name));
98 strcpy(filenameOffset, de->d_name);