Searched refs:clobber (Results 1 - 13 of 13) sorted by relevance

/haiku/src/tests/kits/storage/
H A DEntryTest.h50 string newName, bool existing, bool clobber,
53 bool existing, bool clobber,
56 bool existing, bool clobber, status_t error);
58 bool existing, bool clobber, status_t error);
60 bool existing, bool clobber, status_t error);
64 string newName, bool existing, bool clobber,
67 TestEntry *newTestEntry, bool existing, bool clobber,
70 TestEntry *newTestEntry, bool existing, bool clobber,
73 TestEntry *newTestEntry, bool existing, bool clobber,
76 TestEntry *newTestEntry, bool existing, bool clobber,
[all...]
H A DEntryTest.cpp1414 string newName, bool existing, bool clobber,
1443 status_t result = entry.Rename(newName.c_str(), clobber);
1445 printf("`%s'.Rename(`%s', %d): ", pathname.c_str(), newName.c_str(), clobber);
1489 bool existing, bool clobber, status_t error,
1497 clobber, error, B_FILE_NODE);
1501 clobber, error, B_FILE_NODE);
1507 bool existing, bool clobber, status_t error)
1509 RenameTestEntry(testEntry, newTestEntry, existing, clobber, error,
1516 bool existing, bool clobber, status_t error)
1518 RenameTestEntry(testEntry, newTestEntry, existing, clobber, erro
1413 RenameTestEntry(TestEntry *testEntry, TestEntry *newTestEntry, string newName, bool existing, bool clobber, status_t error, uint32 kind) argument
1488 RenameTestEntry(TestEntry *testEntry, TestEntry *newTestEntry, bool existing, bool clobber, status_t error, uint32 kind) argument
1506 RenameTestFile(TestEntry *testEntry, TestEntry *newTestEntry, bool existing, bool clobber, status_t error) argument
1515 RenameTestDir(TestEntry *testEntry, TestEntry *newTestEntry, bool existing, bool clobber, status_t error) argument
1524 RenameTestLink(TestEntry *testEntry, TestEntry *newTestEntry, bool existing, bool clobber, status_t error) argument
1634 MoveToTestEntry(TestEntry *testEntry, TestEntry *testDir, string newName, bool existing, bool clobber, status_t error, uint32 kind) argument
1727 MoveToTestEntry(TestEntry *testEntry, TestEntry *testDir, TestEntry *newTestEntry, bool existing, bool clobber, status_t error, uint32 kind) argument
1747 MoveToTestFile(TestEntry *testEntry, TestEntry *testDir, TestEntry *newTestEntry, bool existing, bool clobber, status_t error) argument
1757 MoveToTestDir(TestEntry *testEntry, TestEntry *testDir, TestEntry *newTestEntry, bool existing, bool clobber, status_t error) argument
1767 MoveToTestLink(TestEntry *testEntry, TestEntry *testDir, TestEntry *newTestEntry, bool existing, bool clobber, status_t error) argument
[all...]
/haiku/headers/os/mail/
H A DE-mail.h127 bool clobber = false);
130 bool clobber = false);
133 bool clobber = false);
135 bool clobber = false);
137 int32 len, bool clobber = false);
141 bool clobber = false);
143 const char* str, bool clobber = false);
/haiku/headers/os/storage/
H A DResources.h26 bool clobber = false);
29 bool clobber = false);
32 bool clobber = false);
37 bool clobber = false);
40 bool clobber = false);
43 bool clobber = false);
47 bool clobber = false);
49 bool clobber = false);
H A DEntry.h70 status_t Rename(const char* path, bool clobber = false);
72 bool clobber = false);
99 status_t _Rename(BEntry& target, bool clobber);
/haiku/headers/build/os/storage/
H A DEntry.h70 status_t Rename(const char *path, bool clobber = false);
72 bool clobber = false);
112 status_t _Rename(BEntry& target, bool clobber);
/haiku/src/kits/storage/
H A DResources.cpp47 BResources::BResources(const BFile* file, bool clobber) argument
55 SetTo(file, clobber);
61 BResources::BResources(const char* path, bool clobber) argument
69 SetTo(path, clobber);
75 BResources::BResources(const entry_ref* ref, bool clobber) argument
83 SetTo(ref, clobber);
98 BResources::SetTo(const BFile* file, bool clobber) argument
112 error = fResourceFile->SetTo(&fFile, clobber);
136 BResources::SetTo(const char* path, bool clobber) argument
152 return SetTo(&file, clobber);
159 SetTo(const entry_ref* ref, bool clobber) argument
182 SetToImage(image_id image, bool clobber) argument
204 SetToImage(const void* codeOrDataPointer, bool clobber) argument
[all...]
H A DEntry.cpp384 BEntry::Rename(const char* path, bool clobber) argument
405 return _Rename(target, clobber);
410 BEntry::MoveTo(BDirectory* dir, const char* path, bool clobber) argument
427 return _Rename(target, clobber);
710 \a clobber is \c true, in which case that entry is overwritten (doesn't
717 \param clobber If \c true, the an entry existing at the target location
723 BEntry::_Rename(BEntry& target, bool clobber) argument
726 if (!clobber && target.Exists())
H A DResourceFile.cpp240 ResourceFile::SetTo(BFile* file, bool clobber) argument
246 _InitFile(*file, clobber);
378 ResourceFile::_InitFile(BFile& file, bool clobber) argument
391 else if (fileSize > 0 && !clobber)
436 if (clobber) {
447 // clobber, if desired
448 if (clobber) {
/haiku/src/bin/rc/
H A Dcompile.cpp234 bool clobber = false; local
238 clobber = true;
243 err = rsrc.SetTo(&file, clobber);
/haiku/headers/private/storage/
H A DResourceFile.h62 status_t SetTo(BFile* file, bool clobber = false);
74 void _InitFile(BFile& file, bool clobber);
/haiku/src/build/libbe/storage/
H A DEntry.cpp662 /*! \brief Renames the BEntry to path, replacing an existing entry if clobber is true.
669 \param clobber If \c false and a file with the name given by \c path already exists,
674 - \c B_ENTRY_EXISTS - The new location is already taken and \c clobber was \c false
680 BEntry::Rename(const char *path, bool clobber) argument
701 return _Rename(target, clobber);
705 /*! \brief Moves the BEntry to directory or directory+path combination, replacing an existing entry if clobber is true.
713 \param clobber If \c false and an entry already exists at the specified destination,
718 - \c B_ENTRY_EXISTS - The new location is already taken and \c clobber was \c false
723 BEntry::MoveTo(BDirectory *dir, const char *path, bool clobber) argument
740 return _Rename(target, clobber);
1049 _Rename(BEntry& target, bool clobber) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A Dkernel_interface.cpp1253 off_t clobber; local
1254 if (newTree->Find((const uint8*)newName, strlen(newName), &clobber)
1257 if (clobber == id)
1260 Vnode vnode(volume, clobber);
1277 clobber);

Completed in 111 milliseconds