Searched refs:what (Results 1 - 25 of 1021) sorted by relevance

1234567891011>>

/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dlock.h10 #define MPASS2(ex, what) MPASS4(ex, what, __FILE__, __LINE__)
12 #define MPASS4(ex, what, file, line) \
13 KASSERT((ex), ("assert %s failed at %s:%d", what, file, line))
H A Dsx.h24 #define sx_assert(sx, what)
/haiku/src/servers/net/
H A DSimpleMessageFilter.cpp7 \brief This is a BMessageFilter that can filter multiple \a what values.
9 This class extends the BMessageFilter's ability of handling one \a what value
10 to handling multiple \a what values.
17 /*! \brief Creates a copy of the \a what array.
19 \param what A pointer to an array of \a what values that should be filtered.
21 \param target The target for messages matching one of the \a what values.
24 SimpleMessageFilter::SimpleMessageFilter(const uint32 *what, BHandler *target) argument
28 if(!what) {
35 while(what[coun
[all...]
H A DSimpleMessageFilter.h14 SimpleMessageFilter(const uint32 *what, BHandler *target);
/haiku/src/preferences/printers/
H A DPrinters.cpp46 if (msg->what == B_PRINTER_CHANGED || msg->what == PRINTERS_ADD_PRINTER) {
48 uint32 what = msg->what; local
49 if (what == PRINTERS_ADD_PRINTER)
50 what = kMsgAddPrinter;
55 msgr.SendMessage(what);
H A DTransportMenu.h21 TransportMenu(const char* title, uint32 what,
/haiku/headers/private/graphics/common/
H A Dlog_coll.h32 #define LOG( li, what ) log( li, what, 0 )
33 #define LOG1( li, what, arg1 ) log( li, what, 1, arg1 );
34 #define LOG2( li, what, arg1, arg2 ) log( li, what, 2, arg1, arg2 );
35 #define LOG3( li, what, arg1, arg2, arg3 ) log( li, what, 3, arg1, arg2, arg3 );
41 uint16 what; member in struct:log_entry_t
54 void log( struct log_info_t *li, uint16 what, cons
[all...]
/haiku/src/tests/kits/app/bmessage/
H A DMessageOpAssignTest.cpp26 CPPUNIT_ASSERT(msg2.what == msg1.what);
H A DMessageConstructTest.cpp26 @results BMessage::what == 0
31 CPPUNIT_ASSERT(msg.what == 0);
36 BMessage(uint32 what)
37 @case what initialization constructor
38 @params what a uint32 message ID code
39 @results BMessage::what == what param
44 CPPUNIT_ASSERT(msg.what == 1234);
52 @results what == msg.what an
[all...]
/haiku/src/servers/media/
H A DNotificationManager.cpp84 int32 what; local
88 msg->FindInt32(NOTIFICATION_PARAM_WHAT, &what);
96 n.what = what;
100 "what %#lx\n",node->node, team, what);
120 int32 what; local
124 msg->FindInt32(NOTIFICATION_PARAM_WHAT, &what);
129 TRACE("NotificationManager::CancelNotifications node %ld, team %ld, what "
130 "%#lx\n", node->node, team, what);
180 int32 what; local
[all...]
/haiku/src/apps/showimage/
H A DSupportingAppsMenu.h18 void update_supporting_apps_menu(BMenu* menu, BMimeType* type, uint32 what, BHandler* target);
/haiku/src/system/libroot/os/
H A Dscheduler.c17 uint32 what; member in struct:__anon1996
40 suggest_thread_priority(uint32 what, int32 period, bigtime_t jitter, argument
44 int32 priority = what == B_DEFAULT_MEDIA_PRIORITY ? 0x0a : 0;
49 for (i = 0; sWhatPriorityArray[i].what != (uint32)-1; i ++) {
50 if ((what & sWhatPriorityArray[i].what) != 0) {
/haiku/src/kits/app/
H A DHandler.cpp99 status_t SendNotices(uint32 what, const BMessage* notice);
100 status_t Add(const BHandler* handler, uint32 what);
101 status_t Add(const BMessenger& messenger, uint32 what);
102 status_t Remove(const BHandler* handler, uint32 what);
103 status_t Remove(const BMessenger& messenger, uint32 what);
110 void _ValidateHandlers(uint32 what);
111 void _SendNotices(uint32 what, BMessage* notice);
200 switch (message->what) {
205 uint32 what; local
207 || message->FindInt32(B_OBSERVE_WHAT_CHANGE, (int32*)&what)
469 ResolveSpecifier(BMessage* message, int32 index, BMessage* specifier, int32 what, const char* property) argument
528 StartWatching(BMessenger target, uint32 what) argument
546 StopWatching(BMessenger target, uint32 what) argument
564 StartWatching(BHandler* handler, uint32 what) argument
582 StopWatching(BHandler* handler, uint32 what) argument
607 SendNotices(uint32 what, const BMessage* notice) argument
665 _ReservedHandler1__8BHandler(BHandler* handler, uint32 what, const BMessage* notice) argument
705 _ValidateHandlers(uint32 what) argument
724 _SendNotices(uint32 what, BMessage* notice) argument
747 SendNotices(uint32 what, const BMessage* notice) argument
769 Add(const BHandler* handler, uint32 what) argument
794 Add(const BMessenger &messenger, uint32 what) argument
811 Remove(const BHandler* handler, uint32 what) argument
838 Remove(const BMessenger &messenger, uint32 what) argument
[all...]
/haiku/src/tests/kits/app/bmessagequeue/
H A DMessageQueueTestCase.h56 testMessageClass(int what) : BMessage(what) { }; argument
71 BMessage *FindMessage(uint32 what, int index);
/haiku/src/add-ons/print/transports/lpr/
H A DLpsClient.h19 LPSException(const string& what) argument
21 fWhat(what)
25 const char * what() const function in class:LPSException
H A DLpr.cpp33 msg->what = 'okok';
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteEventStream.cpp79 if (event->what == B_MOUSE_MOVED)
97 uint32 what = 0; local
100 what = B_MOUSE_MOVED;
103 what = B_MOUSE_DOWN;
106 what = B_MOUSE_UP;
109 what = B_MOUSE_WHEEL_CHANGED;
112 what = B_KEY_DOWN;
115 what = B_KEY_UP;
118 what = B_MODIFIERS_CHANGED;
122 if (what
[all...]
/haiku/src/apps/cortex/addons/LoggingConsumer/
H A DLogWriter.h69 int32 what; member in struct:log_message::__anon2896::__anon2900
74 // logging message 'what' codes
147 void Log(log_what what, const log_message& data);
150 void SetEnabled(log_what what, bool enable);
163 void HandleMessage(log_what what, const log_message& msg);
H A DLogWriter.cpp107 int32 what; local
108 status_t n_bytes = ::read_port(port, &what, &msg, sizeof(log_message));
111 obj->HandleMessage((log_what) what, msg);
112 if (LOG_QUIT == what) done = true;
150 LogWriter::Log(log_what what, const log_message& data) argument
155 ::write_port(mPort, (int32) what, &data, sizeof(log_message));
160 LogWriter::SetEnabled(log_what what, bool enable) argument
162 if (enable) mFilters.erase(what);
163 else mFilters.insert(what);
227 LogWriter::HandleMessage(log_what what, cons argument
[all...]
/haiku/src/apps/glteapot/
H A DTeapotApp.cpp35 switch (msg->what) {
/haiku/src/preferences/filetypes/
H A DPreferredAppMenu.h16 void update_preferred_app_menu(BMenu* menu, BMimeType* type, uint32 what,
/haiku/src/preferences/tracker/
H A DTrackerPreferences.cpp24 message.what = B_EXECUTE_PROPERTY;
/haiku/src/apps/serialconnect/
H A DSerialApp.cpp95 switch (message->what) {
230 int32 what; local
238 if (message->GetCurrentSpecifier(&index, &specifier, &what, &property)
241 what, property)) {
243 if (message->what == B_GET_PROPERTY) {
248 if (message->what == B_SET_PROPERTY) {
255 if (message->what == B_GET_PROPERTY) {
260 if (message->what == B_SET_PROPERTY) {
267 if (message->what == B_GET_PROPERTY) {
272 if (message->what
456 ResolveSpecifier(BMessage* message, int32 index, BMessage* specifier, int32 what, const char* property) argument
[all...]
/haiku/src/tests/servers/registrar/
H A Dmessage_deliverer_test.cpp24 // message what codes
42 check_expected_message(uint32 what) argument
45 printf("Unexpected message '%.4s'\n", (char*)&what);
50 if (what != expected) {
52 (char*)&what, (char*)&expected);
70 switch (message->what) {
87 if (check_expected_message(message->what))
/haiku/headers/os/app/
H A DHandler.h59 BMessage* specifier, int32 what,
64 status_t StartWatching(BMessenger target, uint32 what);
66 status_t StopWatching(BMessenger target, uint32 what);
70 status_t StartWatching(BHandler* observer, uint32 what);
72 status_t StopWatching(BHandler* observer, uint32 what);
80 virtual void SendNotices(uint32 what,

Completed in 152 milliseconds

1234567891011>>