Lines Matching refs:tooLongAttrName
740 char tooLongAttrName[B_ATTR_NAME_LENGTH + 3]; in AttrTest() local
741 memset(tooLongAttrName, 'a', B_ATTR_NAME_LENGTH + 1); in AttrTest()
742 tooLongAttrName[B_ATTR_NAME_LENGTH + 2] = '\0'; in AttrTest()
744 node.WriteAttr(tooLongAttrName, B_STRING_TYPE, 0, buffer, in AttrTest()
748 node.ReadAttr(tooLongAttrName, B_STRING_TYPE, 0, buffer, in AttrTest()
751 CPPUNIT_ASSERT_EQUAL(node.RemoveAttr(tooLongAttrName), B_NAME_TOO_LONG); in AttrTest()
843 char tooLongAttrName[B_ATTR_NAME_LENGTH + 2]; in AttrRenameTest() local
844 memset(tooLongAttrName, 'a', B_ATTR_NAME_LENGTH); in AttrRenameTest()
845 tooLongAttrName[B_ATTR_NAME_LENGTH + 1] = '\0'; in AttrRenameTest()
846 CPPUNIT_ASSERT( node.RenameAttr(attr1, tooLongAttrName) in AttrRenameTest()
848 CPPUNIT_ASSERT( node.RenameAttr(tooLongAttrName, attr1) in AttrRenameTest()
930 char tooLongAttrName[B_ATTR_NAME_LENGTH + 2]; in AttrInfoTest() local
931 memset(tooLongAttrName, 'a', B_ATTR_NAME_LENGTH); in AttrInfoTest()
932 tooLongAttrName[B_ATTR_NAME_LENGTH + 1] = '\0'; in AttrInfoTest()
933 CPPUNIT_ASSERT( node.GetAttrInfo(tooLongAttrName, &info) in AttrInfoTest()
1029 char tooLongAttrName[B_ATTR_NAME_LENGTH + 2]; in AttrBStringTest() local
1030 memset(tooLongAttrName, 'a', B_ATTR_NAME_LENGTH); in AttrBStringTest()
1031 tooLongAttrName[B_ATTR_NAME_LENGTH + 1] = '\0'; in AttrBStringTest()
1032 CPPUNIT_ASSERT( node.WriteAttrString(tooLongAttrName, &writeValue) in AttrBStringTest()
1034 CPPUNIT_ASSERT( node.ReadAttrString(tooLongAttrName, &readValue) in AttrBStringTest()