Home | History | Annotate | Download | only in vold

Lines Matching refs:dent

1575     struct dirent *dent = (struct dirent *) malloc(dirent_len);
1576 if (dent == NULL) {
1582 while (!readdir_r(d, dent, &result) && result != NULL) {
1583 if (dent->d_name[0] == '.')
1585 if (dent->d_type != DT_REG)
1587 size_t name_len = strlen(dent->d_name);
1589 !strcmp(&dent->d_name[name_len - 5], ASEC_SUFFIX)) {
1591 strlcpy(id, dent->d_name, name_len - 4);
1600 free(dent);