MCPcopy Create free account
hub / github.com/apache/trafficserver / insert

Method insert

include/tscore/List.h:405–418  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

403
404template <class C, class L>
405inline void
406DLL<C, L>::insert(C *e, C *after)
407{
408 if (!after) {
409 push(e);
410 return;
411 }
412 prev(e) = after;
413 next(e) = next(after);
414 next(after) = e;
415 if (next(e)) {
416 prev(next(e)) = e;
417 }
418}
419
420template <class C, class L>
421auto

Callers 11

CB_Load_SecretFunction · 0.45
parse_callbacksFunction · 0.45
parse_callbacksFunction · 0.45
handle_orderFunction · 0.45
global_handlerFunction · 0.45
add_testMethod · 0.45
conf.cmake.in.pyFile · 0.45
conf.pyFile · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by 4

CB_Load_SecretFunction · 0.36
parse_callbacksFunction · 0.36
parse_callbacksFunction · 0.36
add_testMethod · 0.36