Searched refs:BLooper (Results 26 - 50 of 244) sorted by relevance

12345678910

/haiku/src/tests/kits/support/bautolock/
H A DAutolockTestAddon.cpp34 testSuite->addTest(AutolockLooperTest<BAutolock, BLooper>::suite());
39 AutolockLooperTest<OpenBeOS::BAutolock, BLooper>::suite());
/haiku/src/tests/kits/app/blooper/
H A DAddCommonFilterTest.cpp32 BLooper Looper;
50 BLooper Looper;
65 BLooper Looper;
83 BLooper Looper1;
84 BLooper Looper2;
96 ADD_TEST4(BLooper, suite, TAddCommonFilterTest, __test_name__);
100 new TestSuite("BLooper::AddCommonFilter(BMessageFilter*)");
H A DSetCommonFilterListTest.cpp31 BLooper Looper;
48 BLooper Looper;
64 BLooper Looper;
86 BLooper Looper1;
87 BLooper Looper2;
104 ADD_TEST4(BLooper, suite, TSetCommonFilterListTest, __test_name__)
107 TestSuite* suite = new TestSuite("BLooper::SetCommonFilterList(BList*)");
H A DIndexOfTest.cpp30 BLooper Looper;
42 BLooper Looper;
55 BLooper Looper;
69 BLooper Looper;
141 BLooper Looper;
156 BLooper Looper;
162 TestSuite* suite = new TestSuite("BLooper::IndexOf(BHandler*)");
164 ADD_TEST4(BLooper, suite, TIndexOfTest, IndexOfTest1);
165 ADD_TEST4(BLooper, suite, TIndexOfTest, IndexOfTest2);
166 ADD_TEST4(BLooper, suit
[all...]
/haiku/src/kits/app/
H A DLooper.cpp13 // BLooper class spawns a thread that runs a message loop.
46 static BLocker sDebugPrintLocker("BLooper debug print");
63 port_id _get_looper_port_(const BLooper* looper);
103 BLooper* looper;
111 BLooper::BLooper(const char* name, int32 priority, int32 portCapacity) function in class:BLooper
119 BLooper::~BLooper()
122 debugger("You can't call delete on a BLooper object "
179 BLooper function in class:BLooper
885 BLooper::BLooper(const BLooper& other) function in class:BLooper
900 BLooper::BLooper(int32 priority, port_id port, const char* name) function in class:BLooper
[all...]
H A DLooperList.cpp58 BLooperList::AddLooper(BLooper* looper)
77 BLooperList::IsLooperValid(const BLooper* looper)
88 BLooperList::RemoveLooper(BLooper* looper)
126 BLooper*
132 BLooper* looper = NULL;
140 BLooper*
146 BLooper* looper = NULL;
156 BLooper*
162 BLooper* looper = NULL;
172 BLooper*
[all...]
/haiku/src/tests/kits/app/bmessage/
H A DMessageDestructTest.cpp28 class Looper1 : public BLooper
31 Looper1(const char* name) : BLooper(name) {;}
43 BLooper::MessageReceived(msg);
50 BLooper* looper1 = new Looper1("looper1");
70 BLooper* looper1 = new Looper1("looper1");
/haiku/headers/os/net/
H A DNetworkNotifications.h40 class BLooper;
45 const BLooper* looper = NULL);
49 const BLooper* looper = NULL);
/haiku/src/tests/kits/app/bmessenger/
H A DHelpers.h23 // helper class: quits a BLooper on destruction
26 inline LooperQuitter(BLooper *looper) : fLooper(looper) {}
34 BLooper *fLooper;
64 if (BLooper *looper = fObject->Looper()) {
/haiku/src/apps/debugger/user_interface/gui/util/
H A DSettingsMenu.h28 virtual void PrepareToShow(BLooper* parentLooper) = 0;
29 virtual bool Finish(BLooper* parentLooper, bool force) = 0;
44 virtual void PrepareToShow(BLooper* parentLooper,
47 virtual bool Finish(BLooper* parentLooper,
71 virtual void PrepareToShow(BLooper* parentLooper);
72 virtual bool Finish(BLooper* parentLooper, bool force);
H A DActionMenuItem.cpp39 ActionMenuItem::PrepareToShow(BLooper* parentLooper, BHandler* targetHandler)
46 ActionMenuItem::Finish(BLooper* parentLooper, BHandler* targetHandler,
/haiku/headers/private/storage/
H A DAddOnMonitor.h24 class AddOnMonitor : public BLooper {
26 typedef BLooper inherited;
/haiku/src/apps/softwareupdater/
H A DWorkingLooper.cpp15 BLooper("WorkingLooper"),
50 BLooper::MessageReceived(message);
H A DWorkingLooper.h22 class WorkingLooper : public BLooper {
/haiku/headers/os/app/
H A DInvoker.h17 class BLooper;
26 const BLooper* looper = NULL);
35 const BLooper* looper = NULL);
38 BHandler* Target(BLooper** _looper = NULL) const;
H A DMessageFilter.h65 BLooper* Looper() const;
68 friend class BLooper;
74 void SetLooper(BLooper* owner);
81 BLooper* fLooper;
H A DMessenger.h18 class BLooper;
27 const BLooper* looper = NULL,
35 BHandler* Target(BLooper **looper) const;
66 const BLooper* looper = NULL);
88 const BLooper *looper,
H A DLooper.h29 class BLooper : public BHandler { class in inherits:BHandler
31 BLooper(const char* name = NULL,
35 virtual ~BLooper();
38 BLooper(BMessage* data);
81 static BLooper* LooperForThread(thread_id thread);
116 friend port_id _get_looper_port_(const BLooper* );
125 BLooper(const BLooper&);
126 BLooper& operator=(const BLooper
[all...]
/haiku/src/tests/kits/interface/menu/menuworld/
H A DPostDispatchInvoker.h43 BLooper* invokeLooper = NULL);
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandExecutor.h20 class CommandExecutor : public BLooper {
/haiku/headers/os/storage/
H A DNodeMonitor.h82 class BLooper;
88 const BHandler* handler, const BLooper* looper = NULL);
93 const BHandler* handler, const BLooper* looper = NULL);
96 extern status_t stop_watching(const BHandler* handler, const BLooper* looper = NULL);
/haiku/src/tests/kits/net/netservices2/
H A DHttpDebugLogger.h12 class HttpDebugLogger : public BLooper
/haiku/src/tests/kits/app/bhandler/
H A DSetNextHandlerTest.cpp30 BLooper Looper;
47 @case Handler1 and Handler2 do not belong to a BLooper
66 @case Handler1 belongs to a unlocked BLooper, Handler2 does not
68 @results NextHandler() returns BLooper
78 BLooper Looper;
88 @case Handler1 belongs to a locked BLooper, Handler2 does not
90 @results NextHandler() returns BLooper
100 BLooper Looper;
109 @case Handler2 belongs to a unlocked BLooper, Handler1 does not
121 BLooper Loope
[all...]
H A DAddFilterTest.cpp28 it belongs to a BLooper when a filter gets added. Also,
46 it belongs to a BLooper when a filter gets added.
61 if belongs to a BLooper when a filter gets added, or
66 BLooper Looper;
81 BLooper Looper;
/haiku/src/apps/debuganalyzer/gui/
H A DSubWindowManager.h19 SubWindowManager(BLooper* parent);
61 BLooper* fParent;

Completed in 104 milliseconds

12345678910