Searched refs:nodeRef (Results 1 - 25 of 65) sorted by path

123

/haiku/headers/private/print/
H A DPrinter.h30 BPrinter(const node_ref& nodeRef);
36 status_t SetTo(const node_ref& nodeRef);
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DClientVolume.cpp272 ClientVolume::GetNode(const node_ref& nodeRef) argument
274 return GetNode(nodeRef.device, nodeRef.node);
H A DClientVolume.h64 Node* GetNode(const node_ref& nodeRef);
H A DSecurityContext.cpp228 node_ref nodeRef;
229 if (get_node_ref_for_path(path, &nodeRef) != B_OK) {
230 nodeRef.device = -1;
231 nodeRef.node = -1;
233 return Init(name, nodeRef, path);
/haiku/src/add-ons/mail_daemon/inbound_filters/match_header/
H A DRuleFilter.cpp81 node_ref nodeRef; local
82 status_t status = dir.GetNodeRef(&nodeRef);
86 ref.device = nodeRef.device;
87 ref.directory = nodeRef.node;
/haiku/src/apps/cortex/MediaRoutingView/
H A DMediaNodePanel.h85 NodeRef *nodeRef);
/haiku/src/apps/mail/
H A DPeople.cpp133 PersonList::EntryRemoved(QueryList& source, const node_ref& nodeRef) argument
137 PersonMap::iterator found = fPersonMap.find(nodeRef);
192 GroupList::EntryRemoved(QueryList& source, const node_ref& nodeRef) argument
H A DPeople.h58 const node_ref& nodeRef);
82 const node_ref& nodeRef);
H A DQueryList.cpp133 node_ref nodeRef(device, node);
134 _RemoveEntry(nodeRef);
159 QueryList::_RemoveEntry(const node_ref& nodeRef) argument
162 RefMap::iterator found = fRefs.find(nodeRef);
164 _NotifyEntryRemoved(nodeRef);
181 QueryList::_NotifyEntryRemoved(const node_ref& nodeRef) argument
187 fListeners.ItemAt(index)->EntryRemoved(*this, nodeRef);
240 node_ref nodeRef; local
241 if (entry.GetNodeRef(&nodeRef) == B_OK)
242 map.insert(std::make_pair(nodeRef, re
[all...]
H A DQueryList.h28 const node_ref& nodeRef) = 0;
53 void _RemoveEntry(const node_ref& nodeRef);
56 void _NotifyEntryRemoved(const node_ref& nodeRef);
/haiku/src/apps/showimage/
H A DImageFileNavigator.cpp255 node_ref nodeRef; local
256 nodeRef.device = ref.device;
257 nodeRef.node = ref.directory;
259 fFolder.SetTo(&nodeRef);
/haiku/src/kits/print/
H A DPrinter.cpp63 BPrinter::BPrinter(const node_ref& nodeRef) argument
66 SetTo(nodeRef);
101 BPrinter::SetTo(const node_ref& nodeRef) argument
103 SetTo(BDirectory(&nodeRef));
276 node_ref nodeRef;
277 nodeRef.device = fPrinterEntryRef.device;
278 nodeRef.node = fPrinterEntryRef.directory;
280 return watch_node(&nodeRef, B_WATCH_DIRECTORY, *fListener);
/haiku/src/kits/storage/
H A DAddOnMonitorHandler.cpp153 node_ref nodeRef; local
158 && directory.GetNodeRef(&nodeRef) == B_OK) {
159 status_t result = this->AddDirectory(&nodeRef);
641 node_ref nodeRef; local
642 make_node_ref(device, directory, &nodeRef);
643 return _FindDirectory(nodeRef, it, fDirectories.end());
660 node_ref nodeRef; local
661 make_node_ref(device, directory, &nodeRef);
662 return _FindDirectory(nodeRef, it, end);
H A DPathMonitor.cpp350 Node(const node_ref& nodeRef) argument
352 fNodeRef(nodeRef)
451 static Directory* Create(const node_ref& nodeRef) argument
453 Directory* directory = new(std::nothrow) Directory(nodeRef);
510 Directory(const node_ref& nodeRef) argument
512 Node(nodeRef)
564 const node_ref& nodeRef, bool isDirectory,
567 const node_ref& nodeRef, bool dryRun,
572 const node_ref& nodeRef,
576 Ancestor* _GetAncestor(const node_ref& nodeRef) cons
1061 node_ref nodeRef; local
1093 node_ref nodeRef; local
1119 node_ref nodeRef; local
1340 node_ref nodeRef; local
1375 _EntryCreated(const NotOwningEntryRef& entryRef, const node_ref& nodeRef, bool isDirectory, bool dryRun, bool notify, Entry** _entry) argument
1505 _EntryRemoved(const NotOwningEntryRef& entryRef, const node_ref& nodeRef, bool dryRun, bool notify, Entry** _keepEntry) argument
1604 _CheckDuplicateEntryNotification(int32 opcode, const entry_ref& toEntryRef, const node_ref& nodeRef, const entry_ref* fromEntryRef) argument
1643 _AddNode(const node_ref& nodeRef, bool isDirectory, bool notify, Entry* entry, Node** _node) argument
1755 _AddEntryIfNeeded(Directory* directory, const char* name, const node_ref& nodeRef, bool isDirectory, bool notify, Entry** _entry) argument
1839 _NotifyEntryCreatedOrRemoved(const entry_ref& entryRef, const node_ref& nodeRef, const char* path, bool isDirectory, int32 opcode) const argument
1871 _NotifyEntryMoved(const entry_ref& fromEntryRef, const entry_ref& toEntryRef, const node_ref& nodeRef, const char* fromPath, const char* path, bool isDirectory, bool wasAdded, bool wasRemoved) const argument
[all...]
/haiku/src/kits/tracker/
H A DPendingNodeMonitorCache.cpp105 PendingNodeMonitorCache::RemoveEntries(const node_ref* nodeRef) argument
109 if (fList.ItemAt(index)->Match(nodeRef))
H A DVirtualDirectoryManager.cpp432 node_ref nodeRef(buffer->d_dev, buffer->d_ino);
435 nodeRef);
441 buffer->d_dev = nodeRef.device;
442 buffer->d_ino = nodeRef.node;
496 node_ref nodeRef;
497 error = definitionFile.GetNodeRef(&nodeRef);
507 info = parentInfo->CreateChild(nodeRef, entryRef);
604 VirtualDirectoryManager::_InfoForNodeRef(const node_ref& nodeRef) const
606 NodeRefInfoMap::const_iterator it = fInfos.find(nodeRef);
712 node_ref nodeRef;
[all...]
H A DVirtualDirectoryManager.h84 Info* _InfoForNodeRef(const node_ref& nodeRef) const;
H A DVirtualDirectoryPoseView.h52 int32 opcode, const node_ref& nodeRef,
/haiku/src/kits/translation/
H A DTranslatorRosterPrivate.h96 translator_item* _FindTranslator(node_ref& nodeRef);
101 bool _IsKnownDirectory(const node_ref& nodeRef)
104 void _RemoveTranslators(const node_ref* nodeRef,
106 void _EntryAdded(const node_ref& nodeRef,
/haiku/src/servers/package/
H A DPackageDaemon.h40 status_t _GetOrCreateRoot(const node_ref& nodeRef,
42 Root* _FindRoot(const node_ref& nodeRef) const;
H A DRoot.cpp171 Root::Init(const node_ref& nodeRef, bool isSystemRoot) argument
173 fNodeRef = nodeRef;
H A DRoot.h32 status_t Init(const node_ref& nodeRef,
H A DVolumeState.h23 Package* FindPackage(const node_ref& nodeRef) const;
56 VolumeState::FindPackage(const node_ref& nodeRef) const
58 return fPackagesByNodeRef.Lookup(nodeRef);
/haiku/src/tests/kits/storage/
H A DVolumeTest.cpp526 node_ref nodeRef = node_ref())
548 CHK(parentDevice == nodeRef.device);
549 CHK(directory == nodeRef.node);
584 node_ref nodeRef; local
585 CHK(BDirectory(testMountPoint).GetNodeRef(&nodeRef) == B_OK);
592 CheckWatchingMessage(true, device, fApplication->Handler(), nodeRef);
609 CheckWatchingMessage(true, device, *handler2, nodeRef);
/haiku/src/tests/kits/storage/testapps/
H A DPathMonitorTest2.cpp116 node_ref_to_string(const node_ref& nodeRef) argument
118 return BString().SetToFormat("%" B_PRIdDEV ":%" B_PRIdINO, nodeRef.device,
119 nodeRef.node);
361 node_ref nodeRef; local
363 if (message.FindInt32("device", &nodeRef.device) != B_OK
364 || message.FindInt64("node", &nodeRef.node) != B_OK
371 entryRef.device = nodeRef.device;
373 return nodeRef == fNodeRef && entryRef == fEntryRef;
380 node_ref nodeRef; local
382 if (message.FindInt32("node device", &nodeRef
405 node_ref nodeRef; local
[all...]

Completed in 451 milliseconds

123