Home | History | Annotate | Download | only in src

Lines Matching defs:node

150     struct _ValidateNode *node;
156 node = wsbmVNodeFuncs()->alloc(wsbmVNodeFuncs(), 0);
157 if (!node) {
163 node = WSBMLISTENTRY(l, struct _ValidateNode, head);
165 node->buf = item;
166 node->set_flags = flags & mask;
167 node->clr_flags = (~flags) & mask;
168 node->listItem = list->numOnList;
169 WSBMLISTADDTAIL(&node->head, &list->list);
172 WSBMLISTADDTAIL(&node->hashHead, hashHead);
174 return node;
198 struct _ValidateNode *node;
204 node = WSBMLISTENTRY(l, struct _ValidateNode, head);
206 WSBMLISTDEL(&node->hashHead);
207 node->func->free(node);
216 node = WSBMLISTENTRY(l, struct _ValidateNode, head);
218 node->func->free(node);
228 struct _ValidateNode *node;
233 node = wsbmVNodeFuncs()->alloc(wsbmVNodeFuncs(), list->driverData);
234 if (!node) {
239 WSBMLISTADD(&node->head, &list->free);
247 node = WSBMLISTENTRY(l, struct _ValidateNode, head);
249 node->func->free(node);
301 struct _ValidateNode *node;
311 node = WSBMLISTENTRY(l, struct _ValidateNode, head);
313 WSBMLISTDEL(&node->hashHead);
1060 struct _ValidateNode *node, *cur;
1074 node = WSBMLISTENTRY(l, struct _ValidateNode, hashHead);
1076 if (node->buf == buf) {
1077 cur = node;
1122 struct _ValidateNode **node)
1133 flags, mask, itemLoc, node, &dummy);
1137 *node = NULL;
1223 struct _ValidateNode *node;
1233 node = validateListNode(curBuf);
1234 storage = (struct _WsbmBufStorage *)node->buf;
1236 ret = storage->pool->validate(storage, node->set_flags,
1237 node->clr_flags);
1251 struct _ValidateNode *node;
1260 node = validateListNode(curBuf);
1261 storage = (struct _WsbmBufStorage *)node->buf;