Searched refs:ref (Results 476 - 500 of 722) sorted by relevance

<<11121314151617181920>>

/haiku/src/kits/app/
H A DApplication.cpp384 // get app executable ref
385 entry_ref ref; local
387 fInitError = BPrivate::get_app_ref(&ref);
389 DBG(OUT("BApplication::InitData(): Failed to get app ref: %s\n",
398 BFile file(&ref, B_READ_ONLY);
427 if (BRoster::Private().IsAppRegistered(&ref, team, 0, &preRegistered,
451 fInitError = BRoster::Private().AddApplication(signature, &ref,
477 if (path.SetTo(&otherAppInfo.ref) == B_OK)
519 SetName(ref.name);
523 if (registerApp && path.SetTo(&ref)
1051 entry_ref ref; local
1679 entry_ref ref; local
[all...]
/haiku/src/apps/mediaplayer/
H A DMainApp.cpp116 // store the current file panel ref in the global settings
184 // each new ref received.
243 entry_ref ref; local
244 if (entry.GetRef(&ref) == B_OK && message.AddRef("refs", &ref) == B_OK)
490 entry_ref ref; local
491 for (int32 i = 0; message->FindRef("refs", i, &ref) == B_OK; i++)
492 targetMessage.AddRef("refs", &ref);
/haiku/src/apps/text_search/
H A DGrepper.cpp179 entry_ref ref; local
180 entry.GetRef(&ref);
186 message.AddRef("ref", &ref);
434 entry_ref ref; local
435 entry.GetRef(&ref);
436 message.AddRef("ref", &ref);
/haiku/src/kits/tracker/infowindow/
H A DInfoWindow.cpp321 entry_ref ref; local
324 if (message->FindRef("refs", &ref) == B_OK
325 && targetEntry.SetTo(&ref, true) == B_OK
345 BEntry target(&ref);
591 BInfoWindow::OpenFilePanel(const entry_ref* ref) argument
598 fFilePanel = new BFilePanel(B_OPEN_PANEL, &runner, ref,
/haiku/src/kits/interface/
H A DAboutWindow.cpp244 entry_ref ref;
245 if (be_roster->FindApp(signature, &ref) != B_OK)
248 BFile file(&ref, B_READ_ONLY);
305 entry_ref ref;
306 if (be_roster->FindApp(signature, &ref) != B_OK)
309 BFile file(&ref, B_READ_ONLY);
/haiku/src/servers/registrar/
H A DMIMEManager.cpp210 entry_ref ref; local
216 err = message->FindRef("file ref", &ref);
218 err = fDatabase.GuessMimeType(&ref, &str);
360 entry_ref ref; local
361 err = message->FindRef("app hint", &ref);
363 err = fDatabase.SetAppHint(type, &ref);
/haiku/src/kits/tracker/
H A DQueryPoseView.cpp218 BQueryPoseView::InitDirentIterator(const entry_ref* ref) argument
220 BEntry entry(ref);
395 QueryRefFilter::Filter(const entry_ref* ref, BNode* node, stat_beos* st, argument
400 && tracker->InTrashNode(ref));
642 QueryEntryListCollection::GetNextRef(entry_ref* ref)
651 ItemAt(fQueryListRep->fQueryListIndex)->GetNextRef(ref);
H A DNavMenu.cpp107 // if the incoming ref matches any ref in the drag ref
108 // then we can try the next incoming ref
169 // bad entry ref (bad symlink?), disable
185 SpringLoadedFolderAddUniqueTypeToList(entry_ref* ref, argument
188 if (ref == NULL || typeslist == NULL)
191 // get the mime type for the current ref
193 BNode node(ref);
205 BEntry entry(ref, tru
243 entry_ref ref; local
377 SetNavDir(const entry_ref* ref) argument
[all...]
/haiku/src/tests/kits/storage/
H A DEntryTest.cpp54 entry_ref ref; member in struct:TestEntry
325 entry_ref ref; local
326 CPPUNIT_ASSERT( entry.GetRef(&ref) == B_OK );
327 // We can't get a ref of an entry with a too long path name yet.
329 CPPUNIT_ASSERT( ref == testEntry->get_ref() );
1393 entry_ref ref, ref2; local
1397 CPPUNIT_ASSERT( entry.GetRef(&ref) == B_NO_INIT );
1402 CPPUNIT_ASSERT( entry.GetRef(&ref) == B_NO_INIT );
1404 // ref for root dir
1407 CPPUNIT_ASSERT( entry.GetRef(&ref)
2130 get_entry_ref_for_entry(const char *dir, const char *leaf, entry_ref *ref) argument
2177 entry_ref ref; local
2213 entry_ref ref, ref2; local
[all...]
H A DPathTest.cpp494 entry_ref ref; local
495 CPPUNIT_ASSERT( entry.GetRef(&ref) == B_OK );
496 BPath path(&ref);
505 entry_ref ref; local
506 CPPUNIT_ASSERT( entry.GetRef(&ref) == B_OK );
507 BPath path(&ref);
516 entry_ref ref; local
517 CPPUNIT_ASSERT( entry.GetRef(&ref) == B_OK );
518 BPath path(&ref);
542 entry_ref ref; local
1350 entry_ref ref; local
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DVolumeManager.h64 Entry* GetEntry(const entry_ref& ref);
110 status_t _GenerateEntryCreatedEvent(const entry_ref& ref,
/haiku/src/apps/cortex/MediaRoutingView/
H A DMediaRoutingView.h346 entry_ref *ref,
350 entry_ref *ref);
/haiku/headers/os/storage/
H A DResources.h31 BResources(const entry_ref* ref,
42 status_t SetTo(const entry_ref* ref,
H A DMimeType.h123 status_t GetAppHint(entry_ref* ref) const;
124 status_t SetAppHint(const entry_ref* ref);
/haiku/headers/os/translation/
H A DTranslatorRoster.h103 entry_ref* ref);
104 bool IsTranslator(entry_ref* ref);
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.cpp328 status_t status = message.GetInfo("ref", &type, &count);
342 entry_ref ref;
343 for (int32 i = 0; message.FindRef("ref", i++, &ref) == B_OK;) {
344 status = _SendMessage(ref);
348 << ref.name << " (" << strerror(status) << "):\n" << fLog;
447 SMTPProtocol::_SendMessage(const entry_ref& ref) argument
450 BFile file(&ref, B_READ_WRITE);
468 NotifyMessageReadyToSend(ref, file);
472 NotifyMessageSent(ref, fil
[all...]
/haiku/src/apps/diskprobe/
H A DDataEditor.h27 DataEditor(entry_ref& ref,
36 status_t SetTo(entry_ref &ref,
/haiku/src/apps/mediaplayer/settings/
H A DSettings.cpp127 Settings::SetFilePanelFolder(const entry_ref& ref) argument
130 fSettingsMessage.SetValue("filePanelDirectory", ref);
/haiku/src/add-ons/tracker/zipomatic/
H A DZipOMatic.cpp52 entry_ref ref; local
53 if (message->FindRef("refs", &ref) == B_OK) {
/haiku/headers/os/midi/
H A DMidiStore.h53 status_t Import(const entry_ref* ref);
54 status_t Export(const entry_ref* ref, int32 format);
/haiku/src/apps/mediaconverter/
H A DMediaConverterApp.cpp109 entry_ref ref; local
116 while (msg->FindRef("refs", i++, &ref) == B_OK) {
119 BMediaFile* file = new(std::nothrow) BMediaFile(&ref, flags);
122 errorFiles << ref.name << "\n";
128 if (!fWin->AddSourceFile(file, ref))
197 entry_ref* ref, media_file_format* outputFormat)
199 BString name(ref->name);
221 BEntry inEntry(ref);
196 _CreateOutputFile(BDirectory directory, entry_ref* ref, media_file_format* outputFormat) argument
/haiku/src/apps/deskbar/
H A DBarWindow.cpp118 entry_ref ref; local
125 && entry.GetRef(&ref) == B_OK) {
126 sDeskbarMenu->SetNavDir(&ref);
131 && entry.GetRef(&ref) == B_OK) {
132 sDeskbarMenu->SetNavDir(&ref);
591 entry_ref ref; local
608 } else if (message->FindRef("addon", &ref) == B_OK) {
609 BEntry entry(&ref);
/haiku/src/bin/desklink/
H A DDeskButton.cpp39 DeskButton::DeskButton(BRect frame, entry_ref* ref, const char* name, argument
42 fRef(*ref),
54 message->FindRef("ref", &fRef);
95 data->AddRef("ref", &fRef);
/haiku/src/apps/showimage/
H A DShowImageStatusView.cpp144 ShowImageStatusView::Update(const entry_ref& ref, const BString& text, argument
147 fRef = ref;
/haiku/headers/os/device/
H A DJoystick.h50 bool EnterEnhancedMode(const entry_ref* ref = NULL);

Completed in 113 milliseconds

<<11121314151617181920>>