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

  /src/sys/fs/ntfs/
ntfs_vnops.c 530 struct dirent *cde; local in function:ntfs_readdir
539 cde = malloc(sizeof(struct dirent), M_TEMP, M_WAITOK);
544 cde->d_fileno = ip->i_number;
545 cde->d_reclen = sizeof(struct dirent);
546 cde->d_type = DT_DIR;
547 cde->d_namlen = 1;
548 strncpy(cde->d_name, ".", 2);
549 error = uiomove((void *)cde, sizeof(struct dirent), uio);
558 cde->d_fileno = NTFS_ROOTINO; /* XXX */
559 cde->d_reclen = sizeof(struct dirent)
    [all...]
ntfs_vnops.c 530 struct dirent *cde; local in function:ntfs_readdir
539 cde = malloc(sizeof(struct dirent), M_TEMP, M_WAITOK);
544 cde->d_fileno = ip->i_number;
545 cde->d_reclen = sizeof(struct dirent);
546 cde->d_type = DT_DIR;
547 cde->d_namlen = 1;
548 strncpy(cde->d_name, ".", 2);
549 error = uiomove((void *)cde, sizeof(struct dirent), uio);
558 cde->d_fileno = NTFS_ROOTINO; /* XXX */
559 cde->d_reclen = sizeof(struct dirent)
    [all...]

Completed in 23 milliseconds