Symbol: IsAttribute
src/add-ons/kernel/file_systems/bfs/CheckVisitor.cpp
250
&& !inode->IsAttribute())
src/add-ons/kernel/file_systems/bfs/Inode.cpp
1335
if (vnode.Get(&inode) != B_OK || !inode->IsAttribute())
src/add-ons/kernel/file_systems/bfs/Inode.cpp
2019
if (!IsAttribute() && !IsAttributeDirectory() && !IsSymLink()
src/add-ons/kernel/file_systems/bfs/Inode.h
64
bool IsAttribute() const
src/add-ons/kernel/file_systems/bfs/Inode.h
84
{ return IsFile() || IsAttribute()
src/apps/diskprobe/DataEditor.cpp
1015
if (IsAttribute()) {
src/apps/diskprobe/DataEditor.cpp
488
if (IsAttribute()) {
src/apps/diskprobe/DataEditor.cpp
733
if (IsAttribute()) {
src/apps/diskprobe/DataEditor.cpp
961
if (IsAttribute()) {
src/apps/diskprobe/DataEditor.h
45
bool IsAttribute() const
src/apps/diskprobe/ProbeView.cpp
1243
BMenu* menu = new BMenu(fEditor.IsAttribute()
src/apps/diskprobe/ProbeView.cpp
1336
if (!fEditor.IsAttribute() && volume.InitCheck() == B_OK
src/apps/diskprobe/ProbeView.cpp
1906
if (fEditor.IsAttribute()) {
src/apps/diskprobe/ProbeView.cpp
419
B_EMPTY_STRING, editor.IsAttribute()
src/apps/diskprobe/ProbeView.cpp
436
if (editor.IsAttribute()) {
src/apps/diskprobe/ProbeView.cpp
502
stringView = new BStringView(B_EMPTY_STRING, editor.IsAttribute()
src/apps/resedit/MiscEditors.cpp
28
if (data->IsAttribute())
src/apps/resedit/ResourceData.h
47
bool IsAttribute(void) const { return fAttr; }
src/bin/bfs_tools/lib/Inode.cpp
1022
return IsAttribute() ? B_OK : B_ERROR;
src/bin/bfs_tools/lib/Inode.h
30
bool IsAttribute() const
src/tests/add-ons/print/pcl6/disasm.cpp
1222
} else if (IsAttribute(byte)) {
src/tests/add-ons/print/pcl6/disasm.h
111
bool IsAttribute(uint8 byte) const { return byte >= 0xf8 && byte <= 0xf9; }