Lines Matching defs:item
103 struct Vnode *item = NULL;
107 LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, &g_vnodeActiveList, struct Vnode, actFreeEntry) {
108 if ((item->useCount > 0) ||
109 (item->flag & VNODE_FLAG_MOUNT_ORIGIN) ||
110 (item->flag & VNODE_FLAG_MOUNT_NEW)) {
114 if (VnodeFree(item) == LOS_OK) {
127 item = GetFromFreeList();
128 if (item == NULL) {
131 return item;
490 struct PathCache *item = NULL;
493 LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, &rootOld->childPathCaches, struct PathCache, childEntry) {
494 name = item->name;
495 node = item->childVnode;
500 PathCacheFree(item);
545 struct PathCache *item = NULL;
552 LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, &vp->childPathCaches, struct PathCache, childEntry) {
561 result = strncpy_s(dir->fd_dir[idx].d_name, dstNameSize, item->name, item->nameLen);
701 struct Vnode *item = NULL;
705 LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, &g_vnodeActiveList, struct Vnode, actFreeEntry) {
706 if ((item->useCount > 0) ||
707 (item->flag & VNODE_FLAG_MOUNT_ORIGIN) ||
708 (item->flag & VNODE_FLAG_MOUNT_NEW)) {
757 struct Vnode *item = NULL;
762 LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, &g_vnodeActiveList, struct Vnode, actFreeEntry) {
763 if ((item->useCount > 0) ||
764 (item->flag & VNODE_FLAG_MOUNT_ORIGIN) ||
765 (item->flag & VNODE_FLAG_MOUNT_NEW)) {
769 if (VnodeFree(item) == LOS_OK) {