Symbol: IsWritable
headers/build/os/storage/File.h
47
bool IsWritable() const;
headers/os/storage/File.h
33
bool IsWritable() const;
headers/private/debugger/elf/ElfFile.h
39
bool IsWritable() const
headers/private/debugger/elf/ElfFile.h
74
bool IsWritable() const
headers/private/debugger/model/TeamMemoryBlock.h
44
bool IsWritable() const { return fWritable; }
headers/private/debugger/types/ValueLocation.h
163
bool IsWritable() const { return fWritable; }
src/add-ons/kernel/file_systems/bfs/BPlusTree.h
229
bool IsWritable() const { return fWritable; }
src/add-ons/kernel/file_systems/btrfs/BTree.h
177
bool IsWritable() const { return fWritable; }
src/add-ons/kernel/file_systems/btrfs/CachedBlock.h
38
bool IsWritable() const { return fWritable; }
src/add-ons/kernel/network/ppp/shared/libppp/MessageDriverSettingsUtils.cpp
226
if (file.InitCheck() != B_OK || !file.IsWritable())
src/add-ons/network_settings/dialup/MessageDriverSettingsUtils.cpp
228
if(file.InitCheck() != B_OK || !file.IsWritable())
src/apps/debugger/user_interface/gui/inspector_window/InspectorWindow.cpp
639
return fCurrentBlock != NULL ? fCurrentBlock->IsWritable() : false;
src/apps/debugger/user_interface/gui/inspector_window/InspectorWindow.cpp
695
? "N/A" : fCurrentBlock->IsWritable() ? "Yes" : "No");
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
1580
tipData += error == B_OK && location->IsWritable()
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
2458
if (!location->IsWritable())
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
2677
if (location->IsWritable() && value != NULL) {
src/kits/debugger/dwarf/DwarfFile.cpp
1169
fItaniumEHFrameFormat = section->IsWritable();
src/kits/debugger/elf/ElfFile.cpp
309
if (segment->Type() == PT_LOAD && !segment->IsWritable())
src/kits/debugger/elf/ElfFile.cpp
323
if (segment->Type() == PT_LOAD && segment->IsWritable())
src/kits/debugger/value/ValueWriter.cpp
47
if (!location->IsWritable())
src/kits/storage/ResourceFile.cpp
1294
if (error == B_OK && !fFile.File()->IsWritable())
src/kits/storage/ResourceFile.cpp
365
if (error == B_OK && !fFile.File()->IsWritable())
src/kits/storage/Resources.cpp
109
fReadOnly = !fFile.IsWritable();
src/tests/kits/storage/FileTest.cpp
317
CPPUNIT_ASSERT( file.IsWritable() == false );
src/tests/kits/storage/FileTest.cpp
323
CPPUNIT_ASSERT( file.IsWritable() == false );
src/tests/kits/storage/FileTest.cpp
329
CPPUNIT_ASSERT( file.IsWritable() == true );
src/tests/kits/storage/FileTest.cpp
335
CPPUNIT_ASSERT( file.IsWritable() == true );
src/tests/kits/storage/FileTest.cpp
341
CPPUNIT_ASSERT( file.IsWritable() == false );
src/tests/kits/storage/FileTest.cpp
636
CPPUNIT_ASSERT( file2.IsWritable() == false );
src/tests/kits/storage/FileTest.cpp
645
CPPUNIT_ASSERT( file2.IsWritable() == true );
src/tests/kits/storage/FileTest.cpp
654
CPPUNIT_ASSERT( file2.IsWritable() == true );
src/tests/kits/storage/FileTest.cpp
684
CPPUNIT_ASSERT( file2.IsWritable() == false );
src/tests/kits/storage/FileTest.cpp
694
CPPUNIT_ASSERT( file2.IsWritable() == true );
src/tests/kits/storage/FileTest.cpp
704
CPPUNIT_ASSERT( file2.IsWritable() == true );