Lines Matching refs:count

23 	bigtime_t interval, int32 count)
27 _InitData(target, message, interval, count, be_app_messenger);
32 bigtime_t interval, int32 count)
36 _InitData(target, &message, interval, count, be_app_messenger);
41 bigtime_t interval, int32 count, BMessenger replyTo)
45 _InitData(target, message, interval, count, replyTo);
50 bigtime_t interval, int32 count, BMessenger replyTo)
54 _InitData(target, &message, interval, count, replyTo);
91 BMessageRunner::SetCount(int32 count)
93 return _SetParams(false, 0, true, count);
98 BMessageRunner::GetInfo(bigtime_t* interval, int32* count) const
115 // count
117 if (reply.FindInt32("count", &_count) == B_OK) {
118 if (count != 0)
119 *count = _count;
142 bigtime_t interval, int32 count)
144 int32 token = _RegisterRunner(target, message, interval, count, true,
153 bigtime_t interval, int32 count, BMessenger replyTo)
155 int32 token = _RegisterRunner(target, message, interval, count, true,
202 \param count Specifies how many times the message shall be sent.
208 bigtime_t interval, int32 count, BMessenger replyTo)
210 fToken = _RegisterRunner(target, message, interval, count, false, replyTo);
220 \param count Specifies how many times the message shall be sent.
229 bigtime_t interval, int32 count, bool detach, BMessenger replyTo)
232 if (message == NULL || count == 0 || (count < 0 && detach))
250 result = request.AddInt32("count", count);
280 /*! Sets the message runner's interval and count parameters.
283 the interval or the count parameter respectively shall be reset.
291 \param resetCount \c true, if the count shall be reset, \c false
292 otherwise -- then \a count is ignored.
293 \param count Specifies how many times the message shall be sent.
304 bool resetCount, int32 count)
316 result = request.AddInt32("count", count);