Searched refs:ref (Results 276 - 300 of 722) sorted by relevance

<<11121314151617181920>>

/haiku/src/kits/tracker/
H A DEntryIterator.h61 virtual status_t GetNextRef(entry_ref* ref) = 0;
83 virtual status_t GetNextRef(entry_ref* ref);
114 virtual status_t GetNextRef(entry_ref* ref);
147 virtual status_t GetNextRef(entry_ref* ref);
184 virtual status_t GetNextRef(entry_ref* ref);
H A DTests.cpp95 entry_ref ref; member in class:BTrackerPrivate::IconSpewer
285 result = cachingIterator->GetNextRef(&ref);
287 result = walker->GetNextRef(&ref);
290 return &ref;
304 result = cachingIterator->GetNextRef(&ref);
306 result = walker->GetNextRef(&ref);
310 return &ref;
H A DTemplatesMenu.cpp170 entry_ref ref; local
171 entry.GetRef(&ref);
174 message->AddRef("refs_template", &ref);
/haiku/src/preferences/mail/
H A DConfigViews.cpp123 ProtocolSettingsView::ProtocolSettingsView(const entry_ref& ref, argument
131 status_t status = _CreateSettingsView(ref, accountSettings, settings);
135 SetLabel(ref.name);
173 ProtocolSettingsView::_CreateSettingsView(const entry_ref& ref, argument
180 BPath path(&ref);
/haiku/src/kits/app/
H A DAppMisc.cpp87 \param ref A pointer to a pre-allocated entry_ref to be initialized
92 - \c B_BAD_VALUE: \c NULL \a ref.
96 get_app_ref(team_id team, entry_ref *ref, bool traverse) argument
98 status_t error = (ref ? B_OK : B_BAD_VALUE);
106 error = entry.GetRef(ref);
114 \param ref A pointer to a pre-allocated entry_ref to be initialized
119 - \c B_BAD_VALUE: \c NULL \a ref.
123 get_app_ref(entry_ref *ref, bool traverse) argument
125 return get_app_ref(B_CURRENT_TEAM, ref, traverse);
/haiku/src/apps/stylededit/
H A DStyledEditWindow.h35 StyledEditWindow(BRect frame, entry_ref* ref,
46 void OpenFile(entry_ref* ref);
51 bool IsDocumentEntryRef(const entry_ref* ref);
58 status_t _LoadFile(entry_ref* ref,
104 entry_ref* ref = NULL);
/haiku/src/apps/icon-o-matic/
H A DIconEditorApp.cpp236 entry_ref ref;
240 for (int32 i = 0; message->FindRef("refs", i, &ref) == B_OK; i++) {
242 window->Open(ref, true);
244 window->AddReferenceImage(ref);
248 for (int32 i = 0; message->FindRef("refs", i, &ref) == B_OK; i++) {
251 window->Open(ref, false);
255 window->Open(ref, false);
272 entry_ref ref;
275 if (get_ref_for_path(argv[i], &ref) == B_OK) {
277 window->Open(ref);
[all...]
/haiku/src/apps/diskprobe/
H A DDiskProbe.cpp288 entry_ref ref; local
289 status_t status = entry.GetRef(&ref);
301 if (window->Contains(ref, attribute)) {
313 entry.GetRef(&ref);
326 window = new AttributeWindow(rect, &ref, attribute,
329 window = new FileWindow(rect, &ref, &fSettings.Message());
364 entry_ref ref; local
365 while (message->FindRef("refs", index++, &ref) == B_OK) {
371 status_t status = entry.SetTo(&ref, traverseLinks);
383 ref
414 entry_ref ref; local
[all...]
/haiku/src/apps/launchbox/
H A DLaunchButton.cpp110 entry_ref ref; local
111 if (message->FindRef("refs", &ref) == B_OK) {
113 if (ref != *fRef) {
144 SetTo(&ref);
291 LaunchButton::SetTo(const entry_ref* ref) argument
297 if (ref) {
298 fRef = new entry_ref(*ref);
305 BFile file(ref, B_READ_ONLY);
340 entry_ref ref; local
341 if (be_roster->FindApp(fAppSig, &ref)
416 _UpdateIcon(const entry_ref* ref) argument
[all...]
/haiku/src/kits/interface/
H A DDecorInfo.cpp52 DecorInfo::DecorInfo(const entry_ref& ref) argument
54 fRef(ref),
59 BPath path(&ref);
72 DecorInfo::SetTo(const entry_ref& ref) argument
76 BPath path(&ref);
78 fRef = ref;
89 entry_ref ref; local
90 entry.GetRef(&ref);
91 return SetTo(ref);
639 entry_ref ref; local
[all...]
/haiku/src/apps/cortex/RouteApp/
H A DRouteApp.cpp170 entry_ref ref; local
184 err = message->FindRef("directory", &ref);
191 _writeSelectedNodeSet(&ref, name);
193 m_savePanel.GetPanelDirectory(&ref);
194 BEntry e(&ref);
215 entry_ref ref; local
218 err = message->FindRef("refs", n, &ref);
222 _readNodeSet(&ref);
224 m_openPanel.GetPanelDirectory(&ref);
225 BEntry e(&ref);
555 _readNodeSet( entry_ref* ref) argument
[all...]
/haiku/src/apps/cortex/NodeManager/
H A DNodeManager.cpp96 NodeRef* ref) {}
99 const NodeRef* ref) {}
585 NodeRef* ref; local
586 err = getNodeRef(nodeA, &ref);
590 "): no ref for node %" B_PRId32 "\n", nodeA, nodeB, nodeA));
595 return _find_route_recurse(ref, nodeB, &st);
632 NodeRef* ref;
635 &ref);
637 ASSERT(ref);
640 ref,
95 nodeCreated( NodeRef* ref) argument
98 nodeDeleted( const NodeRef* ref) argument
1035 NodeRef* ref = new NodeRef( local
1125 NodeRef* ref = new NodeRef(node->Node(), this, nodeFlags, 0); local
1351 NodeRef* ref; local
1393 getNextRef( NodeRef** ref, void** cookie) argument
1681 _addRef( NodeRef* ref) argument
1746 NodeRef* ref = new NodeRef(node, this, nodeFlags, nodeImplFlags); local
1949 NodeRef* ref = 0; local
2162 NodeRef* ref; local
[all...]
/haiku/src/build/libbe/storage/
H A DFile.cpp54 \param ref the entry_ref referring to the file
58 BFile::BFile(const entry_ref *ref, uint32 openMode) argument
63 SetTo(ref, openMode);
131 \param ref the entry_ref referring to the file
146 - \c B_BAD_VALUE: \c NULL \a ref or bad \a openMode.
157 BFile::SetTo(const entry_ref *ref, uint32 openMode) argument
161 if (!ref)
164 int fd = _kern_open_entry_ref(ref->device, ref->directory, ref
[all...]
H A DMimeType.cpp356 BMimeType::GuessMimeType(const entry_ref *ref, BMimeType *type) argument
358 if (!ref || !type)
363 status_t error = entry.SetTo(ref);
382 if (file.SetTo(ref, B_READ_ONLY) == B_OK
415 entry_ref ref;
416 status_t error = get_ref_for_path(filename, &ref);
417 return (error == B_OK ? GuessMimeType(&ref, type) : error);
/haiku/src/kits/storage/
H A DNodeMonitorHandler.cpp11 entry_ref * ref)
13 ref->device = device;
14 ref->directory = directory;
15 return ref->set_name(name);
20 NodeMonitorHandler::make_node_ref(dev_t device, ino_t node, node_ref * ref) argument
22 ref->device = device;
23 ref->node = node;
9 make_entry_ref(dev_t device, ino_t directory, const char * name, entry_ref * ref) argument
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DParseCommandLine.cpp320 entry_ref ref; local
321 status_t status = entry.GetRef(&ref);
327 message.AddRef("refs", &ref);
332 entry_ref ref; local
333 if (entry.GetRef(&ref) == B_OK) {
335 be_roster->Launch(&ref, argc - 1, &argv[1]);
337 be_roster->Launch(&ref);
/haiku/src/kits/media/
H A DDormantNodeManager.cpp200 entry_ref ref; local
201 status_t status = get_ref_for_path(path, &ref);
203 ERROR("DormantNodeManager::RegisterAddon failed, couldn't get ref "
209 request.ref = ref;
256 entry_ref ref = reply.ref;
257 return path->SetTo(&ref);
/haiku/src/bin/
H A Dreindex.cpp231 entry_ref ref; local
232 if (entry->GetRef(&ref) == B_OK) {
234 if (fs_stat_index(ref.device, attrName, &indexInfo) != B_OK)
235 fs_create_index(ref.device, attrName, attr->Type(), 0);
269 entry_ref ref; local
270 if (to.GetRef(&ref) != B_OK) {
275 dev_t targetDevice = ref.device;
H A Dquery.cpp94 entry_ref ref; local
96 if (entry.GetRef(&ref) != B_OK || BLocaleRoster::Default()
97 ->GetLocalizedFileName(string, ref) != B_OK)
/haiku/headers/os/storage/
H A DDirectory.h23 BDirectory(const entry_ref *ref);
31 status_t SetTo(const entry_ref *ref);
50 virtual status_t GetNextRef(entry_ref *ref);
H A DNode.h36 BNode(const entry_ref* ref);
47 status_t SetTo(const entry_ref* ref);
101 status_t _SetTo(const entry_ref* ref, bool traverse);
/haiku/src/apps/mail/
H A DMailSupport.cpp143 entry_ref ref; local
144 entry.GetRef(&ref);
145 message->AddRef("ref", &ref);
/haiku/src/kits/mail/
H A DFileConfigView.cpp86 entry_ref ref; local
87 if (msg->FindRef("refs", &ref) == B_OK) {
88 BEntry entry(&ref);
/haiku/src/apps/mediaplayer/playlist/
H A DFilePlaylistItem.h19 FilePlaylistItem(const entry_ref& ref);
60 status_t AddRef(const entry_ref& ref);
63 status_t AddImageRef(const entry_ref& ref);
/haiku/src/add-ons/print/transports/serial_port/
H A DSerialTransport.cpp136 entry_ref ref;
137 while (dir.GetNextRef(&ref) == B_OK)
138 msg->AddString("port_id", ref.name);

Completed in 225 milliseconds

<<11121314151617181920>>