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

Function raiseError

src/jrd/replication/Utils.cpp:220–232  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218namespace Replication
219{
220 void raiseError(const char* msg, ...)
221 {
222 char buffer[BUFFER_LARGE];
223
224 va_list ptr;
225 va_start(ptr, msg);
226 vsprintf(buffer, msg, ptr);
227 va_end(ptr);
228
229 Arg::StatusVector error;
230 error << Arg::Gds(isc_random) << Arg::Str(buffer);
231 error.raise();
232 }
233
234 int executeShell(const string& command)
235 {

Callers 15

malformedMethod · 0.70
createMethod · 0.70
processMethod · 0.70
startTransactionMethod · 0.70
prepareTransactionMethod · 0.70
commitTransactionMethod · 0.70
rollbackTransactionMethod · 0.70
startSavepointMethod · 0.70
cleanupSavepointMethod · 0.70
insertRecordMethod · 0.70
updateRecordMethod · 0.70
deleteRecordMethod · 0.70

Calls 4

vsprintfFunction · 0.85
GdsClass · 0.85
StrClass · 0.85
raiseMethod · 0.45

Tested by

no test coverage detected