Lines Matching full:function
8 function related tep APIs
31 functions resolver. This function receives a pointer to its custom context
33 function, which has to be resolved. In case of success, it should return
34 the name of the function and its module (if any) in _modp_.
36 The _tep_set_function_resolver()_ function registers _func_ as an alternative
38 The _priv_ argument is a custom context of the _func_ function. The function
41 a function address to a function name.
43 The _tep_reset_function_resolver()_ function resets the kernel functions
44 resolver to the default function. The _tep_ argument is trace event parser
48 These APIs can be used to find function name and start address, by given
50 the function that would contain it.
52 The _tep_find_function()_ function returns the function name, which contains the
55 The _tep_find_function_address()_ function returns the function start address,
57 the function that would contain it. The _tep_ argument is the trace event
60 The _tep_register_function()_ function registers a function name mapped to an
61 address and (optional) module. This mapping is used in case the function tracer
63 the kallsyms function names with their corresponding addresses with this
64 function. The _tep_ argument is the trace event parser context. The _name_ is
65 the name of the function, the string is copied internally. The _addr_ is the
66 start address of the function. The _mod_ is the kernel module the function may
69 The _tep_register_print_string()_ function registers a string by the address
81 The _tep_set_function_resolver()_ function returns 0 in case of success, or -1
84 The _tep_find_function()_ function returns the function name, or NULL in case
87 The _tep_find_function_address()_ function returns the function start address,
90 The _tep_register_function()_ function returns 0 in case of success. In case of
93 The _tep_register_print_string()_ function returns 0 in case of success. In case
132 addr is in function named fname, starting at fstart address,