Lines Matching refs:token

61 	\brief Next unused token for message runners.
125 \param token The unique token associated with the message runner.
132 RunnerInfo(team_id team, int32 token, BMessenger target, BMessage *message,
135 token(token),
192 int32 token; /*!< The unique token associated with the
321 reply.AddInt32("token", info->token);
344 int32 token;
345 if (error == B_OK && request->FindInt32("token", &token) != B_OK)
349 if (RunnerInfo *info = _InfoForToken(token))
379 int32 token;
384 if (error == B_OK && request->FindInt32("token", &token) != B_OK)
394 info = _InfoForToken(token);
459 int32 token;
460 if (error == B_OK && request->FindInt32("token", &token) != B_OK)
465 info = _InfoForToken(token);
548 /*! \brief Removes a RunnerInfo with a specified token from the list of
553 \param token The token identifying the RunnerInfo to be removed.
555 contain an info with the supplied token.
558 MessageRunnerManager::_RemoveInfoWithToken(int32 token)
561 int32 index = _IndexOfToken(token);
624 \param token The token identifying the RunnerInfo to be returned.
626 doesn't contain an info with the specified token.
629 MessageRunnerManager::_InfoForToken(int32 token) const
631 return _InfoAt(_IndexOfToken(token));
652 token in the list of RunnerInfos.
656 \param token The token identifying the RunnerInfo whose index shall be
659 contain an info with the supplied token.
662 MessageRunnerManager::_IndexOfToken(int32 token) const
665 if (info->token == token)
755 "time: %" B_PRId64 ", now: %" B_PRId64 "\n", info->token, info->interval,
762 /*! \brief Returns a new unused message runner token.
766 \return A new unused message runner token.