Lines Matching refs:fnc

101    fn_config* fnc = (fn_config*) CLG_MALLOC("cl.clo.nf.1",
104 fnc->dump_before = CONFIG_DEFAULT;
105 fnc->dump_after = CONFIG_DEFAULT;
106 fnc->zero_before = CONFIG_DEFAULT;
107 fnc->toggle_collect = CONFIG_DEFAULT;
108 fnc->skip = CONFIG_DEFAULT;
109 fnc->pop_on_jump = CONFIG_DEFAULT;
110 fnc->group = CONFIG_DEFAULT;
111 fnc->separate_callers = CONFIG_DEFAULT;
112 fnc->separate_recursions = CONFIG_DEFAULT;
115 fnc->verbosity = CONFIG_DEFAULT;
118 return fnc;
302 fn_config* fnc;
307 fnc = get_fnc2(fn_configs, name);
313 return fnc;
318 static void update_fn_config1(fn_node* fn, fn_config* fnc)
320 if (fnc->dump_before != CONFIG_DEFAULT)
321 fn->dump_before = (fnc->dump_before == CONFIG_TRUE);
323 if (fnc->dump_after != CONFIG_DEFAULT)
324 fn->dump_after = (fnc->dump_after == CONFIG_TRUE);
326 if (fnc->zero_before != CONFIG_DEFAULT)
327 fn->zero_before = (fnc->zero_before == CONFIG_TRUE);
329 if (fnc->toggle_collect != CONFIG_DEFAULT)
330 fn->toggle_collect = (fnc->toggle_collect == CONFIG_TRUE);
332 if (fnc->skip != CONFIG_DEFAULT)
333 fn->skip = (fnc->skip == CONFIG_TRUE);
335 if (fnc->pop_on_jump != CONFIG_DEFAULT)
336 fn->pop_on_jump = (fnc->pop_on_jump == CONFIG_TRUE);
338 if (fnc->group != CONFIG_DEFAULT)
339 fn->group = fnc->group;
341 if (fnc->separate_callers != CONFIG_DEFAULT)
342 fn->separate_callers = fnc->separate_callers;
344 if (fnc->separate_recursions != CONFIG_DEFAULT)
345 fn->separate_recursions = fnc->separate_recursions;
348 if (fnc->verbosity != CONFIG_DEFAULT)
349 fn->verbosity = fnc->verbosity;
432 fn_config* fnc = get_fnc(tmp_str);
433 fnc->skip = CONFIG_TRUE;
437 fn_config* fnc = get_fnc(tmp_str);
438 fnc->dump_before = CONFIG_TRUE;
442 fn_config* fnc = get_fnc(tmp_str);
443 fnc->zero_before = CONFIG_TRUE;
447 fn_config* fnc = get_fnc(tmp_str);
448 fnc->dump_after = CONFIG_TRUE;
452 fn_config* fnc = get_fnc(tmp_str);
453 fnc->toggle_collect = CONFIG_TRUE;
463 fn_config* fnc = get_fnc(tmp_str);
464 fnc->pop_on_jump = CONFIG_TRUE;
472 fn_config* fnc;
476 fnc = get_fnc(s+1);
477 fnc->verbosity = n;
487 fn_config* fnc;
491 fnc = get_fnc(s+1);
492 fnc->group = n;
496 fn_config* fnc;
500 fnc = get_fnc(s+1);
501 fnc->separate_callers = n;
505 fn_config* fnc;
509 fnc = get_fnc(s+1);
510 fnc->separate_recursions = n;