Lines Matching defs:node
116 int tmpfs_closedir(struct Vnode *node, struct fs_dirent_s *dir);
133 int tmpfs_unlink(struct Vnode *parent, struct Vnode *node, const char *relpath);
359 LOS_DL_LIST *node;
364 for (node = tdo->tdo_entry.pstNext; node != &tdo->tdo_entry; node = node->pstNext)
366 tde = (struct tmpfs_dirent_s *)node;
1092 /* Update the node's access time */
1151 /* Update the node's access time */
1325 /* Update the modified and access times of the node */
1504 LOS_DL_LIST *node = tdo->tdo_entry.pstNext;
1506 while (node != &tdo->tdo_entry)
1508 tde = (struct tmpfs_dirent_s *)node;
1509 node = node->pstNext;
1542 LOS_DL_LIST *node;
1566 node = tdo->tdo_entry.pstNext;
1567 while (node != &tdo->tdo_entry && index != 0)
1569 node = node->pstNext;
1573 while (node != &tdo->tdo_entry)
1575 tde = (struct tmpfs_dirent_s *)node;
1581 node = node->pstNext;
1584 if (node == &tdo->tdo_entry)
1907 int tmpfs_unlink(struct Vnode *parent, struct Vnode *node, const char *relpath)
1914 PRINT_INFO("mountpt: %p node: %p relpath: %s\n", parent, node, relpath);
1915 DEBUGASSERT(parent != NULL && node != NULL && relpath != NULL);
1923 if (node->originMount == NULL)
1928 fs = node->originMount->data;
1956 tfo = (struct tmpfs_file_s *)node->data;
1998 node->data = NULL;