HomeSort by: relevance | last modified time | path
    Searched defs:dentp (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/fs/msdosfs/
msdosfs_lookup.c 782 struct direntry *dentp; local in function:msdosfs_dosdirempty
800 for (dentp = (struct direntry *)bp->b_data;
801 (char *)dentp < (char *)bp->b_data + blsize;
802 dentp++) {
803 if (dentp->deName[0] != SLOT_DELETED &&
804 (dentp->deAttributes & ATTR_VOLUME) == 0) {
812 if (dentp->deName[0] == SLOT_EMPTY) {
820 if (memcmp(dentp->deName, ". ", 11) &&
821 memcmp(dentp->deName, ".. ", 11)) {
825 dentp->deName, dentp->deName[0]
979 struct direntry *dentp; local in function:msdosfs_uniqdosname
1042 struct direntry *dentp; local in function:msdosfs_findwin95
    [all...]
msdosfs_vnops.c 965 struct direntry *dentp; local in function:msdosfs_readdir
1089 for (dentp = (struct direntry *)((char *)bp->b_data + on);
1090 (char *)dentp < (char *)bp->b_data + on + n;
1091 dentp++, offset += sizeof(struct direntry)) {
1094 printf("rd: dentp %08x prev %08x crnt %08x deName %02x attr %02x\n",
1095 dentp, prev, crnt, dentp->deName[0], dentp->deAttributes);
1100 if (dentp->deName[0] == SLOT_EMPTY) {
1107 if (dentp->deName[0] == SLOT_DELETED)
    [all...]
  /src/sys/rump/librump/rumpvfs/
rumpfs.c 1309 struct dirent *dentp = NULL; local in function:rump_vop_readdir
1322 dentp = kmem_alloc(sizeof(*dentp), KM_SLEEP);
1325 strlcpy(dentp->d_name, rdent->rd_name, sizeof(dentp->d_name));
1326 dentp->d_namlen = strlen(dentp->d_name);
1327 dentp->d_reclen = _DIRENT_RECLEN(dentp, dentp->d_namlen)
    [all...]

Completed in 13 milliseconds