Lines Matching defs:it

60 	When an application asks whether it is pre-registered or not and there
255 // add it to the right list
575 IARRequestMap::iterator it = fIARRequestsByID.find(team);
576 if (it != fIARRequestsByID.end()) {
577 BMessageQueue* requests = it->second;
581 fIARRequestsByID.erase(it);
584 it = fIARRequestsByToken.find((int32)token);
585 if (it != fIARRequestsByToken.end()) {
586 BMessageQueue* requests = it->second;
590 fIARRequestsByToken.erase(it);
739 for (AppInfoList::Iterator it(fRegisteredApps.It());
740 RosterAppInfo* info = *it;
741 ++it) {
1148 // TODO: if an app_server is still running, stop it first
1341 for (AppInfoList::Iterator it = fRegisteredApps.It(); it.IsValid(); ++it) {
1342 if (!(*it)->IsRunning())
1343 obsoleteApps.AddInfo(*it);
1347 for (AppInfoList::Iterator it = obsoleteApps.It(); it.IsValid(); ++it) {
1348 RemoveApp(*it);
1349 delete *it;
1356 for (AppInfoList::Iterator it = fEarlyPreRegisteredApps.It();
1357 it.IsValid();
1358 ++it) {
1359 if ((*it)->registration_time < timeLimit)
1360 obsoleteApps.AddInfo(*it);
1364 for (AppInfoList::Iterator it = obsoleteApps.It(); it.IsValid(); ++it) {
1365 fEarlyPreRegisteredApps.RemoveInfo(*it);
1366 delete *it;
1439 for (AppInfoList::Iterator it(fRegisteredApps.It());
1440 RosterAppInfo* info = *it; ++it) {
1465 // Special case, we add the input server to vital apps here so it is
1486 for (AppInfoList::Iterator it(fRegisteredApps.It());
1487 RosterAppInfo* info = *it; ++it) {
1552 // deactivate the app, if it was the active one
1578 // not sure, if it makes sense to use the MessageDeliverer here
1603 // not sure, if it makes sense to use the MessageDeliverer here
1632 // set the ref name to NULL and copy it into the flat structure
1687 IARRequestMap::iterator it = map.find(key);
1689 if (it == map.end()) {
1698 requests = it->second;