MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / containsErrorCode

Function containsErrorCode

src/common/utils.cpp:1803–1812  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1801}
1802
1803bool containsErrorCode(const ISC_STATUS* v, ISC_STATUS code)
1804{
1805 for (; v[0] == isc_arg_gds; v = nextCode(v))
1806 {
1807 if (v[1] == code)
1808 return true;
1809 }
1810
1811 return false;
1812}
1813
1814inline bool sqlSymbolChar(char c, bool first)
1815{

Callers 14

execWithCheckMethod · 0.85
openBlobMethod · 0.85
logSecurityDatabaseErrorFunction · 0.85
executeMethod · 0.85
runSweepMethod · 0.85
attachMethod · 0.85
populateMethod · 0.85
getListMethod · 0.85
openDbFunction · 0.85
checkCreateDatabaseGrantFunction · 0.85
getListMethod · 0.85
compressFunction · 0.85

Calls 1

nextCodeFunction · 0.85

Tested by

no test coverage detected