Searched refs:nodeFlags (Results 1 – 9 of 9) sorted by relevance
/haiku/src/add-ons/kernel/file_systems/packagefs/nodes/ |
H A D | UnpackingNode.cpp | 39 UnpackingNode::NodeUninitVFS(PackageNode* packageNode, uint32& nodeFlags) in NodeUninitVFS() argument 42 if ((nodeFlags & NODE_FLAG_VFS_INIT_ERROR) == 0) in NodeUninitVFS() 45 nodeFlags &= ~(uint32)NODE_FLAG_VFS_INIT_ERROR; in NodeUninitVFS() 53 uint32& nodeFlags) in NodeReinitVFS() argument 55 if ((nodeFlags & NODE_FLAG_KNOWN_TO_VFS) == 0) in NodeReinitVFS() 59 bool hadInitError = (nodeFlags & NODE_FLAG_VFS_INIT_ERROR) != 0; in NodeReinitVFS() 60 nodeFlags &= ~(uint32)NODE_FLAG_VFS_INIT_ERROR; in NodeReinitVFS() 67 nodeFlags |= NODE_FLAG_VFS_INIT_ERROR; in NodeReinitVFS()
|
H A D | UnpackingNode.h | 40 uint32& nodeFlags); 44 uint32& nodeFlags);
|
/haiku/src/kits/storage/ |
H A D | Directory.cpp | 273 BDirectory::Contains(const char* path, int32 nodeFlags) const in Contains() 288 return Contains(&entry, nodeFlags); in Contains() 293 BDirectory::Contains(const BEntry* entry, int32 nodeFlags) const in Contains() 299 if (nodeFlags != B_ANY_NODE) { in Contains() 302 if ((nodeFlags & B_FILE_NODE) != 0) in Contains() 304 if (!result && (nodeFlags & B_DIRECTORY_NODE) != 0) in Contains() 306 if (!result && (nodeFlags & B_SYMLINK_NODE) != 0) in Contains()
|
/haiku/src/build/libbe/storage/ |
H A D | Directory.cpp | 253 BDirectory::Contains(const char* path, int32 nodeFlags) const in Contains() 268 return Contains(&entry, nodeFlags); in Contains() 273 BDirectory::Contains(const BEntry* entry, int32 nodeFlags) const in Contains() 279 if (nodeFlags != B_ANY_NODE) { in Contains() 282 if ((nodeFlags & B_FILE_NODE) != 0) in Contains() 284 if (!result && (nodeFlags & B_DIRECTORY_NODE) != 0) in Contains() 286 if (!result && (nodeFlags & B_SYMLINK_NODE) != 0) in Contains()
|
/haiku/src/apps/cortex/NodeManager/ |
H A D | NodeManager.h | 355 uint32 nodeFlags=0); 368 uint32 nodeFlags=0, 378 uint32 nodeFlags=0); 473 uint32 nodeFlags,
|
H A D | NodeManager.cpp | 976 uint32 nodeFlags) { in instantiate() argument 1038 nodeFlags, // | NodeRef::NO_ROSTER_WATCH, // +++++ e.moon 11oct99 in instantiate() 1057 uint32 nodeFlags, in instantiate() argument 1082 err = instantiate(info, outRef, timeout, nodeFlags); in instantiate() 1118 uint32 nodeFlags) { in reference() argument 1125 NodeRef* ref = new NodeRef(node->Node(), this, nodeFlags, 0); in reference() 1728 uint32 nodeFlags, in _addRefFor() argument 1746 NodeRef* ref = new NodeRef(node, this, nodeFlags, nodeImplFlags); in _addRefFor()
|
/haiku/headers/os/storage/ |
H A D | Directory.h | 44 bool Contains(const char *path, int32 nodeFlags = B_ANY_NODE) const; 45 bool Contains(const BEntry *entry, int32 nodeFlags = B_ANY_NODE) const;
|
/haiku/headers/build/os/storage/ |
H A D | Directory.h | 42 bool Contains(const char *path, int32 nodeFlags = B_ANY_NODE) const; 43 bool Contains(const BEntry *entry, int32 nodeFlags = B_ANY_NODE) const;
|
/haiku/docs/user/storage/ |
H A D | Directory.dox | 307 \fn bool BDirectory::Contains(const char* path, int32 nodeFlags) const 312 Only entries that match the node flavor specified by \a nodeFlags are 326 \param nodeFlags Any of the following: 332 \returns \c true if the entry exists and its kind does match \a nodeFlags 341 \fn bool BDirectory::Contains(const BEntry* entry, int32 nodeFlags) const 345 Only entries that match the node flavor specified by \a nodeFlags are 352 \param nodeFlags Any of the following:
|