Searched refs:msg (Results 151 - 175 of 601) sorted by relevance

1234567891011>>

/haiku/src/add-ons/input_server/methods/pen/
H A DPenInputLooper.cpp61 BMessage *msg; local
62 msg = new BMessage(MSG_SET_BACKEND);
65 item = new BMenuItem(_T("Default"), msg);
72 msg = new BMessage(MSG_SHOW_INK);
73 item = new BMenuItem(_T("Show Ink"), msg);
171 BMessage *msg = new BMessage(*message); local
172 fInkWindowMsgr.SendMessage(msg);
190 BMessage *msg = new BMessage(MSG_BEGIN_INK); local
191 fInkWindowMsgr.SendMessage(msg);
193 BMessage *msg local
209 BMessage *msg = new BMessage(*message); local
212 BMessage *msg = new BMessage(MSG_END_INK); local
[all...]
/haiku/3rdparty/mmu_man/irc/Haiku/
H A Dplugin.py61 def error(self, irc, msg, args):
92 def haiku(self, irc, msg, args):
106 def reportbugs(self, irc, msg, args):
118 def patchwanted(self, irc, msg, args):
130 def download(self, irc, msg, args):
142 def dl(self, irc, msg, args):
147 return self.download(irc, msg, args)
149 def vi(self, irc, msg, args):
161 def emacs(self, irc, msg, args):
173 def bored(self, irc, msg, arg
[all...]
/haiku/src/libs/stdc++/legacy/
H A Dstrerror.c59 const char *msg; /* Short message about this value */ member in struct:error_info
64 # define ENTRY(value, name, msg) {value, name, msg}
66 # define ENTRY(value, name, msg) {value, name}
440 static struct { int value; const char *name, *msg; } member in struct:__anon5198
549 sys_errlist[eip -> value] = eip -> msg;
634 char *msg; local
650 msg = evmserr.msg;
654 msg
806 char *msg; local
[all...]
/haiku/src/add-ons/input_server/methods/t9/
H A DDictionaryInputServerMethod.cpp94 BMessage *msg = new BMessage('SetM'); local
95 msg->AddInt32("t9mode", WordMode);
97 item = new BMenuItem(_T("Word mode"), msg);
100 msg = new BMessage('SetM');
101 msg->AddInt32("t9mode", CharMode);
102 item = new BMenuItem(_T("Character mode"), msg);
104 msg = new BMessage('SetM');
105 msg->AddInt32("t9mode", NumMode);
106 item = new BMenuItem(_T("Numeric mode"), msg);
H A DT9InputServerMethod.cpp95 BMessage *msg = new BMessage('SetM'); local
96 msg->AddInt32("t9mode", WordMode);
98 item = new BMenuItem(_T("Word mode"), msg);
101 msg = new BMessage('SetM');
102 msg->AddInt32("t9mode", CharMode);
103 item = new BMenuItem(_T("Character mode"), msg);
105 msg = new BMessage('SetM');
106 msg->AddInt32("t9mode", NumMode);
107 item = new BMenuItem(_T("Numeric mode"), msg);
/haiku/src/servers/mail/
H A DMailDaemonApplication.cpp124 addAttribute(BMessage& msg, const char* name, const char* publicName, argument
128 msg.AddString("attr:name", name);
129 msg.AddString("attr:public_name", publicName);
130 msg.AddInt32("attr:type", type);
131 msg.AddBool("attr:viewable", viewable);
132 msg.AddBool("attr:editable", editable);
133 msg.AddInt32("attr:width", width);
134 msg.AddInt32("attr:alignment", B_ALIGN_LEFT);
260 MailDaemonApplication::MessageReceived(BMessage* msg) argument
262 switch (msg
474 GetNewMessages(BMessage* msg) argument
497 SendPendingMessages(BMessage* msg) argument
[all...]
/haiku/src/apps/fontdemo/
H A DFontDemoView.cpp162 FontDemoView::MessageReceived(BMessage* msg) argument
164 switch (msg->what) {
168 if (msg->FindString("_text", &text) == B_OK) {
178 if (msg->FindMessage("_fontMessage", &fontMessage) != B_OK)
195 if (msg->FindMessage("_fontMessage", &fontMessage) != B_OK)
213 if (msg->FindFloat("_size", &size) == B_OK) {
223 if (msg->FindFloat("_shear", &shear) == B_OK) {
233 if (msg->FindFloat("_rotation", &rotation) == B_OK) {
243 if (msg->FindFloat("_spacing", &space) == B_OK) {
253 if (msg
[all...]
/haiku/src/kits/midi2/
H A DMidiProducer.cpp113 BMessage msg, reply; local
116 msg.what = MSG_CONNECT_ENDPOINTS;
118 msg.what = MSG_DISCONNECT_ENDPOINTS;
121 msg.AddInt32("midi:producer", ID());
122 msg.AddInt32("midi:consumer", cons->ID());
124 status_t err = BMidiRoster::MidiRoster()->SendRequest(&msg, &reply);
/haiku/src/servers/print/
H A DTransport.cpp158 Transport::ListAvailablePorts(BMessage* msg) argument
174 rc = (*list_ports)(msg);
191 // msg - message.
194 Transport::MessageReceived(BMessage* msg) argument
196 switch(msg->what) {
203 HandleScriptingCommand(msg);
207 Inherited::MessageReceived(msg);
/haiku/src/tests/kits/app/bcursor/
H A DBCursorTester.cpp103 BMessage msg; local
104 BCursor cur(&msg);
147 BMessage msg; local
148 CHK(BCursor::Instantiate(&msg) == NULL);
192 BMessage msg; local
193 CHK(cur.Archive(&msg) == B_OK);
/haiku/src/tests/kits/interface/bshelf/Container/
H A DContainerWindow.cpp88 BMessage msg = BMessage(TEST_REPLICANT); local
89 msg.AddBool("Test",true);
90 be_app ->PostMessage(&msg,be_app); // Send Info to App
98 BMessage msg = BMessage(CLEAR_FILE); local
99 msg.AddBool("Remove",true);
100 be_app ->PostMessage(&msg,be_app); // Send Info to App
/haiku/headers/libs/print/libprint/
H A DPrintUtils.h54 void SetBool(BMessage* msg, const char* name, bool value);
55 void SetFloat(BMessage* msg, const char* name, float value);
56 void SetInt32(BMessage* msg, const char* name, int32 value);
57 void SetString(BMessage* msg, const char* name, const char* value);
58 void SetRect(BMessage* msg, const char* name, const BRect& rect);
59 void SetString(BMessage* msg, const char* name, const BString& value);
H A DAddPrinterDlg.h35 void MessageReceived(BMessage* msg);
54 void MessageReceived(BMessage *msg);
/haiku/src/tests/add-ons/kernel/network/
H A Duserland_ipc.c337 struct msghdr *msg = (struct msghdr *) args; local
340 msg->msg_name = convert_to_local(&command->area[1],&area[1],msg->msg_name);
341 msg->msg_iov = convert_to_local(&command->area[2],&area[2],msg->msg_iov);
342 msg->msg_control = convert_to_local(&command->area[3],&area[3],msg->msg_control);
344 status = core->socket_recv(cookie->socket, msg, (caddr_t)&msg->msg_namelen,&received);
348 msg
355 struct msghdr *msg = (struct msghdr *) args; local
537 int32 msg; local
[all...]
/haiku/src/tests/system/libroot/posix/
H A Dxsi_msg_queue_test1.cpp14 #include <sys/msg.h>
150 struct message msg; local
151 msg.type = 0;
152 strcpy(msg.text, "Message to send\n");
153 status_t status = msgsnd((key_t)msgID, (void *)&msg, 20, 0);
169 msgsnd((key_t)msgID, (void *)&msg, 500, IPC_NOWAIT);
196 struct message msg; local
197 memset(&msg, 0, sizeof(struct message));
198 msgrcv((key_t)msgID, (void *)&msg, 20, 0, IPC_NOWAIT);
206 msg
[all...]
/haiku/src/kits/media/
H A DDataExchange.cpp79 SendToRoster(BMessage* msg) argument
81 status_t status = sMediaRosterMessenger.SendMessage(msg,
85 DEBUG_ONLY(msg->PrintToStream());
93 SendToServer(BMessage* msg) argument
95 status_t status = sMediaServerMessenger.SendMessage(msg,
99 DEBUG_ONLY(msg->PrintToStream());
121 SendToServer(int32 msgCode, command_data* msg, size_t size) argument
123 return SendToPort(sMediaServerPort, msgCode, msg, size);
137 SendToAddOnServer(int32 msgCode, command_data* msg, size_t size) argument
139 return SendToPort(sMediaAddonServerPort, msgCode, msg, siz
154 SendToPort(port_id sendPort, int32 msgCode, command_data* msg, size_t size) argument
[all...]
/haiku/headers/private/locale/
H A DEditableCatalog.h33 status_t SetData(const char* name, BMessage* msg);
34 status_t SetData(uint32 id, BMessage* msg);
/haiku/src/apps/soundrecorder/
H A DDrawButton.cpp12 const unsigned char *off, BMessage *msg, int32 resize, int32 flags)
13 : BControl(frame, name, "", msg, resize, flags | B_WILL_DRAW),
11 DrawButton(BRect frame, const char *name, const unsigned char *on, const unsigned char *off, BMessage *msg, int32 resize, int32 flags) argument
/haiku/headers/libs/udis86/libudis86/
H A Dudint.h43 #define UDERR(u, msg) \
47 __FILE__, __LINE__, (msg)); \
/haiku/src/apps/poorman/
H A DPoorManLogger.cpp23 poorman_log(const char* msg, bool needTimeHeader, argument
36 if(message.AddString("cstring", msg) != B_OK)
/haiku/headers/private/storage/sniffer/
H A DPattern.h42 void SetStatus(status_t status, const char *msg = NULL);
43 void SetErrorMessage(const char *msg);
/haiku/headers/tools/cppunit/cppunit/
H A DPortability.h87 std::string msg(std::ostrstream::str());
89 return msg;
/haiku/src/apps/terminal/
H A DPrefWindow.h39 virtual void MessageReceived(BMessage *msg);
45 void _SaveRequested(BMessage *msg);
/haiku/headers/private/kernel/posix/
H A Dxsi_message_queue.h8 #include <sys/msg.h>
/haiku/src/add-ons/print/drivers/gutenprint/
H A DSelectPrinterDialog.h20 void MessageReceived(BMessage* msg);

Completed in 152 milliseconds

1234567891011>>