HomeSort by: relevance | last modified time | path
    Searched defs:gdb_tilde_expand (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdbsupport/
gdb_tilde_expand.h 24 extern std::string gdb_tilde_expand (const char *path);
26 /* Overload of gdb_tilde_expand that takes std::string. */
28 gdb_tilde_expand (const std::string &path) function
30 return gdb_tilde_expand (path.c_str ());
33 /* Overload of gdb_tilde_expand that takes gdb::unique_xmalloc_ptr<char>. */
35 gdb_tilde_expand (const gdb::unique_xmalloc_ptr<char> &path) function
37 return gdb_tilde_expand (path.get ());
gdb_tilde_expand.cc 22 #include "gdb_tilde_expand.h"
70 /* See gdbsupport/gdb_tilde_expand.h. */
73 gdb_tilde_expand (const char *dir) function
  /src/external/gpl3/gdb.old/dist/gdbsupport/
gdb_tilde_expand.cc 22 #include "gdb_tilde_expand.h"
70 /* See gdbsupport/gdb_tilde_expand.h. */
73 gdb_tilde_expand (const char *dir) function

Completed in 24 milliseconds