Searched refs:app (Results 101 - 125 of 387) sorted by path

1234567891011>>

/haiku/src/servers/registrar/
H A DClipboard.cpp3 #include <app/Clipboard.h>
/haiku/src/tests/add-ons/index_server/fulltext_search/
H A Dmain.cpp16 BApplication app("application/x-vnd.Haiku-FullTextSearch");
21 app.Run();
/haiku/src/tests/add-ons/input_server/
H A DTeamMonitorTest.cpp23 BApplication app("application/x-vnd.tmwindow-test");
26 // The window should quit the app when it is done
35 app.Run();
/haiku/src/tests/add-ons/kernel/network/
H A Dnet_stack_tester.cpp8 #include <app/Application.h>
H A Duserland_modules.cpp13 #include <app/Application.h>
14 #include <app/Roster.h>
/haiku/src/tests/add-ons/media/media-add-ons/mixer/
H A Dmain.cpp297 BApplication app("application/x-vnd.Haiku-MixerToy");
299 app.Run();
/haiku/src/tests/add-ons/print/pdf/bezierbounds/
H A DBBApp.cpp105 App app; local
/haiku/src/tests/add-ons/print/pdf/linepathbuilder/
H A DLPBApp.cpp105 App app; local
/haiku/src/tests/add-ons/print/ppd/test/
H A DPPDConfigApplication.cpp93 PPDConfigApplication app; local
94 app.Run();
/haiku/src/tests/add-ons/translators/bmptranslator/
H A DBMPTranslatorTest.cpp949 app("application/x-vnd.OpenBeOS-BMPTranslatorTest");
/haiku/src/tests/apps/delay_shutdown/
H A DDelayShutdown.cpp75 DelayShutdownApp app; local
76 app.Run();
/haiku/src/tests/apps/fake_app_server/
H A DAppServer.cpp127 ServerApp *app = (ServerApp *)sAppServer->fAppList->ItemAt(i++); local
128 if (!app)
131 app->PingTarget();
236 // 1) port_id - receiver port of a regular app
238 // 2) team_id - app's team ID
239 // 3) int32 - handler token of the regular app
240 // 4) char * - signature of the regular app
269 // Create the ServerApp subthread for this app
272 ServerApp *app = new ServerApp(clientReplyPort, serverListen, clientLooperPort, local
276 fAppList->AddItem(app);
345 ServerApp *app = (ServerApp *)fAppList->ItemAt(i); local
[all...]
H A DServerApp.cpp83 // This shouldn't be necessary -- all cursors owned by the app
121 \brief Pings the target app to make sure it's still working
126 the target app still exists. We do this not by sending a message
128 just because the app might simply be hung. If this is the case, it
129 should be up to the user to kill it. If the app has been killed, its
201 ServerApp *app = (ServerApp *)data; local
202 BPrivate::LinkReceiver &reader = app->fLink.Receiver();
207 while (!app->fQuitting) {
208 STRACE(("info: ServerApp::MonitorApp listening on port %ld.\n", app->fMessagePort));
213 // ToDo: this should kill the app, bu
[all...]
/haiku/src/tests/apps/terminal_replicant/
H A Dmain.cpp33 App app; local
34 app.Run();
/haiku/src/tests/kits/app/bapplication/
H A DAppQuitRequestedTester.cpp54 BApplication app("application/x-vnd.obos-app-quit-requested-test");
63 // run the app
H A DAppQuitTester.cpp54 BApplication app("application/x-vnd.obos-app-quit-test");
75 BApplication app("application/x-vnd.obos-app-quit-test");
98 BApplication app("application/x-vnd.obos-app-quit-test");
123 BApplication app("application/x-vnd.obos-app-quit-test");
H A DAppRunTester.cpp47 @case 1 launch the app two times: B_MULTIPLE_LAUNCH | B_ARGV_ONLY,
50 @results first app: ReadyToRun(), QuitRequested()
51 second app: ReadyToRun(), QuitRequested()
55 BApplication app("application/x-vnd.obos-app-run-test");
76 @case 2 launch the app two times: B_MULTIPLE_LAUNCH | B_ARGV_ONLY,
79 @results first app: ArgvReceived(), ReadyToRun(), QuitRequested()
80 second app: ArgvReceived(), ReadyToRun(), QuitRequested()
84 BApplication app("application/x-vnd.obos-app
[all...]
H A DBApplicationTester.cpp35 test_app(const char *app, const char *expectedResult) argument
37 // run the app
39 CHK(runner.Run(app) == B_OK);
121 supertype, but a different one than in the app
153 supertype, and the same as in the app attributes/resources
/haiku/src/tests/kits/app/bapplication/testapps/
H A DAppQuitRequestedTestApp1.cpp18 CommonTestApp *app = new CommonTestApp( local
19 "application/x-vnd.obos-app-quit-testapp1", &error);
22 report("InitCheck(): %lx\n", app->InitCheck());
23 app->SetReportDestruction(true);
25 app->SetQuittingPolicy(true);
26 app->PostMessage(B_QUIT_REQUESTED, app);
27 app->PostMessage(B_QUIT_REQUESTED, app);
28 app
[all...]
H A DAppQuitTestApp1.cpp18 CommonTestApp *app = new CommonTestApp( local
19 "application/x-vnd.obos-app-quit-testapp1", &error);
22 report("InitCheck(): %lx\n", app->InitCheck());
23 app->SetReportDestruction(true);
24 app->Quit();
H A DAppQuitTestApp2.cpp31 CommonTestApp *app = new CommonTestApp( local
32 "application/x-vnd.obos-app-quit-testapp1", &error);
35 report("InitCheck(): %lx\n", app->InitCheck());
36 app->SetReportDestruction(true);
38 app->SetMessageHandler(new Quitter);
39 app->PostMessage(MSG_QUIT, app);
40 app->Run();
42 delete app;
H A DAppQuitTestApp3.cpp11 virtual void HandleEvent(CommonTestApp *app) argument
13 app->Lock();
14 app->Quit();
15 app->Unlock();
28 CommonTestApp *app = new CommonTestApp( local
29 "application/x-vnd.obos-app-quit-testapp1", &error);
32 report("InitCheck(): %lx\n", app->InitCheck());
33 app->SetReportDestruction(true);
35 app->RunEventThread(10000, 1, new Quitter);
36 app
[all...]
H A DAppQuitTestApp4.cpp11 virtual void HandleEvent(CommonTestApp *app) argument
13 app->Quit();
14 if (app->IsLocked())
28 CommonTestApp *app = new CommonTestApp( local
29 "application/x-vnd.obos-app-quit-testapp1", &error);
32 report("InitCheck(): %lx\n", app->InitCheck());
33 app->SetReportDestruction(true);
35 app->RunEventThread(10000, 1, new Quitter);
36 app->Run();
38 delete app;
[all...]
H A DAppRunTestApp1.cpp18 CommonTestApp app("application/x-vnd.obos-app-run-testapp1", &error);
21 report("InitCheck(): %lx\n", app.InitCheck());
23 app.Run();
H A DBApplicationTestApp1.cpp10 BApplication app((const char*)NULL);
11 printf("InitCheck(): %lx\n", app.InitCheck());

Completed in 177 milliseconds

1234567891011>>