Searched refs:create (Results 1 - 25 of 127) sorted by relevance

123456

/haiku/src/apps/cortex/addons/common/
H A DIAudioFilterOpFactory.h41 // algorithm family, since create() provides no way to select a
42 // particular algorithm. The stock create() should produce an
44 // always overload create() to provide more options.
50 // overloading the create() method with parameters for each
65 // The basic create method. subclasses devoted to producing
70 virtual IAudioFilterOp* create(
/haiku/src/apps/cortex/Persistence/
H A DXMLElementMapping.h64 virtual IPersistent* create() const =0;
78 IPersistent* create() const { function in class:Mapping
/haiku/src/apps/deskbar/
H A DDeskbarUtils.h52 status_t GetDeskbarSettingsDirectory(BPath& _path, bool create = false);
H A DDeskbarUtils.cpp112 GetDeskbarSettingsDirectory(BPath& _path, bool create) argument
114 status_t error = find_directory(B_USER_SETTINGS_DIRECTORY, &_path, create);
122 return create ? create_directory(_path.Path(), 0755) : error;
/haiku/headers/os/package/
H A DPackageRoster.h63 bool create = false) const;
65 bool create = false) const;
68 bool create = false) const;
70 bool create = false) const;
100 status_t _GetRepositoryPath(BPath* path, bool create,
/haiku/build/scripts/
H A Dbuild_haiku_repository24 # create a clean repository directory
40 "$packageRepo" create "$repositoryDir/repo.info" "$packageDir"/*.hpkg
42 # create the checksum file
/haiku/src/bin/debug/strace/
H A Darea.cpp66 Syscall *create = get_syscall("_kern_create_area"); local
67 create->GetParameter("address")->SetInOut(true);
68 create->GetParameter("addressSpec")->SetHandler(
70 create->GetParameter("protection")->SetHandler(
/haiku/src/system/kernel/util/
H A Dhostname.cpp20 get_path(char *path, bool create) argument
22 status_t status = __find_directory(B_SYSTEM_SETTINGS_DIRECTORY, -1, create,
28 if (create)
/haiku/src/system/libroot/posix/unistd/
H A Dhostname.cpp20 get_path(char *path, bool create) argument
22 status_t status = __find_directory(B_SYSTEM_SETTINGS_DIRECTORY, -1, create,
28 if (create)
/haiku/headers/os/drivers/
H A Dlocked_pool.h50 // create new pool
62 locked_pool_cookie (*create)(int block_size, int alignment, int next_ofs, member in struct:__anon257
/haiku/src/tests/kits/interface/bshelf/Container/
H A DContainerApplication.h33 BEntry *archive_file(bool create = TRUE);
H A DContainerApplication.cpp43 create_directory(parent.Path(), 0777); // create directory
58 BEntry *ContainerApplication :: archive_file(bool create) argument
69 if (create)
72 create_directory(parent.Path(), 0777); // create directory
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DAttribute.h16 bool create; member in struct:attr_cookie
/haiku/src/apps/packageinstaller/
H A DInstalledPackageInfo.h37 bool create = false);
43 bool create = false);
H A DInstalledPackageInfo.cpp82 const char *version, bool create)
89 SetTo(packageName, version, create);
108 bool create)
112 fCreate = create;
134 // If not, create it
184 if (create) {
81 InstalledPackageInfo(const char *packageName, const char *version, bool create) argument
107 SetTo(const char *packageName, const char *version, bool create) argument
/haiku/src/kits/package/
H A DPackageRoster.cpp77 BPackageRoster::GetCommonRepositoryConfigPath(BPath* path, bool create) const
79 return _GetRepositoryPath(path, create, B_SYSTEM_SETTINGS_DIRECTORY);
84 BPackageRoster::GetUserRepositoryConfigPath(BPath* path, bool create) const
86 return _GetRepositoryPath(path, create, B_USER_SETTINGS_DIRECTORY);
91 BPackageRoster::GetCommonRepositoryCachePath(BPath* path, bool create) const
93 return _GetRepositoryPath(path, create, B_SYSTEM_CACHE_DIRECTORY);
98 BPackageRoster::GetUserRepositoryCachePath(BPath* path, bool create) const
100 return _GetRepositoryPath(path, create, B_USER_CACHE_DIRECTORY);
352 BPackageRoster::_GetRepositoryPath(BPath* path, bool create, argument
364 if (create) {
[all...]
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DAttribute.h20 bool create; member in struct:attr_cookie
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A Dl2cap_command.cpp107 net_buffer* _m = gBufferModule->create(sizeof(struct _cmd_rej));
146 net_buffer* _m = gBufferModule->create(sizeof(struct _con_req));
175 net_buffer* _m = gBufferModule->create(sizeof(struct _con_rsp));
206 net_buffer* _m = gBufferModule->create(sizeof(struct _cfg_req));
242 net_buffer* _m = gBufferModule->create(sizeof(struct _cfg_rsp));
278 net_buffer* _m = gBufferModule->create(sizeof(struct _discon_req));
308 net_buffer* _m = gBufferModule->create(sizeof(struct _discon_rsp));
337 net_buffer* _m = gBufferModule->create(sizeof(l2cap_cmd_hdr_t));
358 net_buffer* _m = gBufferModule->create(sizeof(struct _info_req));
387 net_buffer* _m = gBufferModule->create(sizeo
[all...]
/haiku/3rdparty/pulkomandy/
H A Dunbootstrap.sh35 package create ../$name
/haiku/src/tests/kits/interface/bshelf/
H A DShelfTest.cpp35 BEntry *archive_file(bool create = TRUE);
96 BEntry *archive_file(bool create) argument
107 if (create) {
/haiku/src/add-ons/kernel/network/protocols/ipv4/
H A Dmulticast.cpp176 net_interface *interface, GroupInterface* &state, bool create)
180 if (state == NULL && create) {
198 } else if (create)
175 GetState(const AddressType &groupAddress, net_interface *interface, GroupInterface* &state, bool create) argument
/haiku/src/tests/add-ons/kernel/file_systems/random_read/
H A Drandom_read.cpp46 fprintf(stderr, "Could not create test file: %s!\n", strerror(status));
53 fprintf(stderr,"Could not create the whole test file!\n");
66 fprintf(stderr, "Could not open test file! Run \"randomread create "
68 "This will create a file named \"%s\" in the current directory.\n",
81 fprintf(stderr, "no memory to create read buffer.\n");
188 bool create = false; local
191 if (!strcmp(argv[1], "create")) {
192 create = true;
203 printf("You can either create a test file or perform the test.\n"
204 " Create:\t%s create [filesiz
[all...]
/haiku/src/tests/servers/app/benchmark/
H A DBenchmark.cpp26 Test* (*create)(); member in struct:test_info
144 // find and create the test
149 test = (kTestInfos[i].create)();
154 fprintf(stderr, "Insufficient memory to create the test. Sorry.\n");
/haiku/headers/os/media/
H A DFileInterface.h34 bool create, bigtime_t* _time) = 0;
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DAttribute.h16 bool create; member in struct:attr_cookie

Completed in 217 milliseconds

123456