Searched refs:reply (Results 226 - 250 of 305) sorted by relevance

1234567891011>>

/haiku/src/apps/icon-o-matic/
H A DIconEditorApp.cpp101 BMessage reply; local
102 if (messenger.SendMessage(B_QUIT_REQUESTED, &reply) != B_OK)
105 if (reply.FindBool("result", &result) == B_OK && !result)
153 if (message->FindMessenger("reply to", &messenger) < B_OK) {
/haiku/src/tests/kits/app/bmessagerunner/
H A DMessageRunnerTestHelpers.cpp143 BMessage reply; local
/haiku/headers/os/app/
H A DKeyStore.h99 BMessage* reply) const;
/haiku/headers/private/debug/
H A Ddebug_support.h28 const void *message, int32 messageSize, void *reply,
/haiku/headers/private/libroot/
H A Duser_group.h94 KMessage& reply);
/haiku/src/kits/media/
H A DTimeSource.cpp340 timesource_get_start_latency_reply reply; local
341 rv = GetStartLatency(&reply.start_latency);
342 request->SendReply(rv, &reply, sizeof(reply));
H A DParameterWeb.cpp1299 controllable_get_parameter_data_reply reply; local
1314 data = reply.raw_data;
1322 &request, sizeof(request), &reply, sizeof(reply));
1325 if (reply.size < size)
1326 size = reply.size;
1332 *_size = reply.size;
1334 *_when = reply.last_change;
1371 controllable_set_parameter_data_reply reply; local
1395 &request, sizeof(request), &reply, sizeo
[all...]
/haiku/headers/private/app/
H A DRosterPrivate.h28 status_t SendTo(BMessage *message, BMessage *reply, bool mime);
/haiku/src/servers/net/
H A DServices.cpp207 BMessage reply(B_REPLY);
208 reply.AddString("name", name);
209 reply.AddBool("running", fNameMap.find(name) != fNameMap.end());
210 message->SendReply(&reply);
/haiku/src/apps/deskbar/
H A DBarApp.cpp404 BMessage reply('rply');
405 reply.AddBool("always on top", fSettings.alwaysOnTop);
406 message->SendReply(&reply);
411 BMessage reply('rply');
412 reply.AddBool("auto raise", fSettings.autoRaise);
413 message->SendReply(&reply);
418 BMessage reply('rply');
419 reply.AddBool("auto hide", fSettings.autoHide);
420 message->SendReply(&reply);
/haiku/src/add-ons/kernel/network/ppp/ipcp/
H A DProtocol.cpp938 // this packet is not a reply to our request
1046 // this packet is not a reply to our request
1207 // this packet is not a reply to our request
1536 net_buffer *reply = request; local
1538 if (!reply) {
1539 reply = gBufferModule->create(256);
1541 status_t status = gBufferModule->append_size(reply, 1492, (void **)(&ack));
1543 gBufferModule->free(reply);
1549 gBufferModule->trim(reply, 4);
1551 NetBufferHeaderReader<ppp_lcp_packet> bufferHeader(reply);
[all...]
/haiku/src/kits/tracker/
H A DAutoMounterSettings.cpp280 AutomountSettingsPanel::_GetSettings(BMessage* reply) const
283 if (fTarget.SendMessage(&message, reply, 2500000) != B_OK) {
H A DSettingsViews.h188 void _GetSettings(BMessage* reply) const;
/haiku/src/system/boot/platform/riscv/
H A Ddevices.cpp91 IORequest reply(ioOpWrite, readBuffer.Get(), numBlocks * BlockSize() + 1);
92 IORequest* reqs[] = {&req, &reply};
/haiku/src/apps/mediaplayer/
H A DMainWin.cpp542 BMessage reply(B_REPLY);
581 result = reply.AddBool("result", fController->IsPlaying());
597 result = reply.AddFloat("result",
615 result = reply.AddInt64("result",
645 result = reply.AddInt32("result", fPlaylist->CountItems());
718 result = reply.AddFlat("messages", &itemPropertyInfo);
746 result = reply.AddString("result", item->Title());
750 result = reply.AddString("result", item->LocationURI());
760 result = reply.AddInt64("result", nitem->Duration());
762 result = reply
[all...]
/haiku/src/kits/app/
H A DMessage.cpp70 bigtime_t timeout, BMessage* reply);
114 BMessage* reply)
139 result = reply->Unflatten(buffer);
211 // Note, that BeOS R5 seems to keep the reply info.
405 // still someone waiting for a reply to this message, we have to send
915 BMessage::SendReply(BMessage* reply, BHandler* replyTo, bigtime_t timeout) argument
919 return SendReply(reply, messenger, timeout);
924 BMessage::SendReply(BMessage* reply, BMessenger replyTo, bigtime_t timeout) argument
935 reply->fHeader->flags |= MESSAGE_FLAG_REPLY_AS_KMESSAGE;
942 reply
113 handle_reply(port_id replyPort, int32* _code, bigtime_t timeout, BMessage* reply) argument
977 SendReply(BMessage* reply, BMessage* replyToReply, bigtime_t sendTimeout, bigtime_t replyTimeout) argument
2273 _SendMessage(port_id port, team_id portOwner, int32 token, BMessage* reply, bigtime_t sendTimeout, bigtime_t replyTimeout) const argument
[all...]
H A DLooper.cpp134 // Close the message port and read and reply to the remaining messages.
145 // msg will automagically post generic reply
151 // msg will automagically post generic reply
753 BMessage reply(B_MESSAGE_NOT_UNDERSTOOD);
754 reply.AddInt32("error", err);
755 reply.AddString("message", errMsg);
756 message->SendReply(&reply);
1303 // We send a reply to the sender, when they're waiting for a reply or
1457 BMessage reply(B_REPL
[all...]
/haiku/src/system/libroot/posix/
H A Duser_group_common.cpp79 KMessage& reply)
82 &reply);
86 return (status_t)reply.What();
78 send_authentication_request_to_registrar(KMessage& request, KMessage& reply) argument
/haiku/src/kits/network/libnetapi/
H A DNetworkInterface.cpp575 BMessage reply; local
576 status_t status = networkServer.SendMessage(&message, &reply);
578 reply.FindInt32("status", &status);
/haiku/src/preferences/backgrounds/
H A DBackgroundsView.cpp680 BMessage reply; local
695 reply.MakeEmpty();
696 tracker.SendMessage(&message, &reply);
700 if (reply.what == B_MESSAGE_NOT_UNDERSTOOD
701 && reply.FindInt32("error", &error) == B_OK
708 if (reply.what == B_MESSAGE_NOT_UNDERSTOOD
709 && reply.FindInt32("error", &error) == B_OK
714 if (reply.FindMessenger("result", &trackerWindow) != B_OK)
725 reply.MakeEmpty();
726 tracker.SendMessage(&message, &reply);
[all...]
/haiku/src/kits/storage/disk_device/
H A DDiskDeviceRoster.cpp722 BMessage reply;
724 error = fManager.SendMessage(&request, &reply);
725 // analyze reply
729 error = reply.FindInt32("result", &result);
735 error = reply.FindMessage("device", &archive);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRPCServer.h66 status_t SendCallAsync(Call* call, Reply** reply,
/haiku/src/apps/resedit/
H A DBitmapView.cpp192 // ShowImage drop. This is a negotiated drag&drop, so send a reply
193 BMessage reply(B_COPY_TARGET), response;
194 reply.AddString("be:types", "image/jpeg");
195 reply.AddString("be:types", "image/png");
197 msg->SendReply(&reply, &response);
/haiku/headers/os/interface/
H A DShelf.h124 BMessage* reply);
/haiku/src/servers/media_addon/
H A DMediaAddonServer.cpp361 // TODO: don't know which reply is expected
382 add_on_server_instantiate_dormant_node_reply reply; local
387 request->creator_team, &reply.node);
388 request->SendReply(status, &reply, sizeof(reply));

Completed in 198 milliseconds

1234567891011>>