- Timestamp:
- Dec 5, 2013 12:39:28 PM (11 years ago)
- Location:
- trunk/src/VBox/Runtime/common/table
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/table/avl_Destroy.cpp.h
r44528 r49788 48 48 49 49 if (*ppTree == KAVL_NULL) 50 return 0;50 return VINF_SUCCESS; 51 51 52 52 cEntries = 1; … … 75 75 76 76 rc = pfnCallBack(pEqual, pvUser); 77 if (rc )77 if (rc != VINF_SUCCESS) 78 78 return rc; 79 79 } … … 97 97 kASSERT(pNode->pRight == KAVL_NULL); 98 98 rc = pfnCallBack(pNode, pvUser); 99 if (rc )99 if (rc != VINF_SUCCESS) 100 100 return rc; 101 101 } … … 104 104 kASSERT(*ppTree == KAVL_NULL); 105 105 106 return 0;106 return VINF_SUCCESS; 107 107 } 108 108 -
trunk/src/VBox/Runtime/common/table/avl_DoWithAll.cpp.h
r44528 r49788 48 48 49 49 if (*ppTree == KAVL_NULL) 50 return 0;50 return VINF_SUCCESS; 51 51 52 52 AVLStack.cEntries = 1; … … 73 73 /* center */ 74 74 rc = pfnCallBack(pNode, pvParam); 75 if (rc )75 if (rc != VINF_SUCCESS) 76 76 return rc; 77 77 #ifdef KAVL_EQUAL_ALLOWED … … 80 80 { 81 81 rc = pfnCallBack(pEqual, pvParam); 82 if (rc )82 if (rc != VINF_SUCCESS) 83 83 return rc; 84 84 } … … 113 113 /* center */ 114 114 rc = pfnCallBack(pNode, pvParam); 115 if (rc )115 if (rc != VINF_SUCCESS) 116 116 return rc; 117 117 #ifdef KAVL_EQUAL_ALLOWED … … 120 120 { 121 121 rc = pfnCallBack(pEqual, pvParam); 122 if (rc )122 if (rc != VINF_SUCCESS) 123 123 return rc; 124 124 } … … 135 135 } 136 136 137 return 0;137 return VINF_SUCCESS; 138 138 } 139 139 -
trunk/src/VBox/Runtime/common/table/avlgcphys.cpp
r44528 r49788 61 61 #include <iprt/avl.h> 62 62 #include <iprt/assert.h> 63 #include <iprt/err.h> 63 64 64 65 /* -
trunk/src/VBox/Runtime/common/table/avlgcptr.cpp
r48935 r49788 61 61 #include <iprt/avl.h> 62 62 #include <iprt/assert.h> 63 63 #include <iprt/err.h> 64 64 65 65 /* -
trunk/src/VBox/Runtime/common/table/avlhcphys.cpp
r48935 r49788 61 61 #include <iprt/avl.h> 62 62 #include <iprt/assert.h> 63 #include <iprt/err.h> 63 64 64 65 /* -
trunk/src/VBox/Runtime/common/table/avllu32.cpp
r48935 r49788 61 61 #include <iprt/avl.h> 62 62 #include <iprt/assert.h> 63 #include <iprt/err.h> 63 64 64 65 /* -
trunk/src/VBox/Runtime/common/table/avlogcphys.cpp
r48935 r49788 62 62 #include <iprt/avl.h> 63 63 #include <iprt/assert.h> 64 #include <iprt/err.h> 64 65 65 66 /* -
trunk/src/VBox/Runtime/common/table/avlogcptr.cpp
r48935 r49788 63 63 #include <iprt/avl.h> 64 64 #include <iprt/assert.h> 65 #include <iprt/err.h> 65 66 66 67 /* -
trunk/src/VBox/Runtime/common/table/avlohcphys.cpp
r48935 r49788 62 62 #include <iprt/avl.h> 63 63 #include <iprt/assert.h> 64 #include <iprt/err.h> 64 65 65 66 /* -
trunk/src/VBox/Runtime/common/table/avloioport.cpp
r48935 r49788 62 62 #include <iprt/avl.h> 63 63 #include <iprt/assert.h> 64 #include <iprt/err.h> 64 65 65 66 /* -
trunk/src/VBox/Runtime/common/table/avlou32.cpp
r48935 r49788 63 63 #include <iprt/avl.h> 64 64 #include <iprt/assert.h> 65 #include <iprt/err.h> 65 66 66 67 /* -
trunk/src/VBox/Runtime/common/table/avlpv.cpp
r48935 r49788 61 61 #include <iprt/avl.h> 62 62 #include <iprt/assert.h> 63 63 #include <iprt/err.h> 64 64 65 65 /* -
trunk/src/VBox/Runtime/common/table/avlrfoff.cpp
r44528 r49788 66 66 #include <iprt/avl.h> 67 67 #include <iprt/assert.h> 68 #include <iprt/err.h> 68 69 69 70 /* -
trunk/src/VBox/Runtime/common/table/avlrgcptr.cpp
r48935 r49788 66 66 #include <iprt/avl.h> 67 67 #include <iprt/assert.h> 68 #include <iprt/err.h> 68 69 69 70 /* -
trunk/src/VBox/Runtime/common/table/avlrogcphys.cpp
r48935 r49788 67 67 #include <iprt/avl.h> 68 68 #include <iprt/assert.h> 69 #include <iprt/err.h> 69 70 70 71 /* -
trunk/src/VBox/Runtime/common/table/avlrogcptr.cpp
r48935 r49788 67 67 #include <iprt/avl.h> 68 68 #include <iprt/assert.h> 69 #include <iprt/err.h> 69 70 70 71 /* -
trunk/src/VBox/Runtime/common/table/avlroioport.cpp
r48935 r49788 67 67 #include <iprt/avl.h> 68 68 #include <iprt/assert.h> 69 #include <iprt/err.h> 69 70 70 71 /* -
trunk/src/VBox/Runtime/common/table/avlroogcptr.cpp
r48935 r49788 63 63 #include <iprt/avl.h> 64 64 #include <iprt/assert.h> 65 #include <iprt/err.h> 65 66 66 67 /* -
trunk/src/VBox/Runtime/common/table/avlrpv.cpp
r48935 r49788 65 65 #include <iprt/avl.h> 66 66 #include <iprt/assert.h> 67 67 #include <iprt/err.h> 68 68 69 69 /* -
trunk/src/VBox/Runtime/common/table/avlru64.cpp
r44528 r49788 65 65 #include <iprt/avl.h> 66 66 #include <iprt/assert.h> 67 67 #include <iprt/err.h> 68 68 69 69 /* -
trunk/src/VBox/Runtime/common/table/avlruintptr.cpp
r48935 r49788 66 66 #include <iprt/avl.h> 67 67 #include <iprt/assert.h> 68 #include <iprt/err.h> 68 69 69 70 /* -
trunk/src/VBox/Runtime/common/table/avlu32.cpp
r48935 r49788 61 61 #include <iprt/avl.h> 62 62 #include <iprt/assert.h> 63 #include <iprt/err.h> 63 64 64 65 /* -
trunk/src/VBox/Runtime/common/table/avluintptr.cpp
r44528 r49788 61 61 #include <iprt/avl.h> 62 62 #include <iprt/assert.h> 63 #include <iprt/err.h> 63 64 64 65 /* -
trunk/src/VBox/Runtime/common/table/avlul.cpp
r48935 r49788 61 61 #include <iprt/avl.h> 62 62 #include <iprt/assert.h> 63 #include <iprt/err.h> 63 64 64 65 /*
Note:
See TracChangeset
for help on using the changeset viewer.