Searched refs:reply (Results 1 - 25 of 305) sorted by path

1234567891011>>

/haiku/3rdparty/mmu_man/irc/Haiku/
H A Dconfig.py44 registry.String(str(conf.supybot.reply.format.time()), """Determines the
/haiku/headers/os/app/
H A DKeyStore.h99 BMessage* reply) const;
H A DMessenger.h53 BMessage* reply) const;
55 BMessage* reply,
/haiku/headers/private/app/
H A DLaunchRoster.h70 BMessage& reply);
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
/haiku/headers/private/bluetooth/
H A DCommandManager.h85 BMessage reply; local
95 if (messenger->SendMessage(&request, &reply) == B_OK) {
96 reply.FindInt8("status", &bt_status);
98 reply.FindInt32("result", result);
/haiku/headers/private/debug/
H A DDebugContext.h27 void* reply, size_t replySize);
H A Ddebug_support.h28 const void *message, int32 messageSize, void *reply,
/haiku/headers/private/interface/
H A Dinput_globals.h14 status_t _control_input_server_(BMessage *command, BMessage *reply);
/haiku/headers/private/kernel/util/
H A DKMessage.h168 KMessage* reply,
177 status_t SendReply(KMessage* message, KMessage* reply,
/haiku/headers/private/libroot/
H A Dlaunch.h21 status_t send_request_to_launch_daemon(KMessage& request, KMessage& reply);
H A Duser_group.h94 KMessage& reply);
/haiku/headers/private/media/
H A DDataExchange.h27 status_t QueryServer(BMessage& request, BMessage& reply);
32 reply_data* reply, size_t replySize);
37 size_t requestSize, reply_data* reply, size_t replySize);
43 size_t requestSize, reply_data* reply, size_t replySize);
H A DServerInterface.h188 status_t SendReply(status_t result, reply_data* reply,
359 // in the library after the reply has been received
371 // in the library after the reply has been received
645 // if count > 0, a second reply containing count dormant_node_infos
/haiku/headers/private/net/
H A DSocketMessenger.h42 const BMessage& reply);
/haiku/headers/private/print/
H A DPrintAddOnServer.h50 status_t SendRequest(BMessage& request, BMessage& reply);
51 status_t GetResult(BMessage& reply);
52 status_t GetResultAndUpdateSettings(BMessage& reply,
/haiku/headers/private/userlandfs/private/
H A DRequestPort.h30 Request** reply = NULL,
35 Request** reply = NULL,
/haiku/src/add-ons/bluetooth/ResetLocalDevice/
H A DResetLocalDevice.cpp55 BMessage reply; local
62 if (fMessenger->SendMessage(&request, &reply) == B_OK)
63 reply.FindInt8("status", &btStatus);
/haiku/src/add-ons/kernel/drivers/disk/virtual/nbd/
H A Dnbd-server.py74 "Construct an NBD reply."
95 def reply(self, error, data=''): member in class:nbd_request
108 asock.send(req.reply(error=0,
115 asock.send(req.reply(error=0))
/haiku/src/add-ons/kernel/drivers/disk/virtual/remote_disk/
H A DRemoteDisk.cpp144 dprintf("RemoteDisk::FindAnyRemoteDisk(): Got no server reply: %s\n",
148 remote_disk_header* reply = (remote_disk_header*)fPacket; local
160 fServerAddress.sin_port = reply->port;
162 fImageSize = ntohll(reply->offset);
264 remote_disk_header reply; local
267 NULL, &reply, sizeof(reply), &replySize);
272 int16 packetSize = ntohs(reply.size);
350 // check whether the cached packet is indeed a read reply
418 // receive reply
439 remote_disk_header* reply = (remote_disk_header*)receiveBuffer; local
[all...]
/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/add-ons/kernel/file_systems/netfs/authentication_server/
H A DAuthenticationServer.cpp222 // send the reply
436 // prepare the reply
437 KMessage reply; local
438 reply.AddInt32("error", error);
440 reply.AddBool("cancelled", cancelled);
442 reply.AddString("user", user);
443 reply.AddString("password", password);
446 // send the reply
447 return reply.SendTo(port, token);
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DAuthenticationServer.cpp61 KMessage reply;
62 error = request.SendTo(fServerPort, -1, &reply);
65 // process the reply
67 if (reply.FindInt32("error", &error) != B_OK)
73 if (reply.FindBool("cancelled", &cancelled) != B_OK)
82 if (reply.FindString("user", &foundUser) != B_OK
83 || reply.FindString("password", &foundPassword) != B_OK) {
H A DSendReceiveRequest.h22 Request* reply; local
23 status_t error = connection->SendRequest(request, &reply);
26 *_reply = dynamic_cast<Reply*>(reply);
28 delete reply;
H A DServerConnection.cpp114 InitConnectionReply* reply = dynamic_cast<InitConnectionReply*>(_reply); local
115 if (!reply)
117 if (reply->error != B_OK)
118 return reply->error;

Completed in 175 milliseconds

1234567891011>>