Searched refs:nodeRef (Results 26 - 50 of 65) sorted by relevance

123

/haiku/src/apps/deskbar/
H A DStatusView.cpp107 printf("node_ref: %" B_PRIdDEV ", %" B_PRIdINO "\n", item->nodeRef.device,
108 item->nodeRef.node);
529 watch_node(&(item->nodeRef), B_STOP_WATCHING, this, Window());
542 TReplicantTray::DeskbarItemFor(node_ref& nodeRef) argument
549 if (item->nodeRef == nodeRef)
574 TReplicantTray::NodeExists(node_ref& nodeRef) argument
576 return DeskbarItemFor(nodeRef) != NULL;
619 node_ref nodeRef; local
620 if (message->FindInt32("device", &(nodeRef
713 AddItem(int32 id, node_ref nodeRef, BEntry& entry, bool isAddOn) argument
743 UnloadAddOn(node_ref* nodeRef, dev_t* device, bool which, bool removeAll) argument
[all...]
H A DStatusView.h66 node_ref nodeRef; // node_ref to boot vol item member in struct:DeskbarItemInfo
138 DeskbarItemInfo* DeskbarItemFor(node_ref &nodeRef);
140 bool NodeExists(node_ref &nodeRef);
143 status_t AddItem(int32 id, node_ref 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...]
/haiku/src/kits/tracker/
H A DVirtualDirectoryPoseView.h52 int32 opcode, const node_ref& nodeRef,
H A DVirtualDirectoryManager.h84 Info* _InfoForNodeRef(const node_ref& nodeRef) const;
H A DModel.cpp277 Model::SetTo(const node_ref* dirNode, const node_ref* nodeRef, argument
287 fStatBuf.st_dev = nodeRef->device;
288 fStatBuf.st_ino = nodeRef->node;
1420 node_ref nodeRef; local
1421 fNode->GetNodeRef(&nodeRef);
1423 nodeRef.node, nodeRef.device));
/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);
/haiku/src/apps/cortex/MediaRoutingView/
H A DMediaNodePanel.h85 NodeRef *nodeRef);
/haiku/src/servers/package/
H A DRoot.h32 status_t Init(const node_ref& nodeRef,
H A DRoot.cpp171 Root::Init(const node_ref& nodeRef, bool isSystemRoot) argument
173 fNodeRef = 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/servers/app/font/
H A DFontManager.h71 status_t _AddFont(FT_Face face, node_ref nodeRef,
H A DFontStyle.h41 FontStyle(node_ref& nodeRef, const char* path,
H A DGlobalFontManager.h84 font_directory* _FindDirectory(node_ref& nodeRef);
H A DFontStyle.cpp31 FontStyle::FontStyle(node_ref& nodeRef, const char* path, FT_Face face, argument
37 fNodeRef(nodeRef),
H A DFontManager.cpp298 FontManager::_AddFont(FT_Face face, node_ref nodeRef, const char* path, argument
327 FontStyle* style = new (std::nothrow) FontStyle(nodeRef, path, face, this);
/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/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/preferences/screensaver/
H A DScreenSaverWindow.cpp705 node_ref nodeRef; local
708 message->FindInt32("device", &nodeRef.device);
709 message->FindInt64("directory", &nodeRef.node);
711 BDirectory dir(&nodeRef);
805 node_ref nodeRef; local
807 dir.GetNodeRef(&nodeRef);
808 watch_node(&nodeRef, B_WATCH_DIRECTORY, this);
/haiku/src/apps/people/
H A DPersonWindow.cpp445 node_ref nodeRef;
448 node.GetNodeRef(&nodeRef);
463 if (watch_node(&nodeRef, flags, this) != B_OK) {
/haiku/src/apps/mediaplayer/playlist/
H A DFilePlaylistItem.cpp590 node_ref nodeRef; local
591 nodeRef.device = (*refs)[i].device;
592 nodeRef.node = (*refs)[i].directory;
593 BDirectory originalDir(&nodeRef);
/haiku/src/add-ons/kernel/file_cache/
H A Dlaunch_speedup.cpp568 node_ref nodeRef; local
569 while (parse_node_ref(line, nodeRef, &line)) {
570 struct node *node = new_node(nodeRef.device, nodeRef.node);
/haiku/src/apps/mail/
H A DMailWindow.h104 status_t GetMailNodeRef(node_ref &nodeRef) const;

Completed in 228 milliseconds

123