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

Function MSC_push

src/gpre/msc.cpp:382–393  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

380//
381
382void MSC_push( gpre_nod* object, gpre_lls** pointer)
383{
384 gpre_lls* stack = free_lls;
385 if (stack)
386 free_lls = stack->lls_next;
387 else
388 stack = (gpre_lls*) MSC_alloc(LLS_LEN);
389
390 stack->lls_object = object;
391 stack->lls_next = *pointer;
392 *pointer = stack;
393}
394
395
396//____________________________________________________________

Callers 15

EXP_rseFunction · 0.85
par_udfFunction · 0.85
act_grant_revokeFunction · 0.85
act_insertFunction · 0.85
act_procedureFunction · 0.85
act_updateFunction · 0.85
act_upsertFunction · 0.85
par_field_constraintFunction · 0.85
par_table_constraintFunction · 0.85
PAR_event_initFunction · 0.85
PAR_initFunction · 0.85
par_basedFunction · 0.85

Calls 1

MSC_allocFunction · 0.85

Tested by

no test coverage detected