Home | History | Annotate | Download | only in ltrace

Lines Matching defs:tmp

54 	const char *tmp = NULL;
56 && DICT_FIND_VAL(name_cache, &function_name, &tmp) == 0)
57 return tmp;
60 tmp = cplus_demangle(function_name,
64 tmp = __cxa_demangle(function_name, NULL, NULL, &status);
66 if (name_cache == NULL || tmp == NULL) {
68 if (tmp == NULL)
70 return tmp;
77 if (DICT_INSERT(name_cache, &fn_copy, &tmp) < 0) {
82 return tmp;