Searched refs:appInfo (Results 1 - 25 of 40) sorted by relevance

12

/haiku-fatelf/src/apps/cortex/InfoView/
H A DAppNodeInfoView.cpp75 app_info appInfo; local
78 && (be_roster->GetRunningAppInfo(portInfo.team, &appInfo) == B_OK))
80 BEntry appEntry(&appInfo.ref);
87 BFile appFile(&appInfo.ref, B_READ_ONLY);
100 addField("Signature", appInfo.signature);
/haiku-fatelf/headers/private/shared/
H A DTrackerAddOnAppLaunch.h62 app_info appInfo;
63 if (be_roster->GetAppInfo(&addonRef, &appInfo) != B_OK)
66 be_roster->Launch(appInfo.signature, refs);
/haiku-fatelf/src/apps/switcher/
H A DApplicationsView.cpp38 app_info appInfo; local
40 if (be_roster->GetRunningAppInfo(team, &appInfo) == B_OK)
41 _AddTeam(appInfo);
H A DCaptureWindow.cpp188 app_info appInfo; local
189 status_t status = be_roster->GetActiveAppInfo(&appInfo);
191 return appInfo.team;
H A DLaunchButton.cpp129 app_info appInfo; local
132 &appInfo) == B_OK) {
133 BMessenger messenger(appInfo.signature,
/haiku-fatelf/src/servers/registrar/mime/
H A DCreateAppMetaMimeThread.cpp63 BAppFileInfo appInfo(&file);
64 status = appInfo.InitCheck();
116 if (appInfo.GetIcon(&data, &size) == B_OK) {
124 if (appInfo.GetIcon(&miniIcon, B_MINI_ICON) == B_OK)
130 if (appInfo.GetIcon(&largeIcon, B_LARGE_ICON) == B_OK)
138 if (appInfo.GetSupportedTypes(&supportedTypes) == B_OK)
156 if (status == B_OK && appInfo.GetIconForType(type, &data, &size) == B_OK) {
161 if (status == B_OK && appInfo.GetIconForType(type, &miniIcon, B_MINI_ICON) == B_OK)
164 if (status == B_OK && appInfo.GetIconForType(type, &largeIcon, B_LARGE_ICON) == B_OK)
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/server/
H A DFileSystem.cpp109 app_info appInfo;
110 status_t error = be_app->GetAppInfo(&appInfo);
119 error = be_roster->Launch(&appInfo.ref, argc, argv, &team);
123 error = be_roster->Launch(&appInfo.ref, argc, argv, &team);
/haiku-fatelf/src/tests/servers/registrar/
H A Dmessage_deliverer_test.cpp160 app_info appInfo; local
161 error = app.GetAppInfo(&appInfo);
169 error = path.SetTo(&appInfo.ref);
/haiku-fatelf/src/bin/
H A Dsettype.cpp194 BAppFileInfo appInfo; local
196 BNodeInfo &nodeInfo = (signature ? appInfo : _nodeInfo);
197 error = (signature ? appInfo.SetTo(&file) : nodeInfo.SetTo(&node));
230 error = appInfo.SetSignature(signature);
/haiku-fatelf/src/tests/kits/locale/
H A DcatalogTest.cpp89 app_info appInfo; local
90 res = be_app->GetAppInfo(&appInfo);
93 res = catb.WriteToResource(&appInfo.ref);
172 app_info appInfo; local
173 be_app->GetAppInfo(&appInfo);
174 BEntry appEntry(&appInfo.ref);
H A DcatalogSpeed.cpp181 app_info appInfo; local
182 be_app->GetAppInfo(&appInfo);
183 BEntry appEntry(&appInfo.ref);
/haiku-fatelf/src/tests/kits/interface/bwindowstack/
H A DWindowStackTest.cpp114 app_info appInfo; local
115 if (be_app->GetAppInfo(&appInfo) != B_OK)
122 roster.Launch(&appInfo.ref, (BMessage*)NULL,
/haiku-fatelf/src/bin/desklink/
H A DMediaReplicant.cpp351 app_info appInfo;
352 status = be_roster->GetAppInfo(&ref, &appInfo);
356 return be_roster->ActivateApp(appInfo.team);
369 app_info appInfo;
370 status = be_roster->GetAppInfo(signature, &appInfo);
374 return be_roster->ActivateApp(appInfo.team);
/haiku-fatelf/src/apps/screenshot/
H A DScreenshot.cpp260 app_info appInfo; local
261 status_t status = be_roster->GetActiveAppInfo(&appInfo);
264 BMessenger messenger(appInfo.signature, appInfo.team);
271 int32* tokens = get_token_list(appInfo.team, &tokenCount);
/haiku-fatelf/src/apps/cortex/support/
H A DMediaIcon.cpp172 app_info appInfo; local
174 && (be_roster->GetRunningAppInfo(portInfo.team, &appInfo) == B_OK)) {
175 D_INTERNAL((" -> application info found: %s\n", appInfo.signature));
178 || ((strcmp(appInfo.signature, thisAppInfo.signature) != 0)
179 && (strcmp(appInfo.signature, addon_host::g_appSignature) != 0))) {
182 BNodeInfo::GetTrackerIcon(&appInfo.ref, this, m_size);
/haiku-fatelf/src/add-ons/locale/catalogs/plaintext/
H A DCatalog.cpp83 app_info appInfo; local
84 be_app->GetAppInfo(&appInfo);
86 nref.device = appInfo.ref.device;
87 nref.node = appInfo.ref.directory;
/haiku-fatelf/src/apps/processcontroller/
H A DUtilities.cpp147 app_info appInfo; local
148 be_roster->GetAppInfo(kSignature, &appInfo);
149 ref = appInfo.ref;
/haiku-fatelf/src/preferences/filetypes/
H A DPreferredAppMenu.cpp242 BAppFileInfo appInfo(&file);
243 status = appInfo.InitCheck();
245 if (status == B_OK && appInfo.GetSignature(preferred) != B_OK)
H A DFileTypes.cpp441 BAppFileInfo appInfo(&file);
442 if (appInfo.InitCheck() != B_OK)
446 if (appInfo.GetType(type) != B_OK
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/MyNetwork/
H A DInstallPrinter.cpp199 app_info appInfo; local
201 if (be_roster->GetAppInfo(PRT_SERVER_SIGNATURE, &appInfo) == B_OK)
204 kill(appInfo.thread, SIGTERM);
/haiku-fatelf/src/apps/debugger/user_interface/gui/teams_window/
H A DTeamsListView.cpp231 app_info appInfo; local
232 status_t status = be_roster->GetRunningAppInfo(teamInfo.team, &appInfo);
245 get_ref_for_path(kernelPath.Path(), &appInfo.ref);
248 BPrivate::get_app_ref(teamInfo.team, &appInfo.ref);
253 status = BNodeInfo::GetTrackerIcon(&appInfo.ref, icon, B_MINI_ICON);
/haiku-fatelf/src/kits/app/
H A DApplication.cpp339 app_info appInfo; local
342 &appInfo) != B_OK) {
350 if (appInfo.port >= 0 && appInfo.port != fMsgPort) {
352 fMsgPort = appInfo.port;
354 appInfo.port = fMsgPort;
356 if (strcmp(appInfo.signature, fAppName))
360 appInfo.port);
1524 app_info appInfo; local
1525 if (be_app && be_app->GetAppInfo(&appInfo)
[all...]
/haiku-fatelf/src/apps/deskbar/
H A DBarApp.cpp120 app_info appInfo; local
122 if (be_roster->GetRunningAppInfo(tID, &appInfo) == B_OK) {
123 AddTeam(appInfo.team, appInfo.flags, appInfo.signature,
124 &appInfo.ref);
907 app_info appInfo; local
911 if (be_roster->GetAppInfo(signature, &appInfo) == B_OK) {
913 BFile file(&appInfo.ref, B_READ_ONLY);
/haiku-fatelf/src/add-ons/media/plugins/ffmpeg/
H A DAVCodecEncoder.cpp171 app_info appInfo; local
172 if (be_app->GetAppInfo(&appInfo) == B_OK
173 && *(team_id*)userData == appInfo.team) {
/haiku-fatelf/src/apps/launchbox/
H A DLaunchButton.cpp131 app_info appInfo; local
134 &appInfo) == B_OK) {
135 BMessenger messenger(appInfo.signature,

Completed in 197 milliseconds

12