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

Function ERR_append_status

src/jrd/err.cpp:378–398  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

376
377
378void ERR_append_status(FbStatusVector* status_vector, const Arg::StatusVector& v)
379{
380/**************************************
381 *
382 * E R R _ a p p e n d _ s t a t u s
383 *
384 **************************************
385 *
386 * Functional description
387 * Append the given status vector with the passed arguments.
388 *
389 **************************************/
390 // First build a status vector with the passed one
391 Arg::StatusVector passed(status_vector);
392
393 // Now append the newly vector to the passed one
394 passed.append(v);
395
396 // Return the result
397 passed.copyTo(status_vector);
398}
399
400
401void ERR_build_status(FbStatusVector* status_vector, const Arg::StatusVector& v)

Callers 2

lock_bufferFunction · 0.85
RLCK_reserve_relationFunction · 0.85

Calls 2

appendMethod · 0.45
copyToMethod · 0.45

Tested by

no test coverage detected