Lines Matching defs:char

82 const char*
89 static __thread const char* system_libdir(ABIGAIL_ROOT_SYSTEM_LIBDIR);
441 const vector<char**>& debug_info_root_paths)
477 const vector<char**>& debug_info_root_paths)
531 static const char* ANONYMOUS_STRUCT_INTERNAL_NAME = "__anonymous_struct__";
532 static const char* ANONYMOUS_UNION_INTERNAL_NAME = "__anonymous_union__";
533 static const char* ANONYMOUS_ENUM_INTERNAL_NAME = "__anonymous_enum__";
547 const char*
554 const char*
561 const char*
664 char *link_target_path = realpath(file_path.c_str(), NULL);
697 char *p = strdup(path.c_str());
698 char *r = ::dirname(p);
725 char *p = strdup(path.c_str());
726 char *f = ::basename(p);
749 char *realp = realpath(path.c_str(), NULL);
954 unsigned char c = *i;
1181 char tmp_buf[TMP_BUF_LEN];
1286 /// Convert a vector<char*> into a vector<char**>.
1292 convert_char_stars_to_char_star_stars(const vector<char*> &char_stars,
1293 vector<char**>& char_star_stars)
1295 for (vector<char*>::const_iterator i = char_stars.begin();
1298 char_star_stars.push_back(const_cast<char**>(&*i));
1304 char* path_template_;
1310 const char* templat = "/tmp/libabigail-tmp-file-XXXXXX";
1312 path_template_ = new char[s + 1];
1357 const char*
1482 char buf[BUF_LEN];
1559 if ((unsigned char) buf[0] == 0xed
1560 && (unsigned char) buf[1] == 0xab
1561 && (unsigned char) buf[2] == 0xee
1562 && (unsigned char) buf[3] == 0xdb)
1796 /// The delete functor of a char buffer that has been created using
1801 operator()(char* ptr)
1809 /// The result being an shared_ptr to char*, it should manage its
1816 std::shared_ptr<char>
1817 make_path_absolute(const char*p)
1821 shared_ptr<char> result;
1825 shared_ptr<char> pwd(get_current_dir_name(),
1847 char*
1848 make_path_absolute_to_be_freed(const char*p)
1850 char* result = 0;
1854 char* pwd = get_current_dir_name();
1953 char* paths[] = {const_cast<char*>(headers_root_dir.c_str()), 0};
2159 const char *s = getenv("LIBABIGAIL_DEFAULT_SYSTEM_SUPPRESSION_FILE");
2177 const char *s = getenv("LIBABIGAIL_DEFAULT_USER_SUPPRESSION_FILE");
2267 char* paths[] = {const_cast<char*>(root_dir.c_str()), 0};
2405 char* path[] = {const_cast<char*>(from.c_str()), 0};
2447 char* path[] = {const_cast<char*>(from.c_str()), 0};
2634 vector<char**>& di_roots,
2778 shared_ptr<char> di_root =
2780 char *di_root_ptr = di_root.get();
2781 vector<char**> di_roots;
2838 const vector<char**>& debug_info_root_paths,