Symbol: FindApp
headers/build/os/app/Roster.h
98
status_t FindApp(const char *mimeType, entry_ref *app) const;
headers/build/os/app/Roster.h
99
status_t FindApp(entry_ref *ref, entry_ref *app) const;
headers/os/app/Roster.h
83
status_t FindApp(const char* mimeType,
headers/os/app/Roster.h
85
status_t FindApp(entry_ref* ref, entry_ref* app) const;
src/apps/autoraise/AutoRaiseApp.cpp
67
roster.FindApp(APP_SIG, &ref);
src/apps/cortex/NodeManager/AddOnHost.cpp
106
err = be_roster->FindApp(addon_host::g_appSignature, &appRef);
src/apps/deskbar/StatusView.cpp
947
status = roster.FindApp(signature, &ref);
src/apps/deskcalc/CalcView.cpp
1471
status_t status = be_roster->FindApp(kSignature, &appRef);
src/apps/diskusage/PieView.cpp
79
if (be_roster->FindApp(appSig, &fAppRef) == B_NO_ERROR) {
src/apps/launchbox/LaunchButton.cpp
342
if (be_roster->FindApp(fAppSig, &ref) == B_OK)
src/apps/mail/Content.cpp
1818
if (be_roster->FindApp(handlerToLaunch, &appRef) != B_OK)
src/apps/processcontroller/AutoIcon.cpp
34
be_roster->FindApp (fSignature, &ref);
src/apps/switcher/LaunchButton.cpp
298
if (be_roster->FindApp(fAppSig, &ref) == B_OK)
src/apps/text_search/GrepWindow.cpp
1721
if (be_roster->FindApp(editorSig, &editor) != B_OK)
src/apps/workspaces/Workspaces.cpp
963
be_roster->FindApp(kSignature, &ref);
src/bin/desklink/desklink.cpp
132
if (be_roster->FindApp(argv[i], &ref) != B_OK) {
src/kits/interface/AboutWindow.cpp
245
if (be_roster->FindApp(signature, &ref) != B_OK)
src/kits/interface/AboutWindow.cpp
306
if (be_roster->FindApp(signature, &ref) != B_OK)
src/kits/locale/LocaleRoster.cpp
508
status = roster.FindApp(signature, &catalogRef);
src/kits/support/Archivable.cpp
672
err = Roster.FindApp(signature, &ref);
src/kits/tracker/FSUtils.cpp
3677
error = be_roster->FindApp(&documentRef, &app);
src/kits/tracker/FSUtils.cpp
3728
error = be_roster->FindApp(type.Type(), &app);
src/kits/tracker/OpenWithWindow.cpp
633
if (be_roster->FindApp(model.PreferredAppSignature(), &preferredRef)
src/kits/tracker/OpenWithWindow.cpp
650
if (be_roster->FindApp(mimeType.String(), &preferredRef) == B_OK)
src/kits/tracker/infowindow/GeneralInfoView.cpp
270
err = be_roster->FindApp(signature, &entry);
src/preferences/filetypes/ApplicationTypesWindow.cpp
415
if (be_roster->FindApp(fCurrentType.Type(), &ref) == B_OK) {
src/preferences/printers/JobListView.cpp
185
if (fIcon == NULL && be_roster->FindApp(mimeType.String(), &ref) == B_OK) {
src/servers/mail/MailDaemonApplication.cpp
449
status_t status = roster.FindApp(B_MAIL_DAEMON_SIGNATURE, &ref);
src/servers/notification/NotificationView.cpp
334
&& be_roster->FindApp(fNotification->OnClickApp(), &appRef)
src/servers/notification/NotificationView.cpp
340
&& be_roster->FindApp(
src/tests/apps/fake_app_server/AppServer.h
55
ServerApp* FindApp(const char *sig);
src/tests/kits/app/broster/FindAppTester.cpp
595
CHK(roster.FindApp((const char*)NULL, NULL) == B_BAD_VALUE);
src/tests/kits/app/broster/FindAppTester.cpp
598
CHK(roster.FindApp("image/gif", NULL) == B_BAD_VALUE);
src/tests/kits/app/broster/FindAppTester.cpp
601
CHK(roster.FindApp((const char*)NULL, &ref) == B_BAD_VALUE);
src/tests/kits/app/broster/FindAppTester.cpp
613
CHK(roster.FindApp("invalid/mine/type", &ref) == B_BAD_VALUE);
src/tests/kits/app/broster/FindAppTester.cpp
622
return roster.FindApp(type, ref);
src/tests/kits/app/broster/FindAppTester.cpp
650
CHK(roster.FindApp((entry_ref*)NULL, NULL) == B_BAD_VALUE);
src/tests/kits/app/broster/FindAppTester.cpp
655
CHK(roster.FindApp(&fileRef, NULL) == B_BAD_VALUE);
src/tests/kits/app/broster/FindAppTester.cpp
658
CHK(roster.FindApp((entry_ref*)NULL, &ref) == B_BAD_VALUE);
src/tests/kits/app/broster/FindAppTester.cpp
671
CHK(roster.FindApp(&fileRef, &ref) == B_ENTRY_NOT_FOUND);
src/tests/kits/app/broster/FindAppTester.cpp
686
CHK(roster.FindApp(&fileRef, &ref) == B_LAUNCH_FAILED_APP_IN_TRASH);
src/tests/kits/app/broster/FindAppTester.cpp
705
CHK(roster.FindApp(&fileRef, &ref) == B_OK);
src/tests/kits/app/broster/FindAppTester.cpp
724
CHK(roster.FindApp(&fileRef, &ref) == B_OK);
src/tests/kits/app/broster/FindAppTester.cpp
746
CHK(roster.FindApp(&fileRef, &ref) == B_OK);
src/tests/kits/app/broster/FindAppTester.cpp
767
CHK(roster.FindApp(&fileRef, &ref) == B_OK);
src/tests/kits/app/broster/FindAppTester.cpp
791
CHK(roster.FindApp(&linkRef, &ref) == B_OK);
src/tests/kits/app/broster/FindAppTester.cpp
803
return roster.FindApp(&fileRef, ref);
src/tests/kits/app/broster/FindAppTester.cpp
834
return roster.FindApp(&fileRef, ref);
src/tests/kits/app/broster/FindAppTester.cpp
867
CHK(roster.FindApp(&linkRef, &ref) == B_LAUNCH_FAILED_NO_RESOLVE_LINK);
src/tests/kits/app/broster/FindAppTester.cpp
881
CHK(roster.FindApp(&linkRef, &ref) == B_LAUNCH_FAILED_NO_RESOLVE_LINK);