Home
last modified time | relevance | path

Searched refs:sym_path (Results 1 – 1 of 1) sorted by relevance

/external/qemu/memcheck/
Dmemcheck_util.c38 get_sym_path(const char* module_path, char* sym_path, size_t max_char) in get_sym_path() argument
45 strcpy(sym_path, sym_path_root); in get_sym_path()
47 if (sym_path[strlen(sym_path)-1] != PATH_SEP_C) { in get_sym_path()
48 strcat(sym_path, PATH_SEP); in get_sym_path()
54 strcat(sym_path, "symbols"); in get_sym_path()
59 strcat(sym_path, module_path); in get_sym_path()
64 while (!path_exists(sym_path)) { in get_sym_path()
66 char* name = strrchr(sym_path, PATH_SEP_C); in get_sym_path()
70 char* parent = strrchr(sym_path, PATH_SEP_C); in get_sym_path()
73 if (strcmp(sym_path, sym_path_root) == 0) { in get_sym_path()
[all …]