Searched refs:exists (Results 1 - 15 of 15) sorted by relevance

/haiku/headers/private/kernel/util/
H A DVectorSet.h76 int32 _FindInsertionIndex(const Value &value, bool &exists) const;
130 bool exists = false; local
131 int32 index = _FindInsertionIndex(value, exists);
132 if (exists) {
150 bool exists = false; local
151 int32 index = _FindInsertionIndex(value, exists);
152 if (!exists)
314 bool exists = false; local
315 int32 index = _FindInsertionIndex(value, exists);
316 if (!exists)
332 bool exists = false; local
366 bool exists = false; local
407 bool exists = false; local
[all...]
H A DVectorMap.h104 int32 _FindInsertionIndex(const Key &key, bool &exists) const;
303 bool exists = false;
304 int32 index = _FindInsertionIndex(key, exists);
305 if (exists) {
336 bool exists = false; local
337 int32 index = _FindInsertionIndex(key, exists);
338 if (!exists)
356 bool exists = false; local
357 int32 index = _FindInsertionIndex(key, exists);
358 if (!exists)
373 bool exists = false; local
537 bool exists = false; local
555 bool exists = false; local
589 bool exists = false; local
630 bool exists = false; local
[all...]
/haiku/src/apps/haikudepot/util/
H A DStorageUtils.cpp123 bool exists; local
127 result = ExistsObject(path, &exists, &isDirectory, NULL);
129 if (result == B_OK && exists && !isDirectory) {
135 if (result == B_OK && exists)
157 bool exists = false; local
164 result = ExistsObject(directoryEntryPath, &exists, &isDirectory,
248 /* This method checks to see if a file object exists at the path specified. If
249 * something does exist then the value of the 'exists' pointer is set to true.
255 bool* exists,
261 if (exists !
254 ExistsObject(const BPath& path, bool* exists, bool* isDirectory, off_t* size) argument
301 bool exists = false; local
[all...]
H A DStorageUtils.h35 bool* exists,
/haiku/src/apps/processcontroller/
H A DMemoryBarMenuItem.cpp217 bool exists = false; local
220 exists = true;
230 if (!exists) {
232 exists = get_team_info(fTeamID, &info) == B_OK;
234 if (exists) {
/haiku/src/tools/
H A Dhardlink_packages.py92 if not (os.path.exists(args_dst_packages + greatestVersion)):
96 # also hardlink the source package, if one exists
99 if os.path.exists(args_src + srcpkg):
100 if not os.path.exists(args_dst_packages + srcpkg):
117 print("dir " + listhash + " already exists. No changes?")
/haiku/src/apps/haikudepot/ui/
H A DApp.cpp538 bool exists = false; local
545 status = StorageUtils::ExistsObject(testFilePath, &exists, NULL, NULL);
546 return !exists;
621 bool exists; local
625 lastVersionPath, &exists, NULL, &size) != B_OK) {
626 HDERROR("clear cache; unable to check version file exists");
632 if (exists && StorageUtils::AppendToString(lastVersionPath, lastVersion)
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DAttribute.cpp127 bool exists = Get(name) == B_OK;
128 if (exists && (openMode & O_EXCL) != 0)
143 if (exists && (openMode & O_TRUNC) != 0)
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A DBeOSKernelVolume.cpp29 AttributeCookie(const char* name, uint32 type, int openMode, bool exists, argument
33 fExists(exists),
844 // check whether the attribute already exists
848 bool exists
852 // create: fail, if attribute exists and non-existence was required
853 if (exists && (openMode & O_EXCL))
857 if (!exists)
866 openMode, exists, create);
/haiku/src/apps/mail/
H A DEnclosures.cpp208 bool exists = false; local
214 exists = true;
218 if (exists == false) {
/haiku/src/apps/deskbar/
H A DBarWindow.cpp542 bool exists = false; local
544 exists = fBarView->ItemExists(id, shelf);
546 exists = fBarView->ItemExists(name, shelf);
548 replyMsg.AddBool("exists", exists);
/haiku/src/build/libroot/
H A Dfs_attr_generic.cpp63 "directory base directory exists, but is no directory!\n");
300 "directory for node %lld exists, but is no directory!\n",
319 // make sure the directory exists
493 // check, if the attribute already exists
495 bool exists = (lstat(attrPath.c_str(), &st) == 0); local
503 if (!exists) {
H A Dfs.cpp665 bool exists = true; local
668 exists = false;
674 if (exists && S_ISLNK(st.st_mode) && (openMode & O_NOTRAVERSE) != 0) {
694 if (exists && S_ISDIR(st.st_mode))
/haiku/src/tests/kits/storage/
H A DResourcesTest.cpp533 ReadResTest(BResources& resources, const ResourceInfo& info, bool exists) argument
535 if (exists) {
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex155 As no field exists, that tells about the size of the PEF container (the

Completed in 405 milliseconds