Symbol: GetNextAttrName
headers/build/os/storage/Node.h
81
status_t GetNextAttrName(char *buffer);
headers/os/storage/Node.h
69
status_t GetNextAttrName(char* buffer);
src/add-ons/kernel/file_systems/netfs/server/AttributeDirectory.cpp
161
while (node.GetNextAttrName(name) == B_OK) {
src/add-ons/print/transports/shared/DbgMsg.cpp
196
while (dir->GetNextAttrName(buffer1) == B_NO_ERROR) {
src/apps/diskprobe/ProbeView.cpp
1118
while (node.GetNextAttrName(attribute) == B_OK) {
src/apps/installer/CopyEngine.cpp
456
while (sourceNode.GetNextAttrName(attrName) == B_OK) {
src/apps/mail/AddressTextControl.cpp
749
while (node.GetNextAttrName(buffer) == B_OK) {
src/apps/resedit/ResView.cpp
264
while (node.GetNextAttrName(attrName) == B_OK) {
src/apps/soundrecorder/FileUtils.cpp
87
while (src.GetNextAttrName(attrName) == B_OK) {
src/apps/webpositive/BrowserWindow.cpp
1975
status_t attrStatus = node.GetNextAttrName(attrName);
src/apps/webpositive/BrowserWindow.cpp
1977
attrStatus = node.GetNextAttrName(attrName);
src/bin/copyattr.cpp
203
while (source.GetNextAttrName(attrName) == B_OK) {
src/bin/listattr.cpp
270
while (node.GetNextAttrName(name) == B_OK) {
src/bin/reindex.cpp
200
while (node->GetNextAttrName(attrName) == B_OK) {
src/bin/resattr.cpp
131
while (in.GetNextAttrName(name) == B_OK) {
src/kits/mail/NodeMessage.cpp
47
while (n.GetNextAttrName(name) == B_OK) {
src/kits/shared/AttributeUtilities.cpp
26
while (source.GetNextAttrName(attrName) == B_OK) {
src/kits/storage/CopyEngine.cpp
378
while (source.GetNextAttrName(attrName) == B_OK) {
src/kits/storage/mime/DatabaseLocation.cpp
823
while (source.GetNextAttrName(attribute) == B_OK) {
src/kits/tracker/AttributeStream.cpp
415
if (fNode->GetNextAttrName(attrName) != B_OK)
src/kits/tracker/ContainerWindow.cpp
1183
while (node->GetNextAttrName(attrName) == B_OK) {
src/kits/tracker/FSUtils.cpp
1547
while (srcNode->GetNextAttrName(name) == B_OK) {
src/kits/tracker/FSUtils.cpp
1962
while (srcNode->GetNextAttrName(name) == B_OK) {
src/kits/tracker/Thumbnails.cpp
386
while (node->GetNextAttrName(attrName) == B_OK) {
src/kits/tracker/infowindow/AttributesView.cpp
65
while (node->GetNextAttrName(name) == B_OK) {
src/libs/print/libprint/DbgMsg.cpp
194
while (dir->GetNextAttrName(buffer1) == B_NO_ERROR) {
src/tests/kits/storage/NodeTest.cpp
612
CPPUNIT_ASSERT( node.GetNextAttrName(nameBuffer) == B_ENTRY_NOT_FOUND );
src/tests/kits/storage/NodeTest.cpp
628
while (node.GetNextAttrName(nameBuffer) == B_OK)
src/tests/kits/storage/NodeTest.cpp
631
CPPUNIT_ASSERT( node.GetNextAttrName(nameBuffer) == B_ENTRY_NOT_FOUND );
src/tests/kits/storage/NodeTest.cpp
636
CPPUNIT_ASSERT( node.GetNextAttrName(nameBuffer) == B_OK );
src/tests/kits/storage/NodeTest.cpp
640
while (node.GetNextAttrName(nameBuffer) == B_OK)
src/tests/kits/storage/NodeTest.cpp
643
CPPUNIT_ASSERT( node.GetNextAttrName(nameBuffer) == B_ENTRY_NOT_FOUND );
src/tests/kits/storage/NodeTest.cpp
649
CPPUNIT_ASSERT( node.GetNextAttrName(NULL) == B_BAD_VALUE );
src/tests/kits/storage/NodeTest.cpp
666
CPPUNIT_ASSERT( node->GetNextAttrName(nameBuffer) != B_OK );
src/tools/generate_attribute_stores.cpp
63
while (node.GetNextAttrName(nameBuffer) == B_OK) {