Symbol: CreateFile
headers/build/os/storage/Directory.h
55
status_t CreateFile(const char *path, BFile *file,
headers/os/storage/Directory.h
57
status_t CreateFile(const char *path, BFile *file,
headers/private/kernel/boot/vfs.h
77
virtual status_t CreateFile(const char *name, mode_t permissions,
src/add-ons/kernel/file_systems/nfs4/InodeRegular.cpp
34
status_t result = CreateFile(name, mode, perms, state, &changeInfo,
src/add-ons/kernel/file_systems/nfs4/NFS4Inode.h
49
status_t CreateFile(const char* name, int mode, int perms,
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1001
handle = CreateFile(vol_name,
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
485
*handle = CreateFile(filename,
src/add-ons/kernel/file_systems/ramfs/Directory.h
31
status_t CreateFile(const char *name, File **file);
src/add-ons/kernel/file_systems/ramfs/kernel_interface.cpp
839
error = dir->CreateFile(name, &file);
src/add-ons/network_settings/dialup/DialUpView.cpp
403
settingsDirectory.CreateFile(fCurrentItem->Label(), &file);
src/add-ons/network_settings/dialup/DialUpView.cpp
408
profileDirectory.CreateFile(fCurrentItem->Label(), &file);
src/apps/deskbar/BarApp.cpp
313
theDir.CreateFile(settingsFileName, fSettingsFile);
src/apps/deskbar/BarApp.cpp
381
theDir.CreateFile(clockSettingsFileName, fClockSettingsFile);
src/apps/installer/WorkerThread.cpp
321
&& (err = destDir.CreateFile(archLoader, &loaderDest, true)) == B_FILE_EXISTS) {
src/apps/login/DesktopWindow.cpp
53
dir.CreateFile("Shelf", NULL);
src/apps/magnify/Magnify.cpp
1864
parentDir.CreateFile(name, &file);
src/apps/mail/Content.cpp
1934
result = dir.CreateFile(name, &file);
src/apps/mail/Signature.cpp
372
if ((result = dir.CreateFile(name, fFile, true)) == B_NO_ERROR)
src/apps/mail/Status.cpp
147
if ((result = dir.CreateFile(newName, &file, true)) == B_NO_ERROR)
src/apps/mandelbrot/Mandelbrot.cpp
402
parentDir.CreateFile(name, &file);
src/apps/people/PeopleApp.cpp
97
if (dir.CreateFile("People_data", fPrefs) != B_OK) {
src/apps/people/PersonView.h
50
void CreateFile(const entry_ref* ref);
src/apps/people/PersonWindow.cpp
208
directory.CreateFile(name, &file);
src/apps/people/PersonWindow.cpp
219
fView->CreateFile(fRef);
src/apps/processcontroller/Preferences.cpp
84
prefdir.CreateFile(fName, &file, false);
src/apps/soundrecorder/RecorderWindow.cpp
812
newDir.CreateFile(new_name, &newFile);
src/bin/copyattr.cpp
391
error = BDirectory().CreateFile(destPath, &destFile);
src/kits/mail/MailMessage.cpp
921
status_t status = dir->CreateFile(worker.String(), &file);
src/kits/storage/CopyEngine.cpp
223
error = BDirectory().CreateFile(destPath, &destFile);
src/kits/storage/mime/DatabaseLocation.cpp
794
result = superTypeDirectory.CreateFile(BString(slash + 1).ToLower(),
src/kits/tracker/ContainerWindow.cpp
3732
if (dir.CreateFile(name, &file) != B_OK)
src/kits/tracker/PoseView.cpp
4377
status_t error = directory->CreateFile(resultingName, &result, true);
src/servers/mail/DeskbarView.cpp
414
if (directory.CreateFile("Open Draft", &file) < B_OK)
src/servers/mount/AutoMounter.cpp
853
dir.CreateFile(kMountServerSettings, &fPrefsFile);
src/system/boot/loader/file_systems/fat/Directory.h
44
virtual status_t CreateFile(const char *name, mode_t permissions,
src/system/boot/loader/vfs.cpp
1106
error = directory->CreateFile(name, permissions, &node);
src/tests/kits/storage/DirectoryTest.cpp
1405
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, true) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1413
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, false) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1421
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, true)
src/tests/kits/storage/DirectoryTest.cpp
1470
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, true) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1477
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, false) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1484
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, true)
src/tests/kits/storage/DirectoryTest.cpp
1532
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, true) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1539
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, false) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1546
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, true)
src/tests/kits/storage/DirectoryTest.cpp
1595
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, true) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1603
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, false) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1611
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), &file, true)
src/tests/kits/storage/DirectoryTest.cpp
1650
CPPUNIT_ASSERT( equals(dir.CreateFile(NULL, &file), B_ENTRY_NOT_FOUND,
src/tests/kits/storage/DirectoryTest.cpp
1686
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), NULL, true) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1691
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), NULL, false) == B_OK );
src/tests/kits/storage/DirectoryTest.cpp
1696
CPPUNIT_ASSERT( dir.CreateFile(entryName.c_str(), NULL, true)
src/tests/kits/storage/EntryTest.cpp
1429
CreateFile(pathname.c_str());
src/tests/kits/storage/EntryTest.cpp
1439
CreateFile(newPathname.c_str());
src/tests/kits/storage/EntryTest.cpp
1573
CreateFile(file3.cpath);
src/tests/kits/storage/EntryTest.cpp
1583
CreateFile(file3.cpath);
src/tests/kits/storage/EntryTest.cpp
1659
CreateFile(pathname.c_str());
src/tests/kits/storage/EntryTest.cpp
1669
CreateFile(newPathname.c_str());
src/tests/kits/storage/EntryTest.cpp
1855
CreateFile(file3.cpath);
src/tests/kits/storage/EntryTest.cpp
1866
CreateFile(file3.cpath);
src/tests/kits/storage/EntryTest.cpp
1896
CreateFile(file2.cpath);
src/tests/kits/storage/EntryTest.cpp
1904
CreateFile(file2.cpath);
src/tests/kits/storage/EntryTest.h
92
void CreateFile(const char *file);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1008
CreateFile("dir2/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1009
CreateFile("dir2/dir3/file2");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1024
CreateFile("base/dir2/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1025
CreateFile("base/dir2/dir3/file2");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1043
CreateFile("base/dir1/dir2/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1044
CreateFile("base/dir1/dir2/dir3/file2");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1062
CreateFile("base/dir1/dir2/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1063
CreateFile("base/dir1/dir2/dir3/file2");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1086
CreateFile("base/dir2/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1087
CreateFile("base/dir2/dir3/file2");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1130
CreateFile("ancestorSibling/base/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1145
CreateFile("ancestorSibling/base/dir1/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1174
CreateFile("ancestor/baseSibling/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1188
CreateFile("ancestor/baseSibling/dir1/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1201
CreateFile("ancestor/base/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1216
CreateFile("ancestor/base/dir1/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1230
CreateFile("ancestor/base/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1244
CreateFile("ancestor/base/dir1/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1280
ExpectNotification(CreateFile("file"),
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1285
CreateFile("fileSibling");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1292
CreateFile("file");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1299
CreateFile("file");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
1306
CreateFile("file");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
797
CreateFile("base/file0");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
798
CreateFile("base/dir1/file0.0");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
842
CreateFile("file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
854
ExpectNotification(CreateFile("base/file1"),
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
872
ExpectNotification(CreateFile("base/dir1/file1"),
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
890
CreateFile("file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
906
CreateFile("file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
922
ExpectNotification(CreateFile("base/file1"),
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
938
ExpectNotification(CreateFile("base/dir1/file1"),
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
954
ExpectNotification(CreateFile("base/dir1/file1"),
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
972
ExpectNotification(CreateFile("base/file1"),
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
993
CreateFile("dir2/file1");
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
994
CreateFile("dir2/dir3/file2");
src/tests/system/kernel/file_corruption/fs/Volume.h
51
status_t CreateFile(mode_t mode,
src/tests/system/kernel/file_corruption/fs/checksumfs.cpp
660
error = volume->CreateFile(permissions, transaction, newFile);
src/tools/fs_shell/command_cp.cpp
1157
error = targetDomain->CreateFile(target, sourceNode->Stat(), file);
src/tools/fs_shell/command_cp.cpp
127
virtual fssh_status_t CreateFile(const char *path,
src/tools/generate_attribute_stores.cpp
84
attributeDir.CreateFile(ref.name, NULL);