Searched refs:reply (Results 126 - 150 of 305) sorted by path

1234567891011>>

/haiku/src/preferences/repositories/
H A DTaskLooper.cpp161 BMessage reply(*message);
162 reply.what = TASK_STARTED;
163 reply.AddInt16(key_count, fTaskQueue.CountItems());
164 fReplyTarget.SendMessage(&reply);
183 BMessage reply(message->what);
184 reply.AddInt16(key_count, fTaskQueue.CountItems()-1);
185 reply.AddPointer(key_rowptr, task->rowItem);
187 reply.AddString(key_details, task->resultErrorDetails);
190 reply.AddString(key_name, task->resultName);
192 fReplyTarget.SendMessage(&reply);
305 BMessage reply; local
[all...]
H A DTaskTimer.cpp109 BMessage reply(TASK_KILL_REQUEST);
110 reply.AddPointer(key_taskptr, fOwner);
111 fReplyTarget.SendMessage(&reply);
/haiku/src/servers/app/
H A DDesktopListener.cpp52 BPrivate::LinkReceiver& link, BPrivate::LinkSender& reply)
59 if (!listener->HandleMessage(sender, link, reply))
51 MessageForListener(Window* sender, BPrivate::LinkReceiver& link, BPrivate::LinkSender& reply) argument
H A DDesktopListener.h36 BPrivate::LinkSender& reply) = 0;
94 BPrivate::LinkSender& reply);
H A DTestServerLoopAdapter.cpp81 // AppServer will try to send a reply, we just let that fail
88 BPrivate::LinkSender reply(replyPort);
90 reply.StartMessage(B_OK);
91 reply.Attach<port_id>(desktop->MessagePort());
93 reply.StartMessage(B_ERROR);
95 reply.Flush();
/haiku/src/servers/app/stackandtile/
H A DSATWindow.cpp105 BPrivate::LinkSender& reply)
110 return StackingEventHandler::HandleMessage(sender, link, reply);
104 HandleMessage(SATWindow* sender, BPrivate::LinkReceiver& link, BPrivate::LinkSender& reply) argument
H A DSATWindow.h42 BPrivate::LinkSender& reply);
H A DStackAndTile.cpp91 BPrivate::LinkSender& reply)
94 return _HandleMessage(link, reply);
100 return satWindow->HandleMessage(satWindow, link, reply);
639 BPrivate::LinkSender& reply)
663 reply.StartMessage(B_OK);
664 reply.Attach<int32>(size);
665 reply.Attach(buffer, size);
667 reply.StartMessage(B_ERROR);
668 reply.Flush();
681 reply
90 HandleMessage(Window* sender, BPrivate::LinkReceiver& link, BPrivate::LinkSender& reply) argument
638 _HandleMessage(BPrivate::LinkReceiver& link, BPrivate::LinkSender& reply) argument
[all...]
H A DStackAndTile.h54 BPrivate::LinkSender& reply);
105 BPrivate::LinkSender& reply);
H A DStacking.h23 BPrivate::LinkSender& reply);
/haiku/src/servers/bluetooth/
H A DBluetoothServer.cpp141 BMessage reply; local
142 status_t status = B_WOULD_BLOCK; // mark somehow to do not reply anything
184 status = HandleLocalDevicesCount(message, &reply);
188 status = HandleAcquireLocalDevice(message, &reply);
192 status = HandleSimpleRequest(message, &reply);
196 status = HandleGetProperty(message, &reply);
218 // Can we reply right now?
221 reply.AddInt32("status", status);
222 message->SendReply(&reply);
223 // printf("Sending reply messag
275 HandleLocalDevicesCount(BMessage* message, BMessage* reply) argument
284 HandleAcquireLocalDevice(BMessage* message, BMessage* reply) argument
359 HandleSimpleRequest(BMessage* message, BMessage* reply) argument
390 HandleGetProperty(BMessage* message, BMessage* reply) argument
[all...]
H A DBluetoothServer.h60 /* Messages reply */
61 status_t HandleLocalDevicesCount(BMessage* message, BMessage* reply);
62 status_t HandleAcquireLocalDevice(BMessage* message, BMessage* reply);
64 status_t HandleGetProperty(BMessage* message, BMessage* reply);
65 status_t HandleSimpleRequest(BMessage* message, BMessage* reply);
H A DLocalDeviceImpl.cpp110 // TODO: ML mark as handled pass a reply by parameter and reply in common
149 // we are waiting for a reply
345 BMessage reply; local
390 reply.AddInt8("status", version->status);
391 status = request->SendReply(&reply);
392 //printf("Sending reply... %ld\n", status);
393 // debug reply.PrintToStream();
413 reply.AddInt8("status", pageTimeout->status);
414 reply
715 BMessage reply; local
837 BMessage reply; local
929 BMessage reply; local
956 BMessage reply; local
[all...]
/haiku/src/servers/keystore/
H A DKeyStoreServer.cpp103 BMessage reply; local
208 reply.AddMessage("key", &keyMessage);
229 reply.AddUInt32("cookie", cookie);
230 reply.AddMessage("key", &keyMessage);
320 reply.AddUInt32("cookie", cookie);
321 reply.AddString("keyring", keyring->Name());
328 reply.AddBool("unlocked", keyring->IsUnlocked());
420 reply.AddUInt32("cookie", cookie);
421 reply.AddString("signature", signature);
422 reply
[all...]
/haiku/src/servers/midi/
H A DMidiServerApp.h66 BMessage* reply);
/haiku/src/servers/notification/
H A DNotificationWindow.cpp171 BMessage reply(B_REPLY);
219 reply.AddInt32("error", B_OK);
221 reply.AddInt32("error", B_NOT_ALLOWED);
223 reply.what = B_MESSAGE_NOT_UNDERSTOOD;
224 reply.AddInt32("error", B_ERROR);
227 message->SendReply(&reply);
/haiku/src/servers/package/
H A DRoot.cpp333 BMessage reply(B_MESSAGE_COMMIT_TRANSACTION_REPLY);
336 if (result.AddToMessage(reply) == B_OK) {
337 message->SendReply(&reply, (BHandler*)NULL,
/haiku/src/servers/print/
H A DPrintServerApp.R5.cpp75 BMessage reply(*msg);
78 status = printer->ConfigurePage(reply);
80 status = printer->ConfigureJob(reply);
83 sender.SetReply(&reply);
113 BMessage reply; local
114 if (printer->GetDefaultSettings(reply) == B_OK) {
115 sender.SetReply(&reply);
183 BMessage reply('okok');
198 reply.AddString("printer_name", printerName);
200 reply
[all...]
H A DPrintServerApp.Scripting.cpp65 BMessage reply(B_REPLY);
66 reply.AddString("result", fDefaultPrinter
68 reply.AddInt32("error", B_OK);
69 msg->SendReply(&reply);
71 BMessage reply(B_REPLY);
72 reply.AddString("result", fUseConfigWindow
74 reply.AddInt32("error", B_OK);
75 msg->SendReply(&reply);
83 BMessage reply(B_REPLY);
84 reply
[all...]
H A DPrinter.Scripting.cpp70 BMessage reply(B_REPLY);
71 reply.AddString("result", result);
72 reply.AddInt32("error", rc);
73 msg->SendReply(&reply);
80 BMessage reply(B_REPLY);
81 reply.AddMessenger("result", BMessenger(this));
82 reply.AddInt32("error", B_OK);
83 msg->SendReply(&reply);
H A DTransport.Scripting.cpp52 BMessage reply(B_REPLY);
53 rc = ListAvailablePorts(&reply);
54 reply.AddInt32("error", rc);
55 msg->SendReply(&reply);
63 BMessage reply(B_REPLY);
64 reply.AddString("result", result);
65 reply.AddInt32("error", rc);
66 msg->SendReply(&reply);
72 BMessage reply(B_REPLY);
73 reply
[all...]
/haiku/src/servers/print_addon/
H A DPrintAddOnServerApplication.cpp96 BMessage reply(B_REPLY);
97 reply.AddMessage(kPrintSettingsAttribute, &settings);
98 SendReply(message, &reply);
131 BMessage reply(B_REPLY);
132 reply.AddMessage(kPrintSettingsAttribute, &settings);
133 SendReply(message, &reply);
166 BMessage reply(B_REPLY);
167 reply.AddMessage(kPrintSettingsAttribute, &settings);
168 SendReply(message, &reply);
214 BMessage reply(B_REPL
221 SendReply(BMessage* message, BMessage* reply) argument
[all...]
H A DPrintAddOnServerApplication.h52 void SendReply(BMessage* message, BMessage* reply);
/haiku/src/servers/registrar/
H A DClipboardHandler.cpp65 BMessage reply; local
76 reply.what = B_REG_RESULT;
77 reply.AddInt32("result", result);
78 message->SendReply(&reply);
88 reply.AddInt32("count", clipboard->Count());
93 reply.AddInt32("result", result);
94 reply.what = B_REG_RESULT;
95 message->SendReply(&reply);
111 reply.what = B_REG_RESULT;
112 reply
[all...]
H A DPackageWatchingManager.cpp40 BMessage reply(B_REG_SUCCESS);
41 request->SendReply(&reply);
43 BMessage reply(B_REG_ERROR);
44 reply.AddInt32("error", error);
45 request->SendReply(&reply);

Completed in 115 milliseconds

1234567891011>>