Searched refs:reply (Results 201 - 225 of 305) sorted by relevance

1234567891011>>

/haiku/src/servers/app/
H A DDesktopListener.h36 BPrivate::LinkSender& reply) = 0;
94 BPrivate::LinkSender& reply);
/haiku/src/servers/app/stackandtile/
H A DStackAndTile.h54 BPrivate::LinkSender& reply);
105 BPrivate::LinkSender& reply);
H A DSATWindow.h42 BPrivate::LinkSender& reply);
/haiku/src/add-ons/kernel/file_systems/userlandfs/private/
H A DRequestPort.cpp106 RequestHandler* handler, Request** reply, bigtime_t timeout)
111 return HandleRequests(handler, reply, timeout);
105 SendRequest(RequestAllocator* allocator, RequestHandler* handler, Request** reply, bigtime_t timeout) argument
/haiku/src/add-ons/network_settings/sshd/
H A DSSHServiceAddOn.cpp145 KMessage reply; local
147 reply);
/haiku/headers/private/app/
H A DMessagePrivate.h65 // reply info
189 BMessage *reply, bigtime_t sendTimeout,
193 reply, sendTimeout, replyTimeout);
188 SendMessage(port_id port, team_id portOwner, int32 token, BMessage *reply, bigtime_t sendTimeout, bigtime_t replyTimeout) const argument
H A DLaunchRoster.h70 BMessage& reply);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DReplyInterpreter.h64 ReplyInterpreter(RPC::Reply* reply = NULL);
67 inline status_t SetTo(RPC::Reply* reply);
/haiku/src/add-ons/input_server/devices/keyboard/
H A DTeamMonitorWindow.cpp67 BMessage reply; local
69 messenger.SendMessage(&message, &reply, 3000000, 3000000);
72 if (reply.what != B_REPLY
73 || reply.FindBool("result", &result) != B_OK
77 message.AddInt32("error", reply.what);
80 return reply.what;
439 int32 reply;
440 if (message->FindInt32("error", &reply) != B_OK)
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A Dl2cap_signal.cpp254 net_buffer* reply = gBufferModule->clone(buffer, false); local
255 if (reply == NULL)
258 gBufferModule->trim(reply, length);
259 return send_l2cap_command(conn, L2CAP_ECHO_RSP, ident, reply);
280 net_buffer* reply = NULL; local
284 reply = make_l2cap_information_rsp(replyCode, type,
290 reply = make_l2cap_information_rsp(replyCode, type,
295 return send_l2cap_command(conn, replyCode, ident, reply);
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNetFSServer.h73 void _SendReply(BMessage* message, BMessage* reply,
/haiku/src/servers/midi/
H A DMidiServerApp.h66 BMessage* reply);
/haiku/src/kits/interface/
H A DShelf.cpp229 BMessage reply(B_REPLY);
230 reply.AddInt32("id", uniqueID);
231 reply.AddInt32("error", status);
232 message->SendReply(&reply);
613 BMessage reply; local
618 err = _GetProperty(&specifier, &reply);
620 err = reply.FindInt32("index", &i);
762 BMessage reply; local
763 status_t err = _GetProperty(specifier, &reply);
767 err = reply
1476 _GetProperty(BMessage *msg, BMessage *reply) argument
[all...]
/haiku/src/kits/storage/
H A DMime.cpp53 BMessage reply; local
56 // Build and send the message, read the reply
66 err = BRoster::Private().SendTo(&msg, &reply, true);
68 err = reply.what == B_REG_RESULT ? B_OK : B_BAD_VALUE;
70 err = reply.FindInt32("result", &result);
/haiku/src/add-ons/tracker/zipomatic/
H A DZipperThread.cpp430 BMessage request, reply;
433 status_t status = trackerMessenger.SendMessage(&request, &reply);
444 reply.MakeEmpty();
445 return trackerMessenger.SendMessage(&request, &reply);
/haiku/src/kits/network/libnetapi/
H A DNetworkDevice.cpp879 BMessage reply; local
880 status = networkServer.SendMessage(&message, &reply);
882 reply.FindInt32("status", &status);
918 BMessage reply; local
919 status = networkServer.SendMessage(&message, &reply);
921 reply.FindInt32("status", &status);
940 BMessage reply; local
941 status = networkServer.SendMessage(&message, &reply);
943 reply.FindInt32("status", &status);
971 BMessage reply; local
[all...]
/haiku/src/apps/cortex/ValControl/
H A DValControlDigitSegment.cpp352 BMessage reply(ValControl::M_VALUE);
353 reply.AddDouble("value", value());
354 pMsg->SendReply(&reply);
/haiku/src/servers/launch/
H A DJob.cpp573 BMessage reply(fTeam < 0 ? fTeam : (uint32)B_OK);
574 if (reply.what == B_OK) {
575 reply.AddInt32("team", fTeam);
584 reply.AddInt32(name.String(),
589 message->SendReply(&reply);
/haiku/src/kits/media/
H A DMediaFormats.cpp371 BMessage reply; local
372 FormatManager::GetInstance()->GetFormats(sLastFormatsUpdate, reply);
376 if (reply.FindBool("need_update", &needUpdate) < B_OK)
384 if (reply.FindInt64("timestamp", &sLastFormatsUpdate) < B_OK
385 || reply.GetInfo("formats", &code, &count) < B_OK)
396 if (reply.FindData("formats", MEDIA_META_FORMAT_TYPE, index,
406 if (reply.FindData("formats", MEDIA_META_FORMAT_TYPE, index,
/haiku/src/bin/
H A Dhey.cpp9 // in the reply message to stdout, so you can use it in shell scripting more easily:
66 // Hey(target,const char*,reply) was previously limited to 100 tokens. It
71 // 1.2.3: new option: -s for silent processing (no reply or errors printed) AM
89 // sent back in the reply message; also added B_COUNT_PROPERTIES support
97 //v1.1.0: Flattened BPropertyInfo is printed if found in the reply of B_GET_SUPPORTED_SUITES
114 status_t Hey(BMessenger* target, const char* arg, BMessage* reply);
116 status_t Hey(BMessenger* target, char* argv[], int32* argx, int32 argc, BMessage* reply);
132 #define DEBUG_HEY 0 // 1: prints the script message to be sent to the target application, 0: prints only the reply
346 BMessage reply; local
348 reply
362 Hey(BMessenger* target, const char* arg, BMessage* reply) argument
421 Hey(BMessenger* target, char* argv[], int32* argx, int32 argc, BMessage* reply) argument
502 BMessage reply; local
[all...]
/haiku/src/add-ons/accelerants/radeon_hd/
H A Ddisplayport.cpp170 message->reply = ack;
171 switch(message->reply & DP_AUX_NATIVE_REPLY_MASK) {
175 TRACE("%s: aux reply defer received. Snoozing.\n", __func__);
179 TRACE("%s: aux invalid native reply: 0x%02x\n", __func__,
180 message->reply);
240 uint8 reply[3]; local
245 message.buffer = reply;
265 switch (message.reply & DP_AUX_I2C_REPLY_MASK) {
267 *data = reply[0];
277 TRACE("%s: aux invalid I2C reply
[all...]
/haiku/src/servers/mail/
H A DMailDaemonApplication.cpp311 BMessage reply('mnuc');
312 reply.AddInt32("num_new_messages", fNewMessages);
315 msg->SendReply(&reply);
343 BMessage reply('mnuc'); // Mail New message Count
349 reply.AddInt32("num_new_messages", fNewMessages);
350 msg->SendReply(&reply);
/haiku/src/add-ons/kernel/drivers/network/wlan/aironetwifi/dev/an/
H A Dif_an.c550 struct an_reply reply; local
572 bzero(&reply,sizeof(reply));
577 if (an_cmd_struct(sc, &cmd_struct, &reply)) {
600 bzero(&reply,sizeof(reply));
605 if (an_cmd_struct(sc, &cmd_struct, &reply)) {
629 bzero(&reply,sizeof(reply));
634 if (an_cmd_struct(sc, &cmd_struct, &reply)) {
1260 an_cmd_struct(struct an_softc *sc, struct an_command *cmd, struct an_reply *reply) argument
1381 struct an_reply reply; local
1493 struct an_reply reply; local
[all...]
/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/apps/showimage/
H A DImageFileNavigator.cpp209 BMessage reply; local
210 if (fTrackerMessenger.SendMessage(&request, &reply) != B_OK)
212 if (reply.FindRef("result", &nextRef) != B_OK)

Completed in 174 milliseconds

1234567891011>>