Changeset 11336 in vbox for trunk/src/VBox/Main/Performance.cpp
- Timestamp:
- Aug 11, 2008 2:36:14 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Performance.cpp
r11180 r11336 435 435 ElementList::const_iterator it; 436 436 437 printf("Filter::match(%p, %s)\n", static_cast<const IUnknown*> (object), name.c_str());437 LogFlowThisFunc(("Filter::match(%p, %s)\n", static_cast<const IUnknown*> (object), name.c_str())); 438 438 for (it = mElements.begin(); it != mElements.end(); it++) 439 439 { 440 printf("...matching against(%p, %s)\n", static_cast<const IUnknown*> ((*it).first), (*it).second.c_str());440 LogFlowThisFunc(("...matching against(%p, %s)\n", static_cast<const IUnknown*> ((*it).first), (*it).second.c_str())); 441 441 if ((*it).first.isNull() || (*it).first == object) 442 442 { … … 444 444 if ((*it).second == "*" || (*it).second == name) 445 445 { 446 printf("...found!\n");446 LogFlowThisFunc(("...found!\n")); 447 447 return true; 448 448 } 449 449 } 450 450 } 451 printf("...no matches!\n");451 LogFlowThisFunc(("...no matches!\n")); 452 452 return false; 453 453 }
Note:
See TracChangeset
for help on using the changeset viewer.