Lines Matching defs:target

24 	The target for replies to the delivered message(s) is \c be_app_messenger.
34 \param target Target of the message(s).
35 \param message The message to be sent to the target.
41 BMessageRunner::BMessageRunner(BMessenger target, const BMessage* message,
46 _InitData(target, message, interval, count, be_app_messenger);
52 The target for replies to the delivered message(s) is \c be_app_messenger.
62 \param target Target of the message(s).
63 \param message The message to be sent to the target.
69 BMessageRunner::BMessageRunner(BMessenger target, const BMessage& message,
74 _InitData(target, &message, interval, count, be_app_messenger);
80 This constructor version additionally allows to specify the target for
91 \param target Target of the message(s).
92 \param message The message to be sent to the target.
99 BMessageRunner::BMessageRunner(BMessenger target, const BMessage* message,
104 _InitData(target, message, interval, count, replyTo);
110 This constructor version additionally allows to specify the target for
121 \param target Target of the message(s).
122 \param message The message to be sent to the target.
129 BMessageRunner::BMessageRunner(BMessenger target, const BMessage& message,
134 _InitData(target, &message, interval, count, replyTo);
266 The target for replies to the delivered message(s) is \c be_app_messenger.
268 \param target Target of the message(s).
269 \param message The message to be sent to the target.
276 BMessageRunner::StartSending(BMessenger target, const BMessage* message,
279 int32 token = _RegisterRunner(target, message, interval, count, true,
290 \param target Target of the message(s).
291 \param message The message to be sent to the target.
299 BMessageRunner::StartSending(BMessenger target, const BMessage* message,
302 int32 token = _RegisterRunner(target, message, interval, count, true, replyTo);
342 \param target Target of the message(s).
343 \param message The message to be sent to the target.
351 BMessageRunner::_InitData(BMessenger target, const BMessage* message,
354 fToken = _RegisterRunner(target, message, interval, count, false, replyTo);
360 \param target Target of the message(s).
361 \param message The message to be sent to the target.
372 BMessageRunner::_RegisterRunner(BMessenger target, const BMessage* message,
384 error = request.AddMessenger("target", target);