Lines Matching refs:attrNode
486 AttrNode* attrNode = NULL; in Read() local
497 attrNode = BufferingGet(name, type, size); in Read()
498 if (attrNode == NULL) in Read()
501 attrNode = fAttributes.ItemAt(index); in Read()
503 if (attrNode->fAttr.Size() > bufferSize) in Read()
506 memcpy(buffer, attrNode->fData, (size_t)attrNode->fAttr.Size()); in Read()
508 return attrNode->fAttr.Size(); in Read()
519 AttrNode* attrNode = new AttrNode(name, type, size, newBuffer); in Write() local
520 fAttributes.AddItem(attrNode); in Write()
549 AttrNode* attrNode = new AttrNode(name, type, size, newBuffer); in BufferingGet() local
550 fAttributes.AddItem(attrNode); in BufferingGet()