Lines Matching defs:item
256 * Get a single mapping item from buffer
260 * Returns pointer to item, or NULL when there is no more
276 struct XATTRMAPPING *item;
303 item = (struct XATTRMAPPING*)NULL;
322 item = (struct XATTRMAPPING*)ntfs_malloc(
325 if (item) {
326 item->xattr = xattr;
327 strcpy(item->name,pu);
328 item->next = (struct XATTRMAPPING*)NULL;
331 ntfs_log_early_error("Bad xattr mapping item, aborting\n");
335 return (item);
357 struct XATTRMAPPING *item;
373 item = getmappingitem(reader, fileid, &offs,
375 if (item) {
379 if ((current->xattr == item->xattr)
380 || !strcmp(current->name,item->name))
383 free(item);
386 item->next = (struct XATTRMAPPING*)NULL;
388 lastitem->next = item;
390 firstitem = item;
391 lastitem = item;
394 } while (item);