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

Function statusLength

src/common/utils.cpp:1444–1455  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1442}
1443
1444unsigned int statusLength(const ISC_STATUS* const status) throw()
1445{
1446 unsigned int l = 0;
1447 for(;;)
1448 {
1449 if (status[l] == isc_arg_end)
1450 {
1451 return l;
1452 }
1453 l += nextArg(status[l]);
1454 }
1455}
1456
1457bool cmpStatus(unsigned int len, const ISC_STATUS* a, const ISC_STATUS* b) throw()
1458{

Callers 15

ERR_post_warningFunction · 0.85
ERR_post_nothrowFunction · 0.85
post_nothrowFunction · 0.85
getRemoteErrorMethod · 0.85
getTextMethod · 0.85
set_statusMethod · 0.85
~status_exceptionMethod · 0.85
stuffByExceptionMethod · 0.85
saveMethod · 0.85
setErrorsMethod · 0.85
setWarningsMethod · 0.85
mergeStatusMethod · 0.85

Calls 1

nextArgFunction · 0.85

Tested by

no test coverage detected