HomeSort by relevance Sort by last modified time
    Searched refs:sym_path (Results 1 - 3 of 3) sorted by null

  /external/qemu/memcheck/
memcheck_util.c 29 * sym_path - Buffer, where to save path to the symbols file path for the givem
32 * max_char - Character size of the buffer addressed by sym_path parameter.
34 * 0 on success, or -1 if symbols file has not been found, or sym_path buffer
38 get_sym_path(const char* module_path, char* sym_path, size_t max_char)
45 strcpy(sym_path, sym_path_root);
47 if (sym_path[strlen(sym_path)-1] != PATH_SEP_C) {
48 strcat(sym_path, PATH_SEP);
54 strcat(sym_path, "symbols");
59 strcat(sym_path, module_path)
235 char sym_path[MAX_PATH]; local
    [all...]
  /ndk/sources/host-tools/ndk-stack/
ndk-stack.c 38 const char* sym_path = NULL; local
53 sym_path = argv[n];
60 if (sym_path == NULL) {
70 NdkCrashParser* parser = CreateNdkCrashParser(stdout, sym_path);
  /external/chromium_org/tools/code_coverage/
coverage.py 231 def Upload(self, list_coverage, upload_path, sym_path=None, src_root=None):
241 sym_path: Symbol path for the build (Win32 only)
268 convert_command = ('%s -sym_path=%s -src_root=%s %s' %
271 sym_path,

Completed in 355 milliseconds