Lines Matching refs:info

66 	\param info The RosterAppInfo to be added
67 \return \c true on success, false if \a info is \c NULL or there's not
71 AppInfoList::AddInfo(RosterAppInfo *info)
74 if (info)
75 result = fInfos.AddItem(info);
81 \param info The RosterAppInfo to be removed
82 \return \c true on success, false if \a info was not in the list.
85 AppInfoList::RemoveInfo(RosterAppInfo *info)
87 return fInfos.RemoveItem(info);
97 for (int32 i = 0; RosterAppInfo *info = InfoAt(i); i++)
98 delete info;
112 \a signature is \c NULL or the list doesn't contain an info with
125 doesn't contain an info with this team ID.
141 \a ref is \c NULL or the list doesn't contain an info with
158 doesn't contain an info with the token.
204 \param index The index of the info to be removed
216 \param index The index of the info to be returned
228 \param info The RosterAppInfo in question
229 \return The index of the supplied info, or -1, if \a info is \c NULL or not
233 AppInfoList::IndexOf(RosterAppInfo *info) const
235 return fInfos.IndexOf(info);
247 \c NULL or the list doesn't contain an info with this signature.
253 for (int32 i = 0; RosterAppInfo *info = InfoAt(i); i++) {
254 if (!strcasecmp(info->signature, signature))
267 contain an info with this team ID.
272 for (int32 i = 0; RosterAppInfo *info = InfoAt(i); i++) {
273 if (info->team == team)
288 \c NULL or the list doesn't contain an info with this entry_ref.
300 for (int32 i = 0; RosterAppInfo *info = InfoAt(i); i++) {
301 if (info->ref == realRef)
314 contain an info with this token.
319 for (int32 i = 0; RosterAppInfo *info = InfoAt(i); i++) {
320 if (info->token == token)