Lines Matching refs:result
99 /// @return the result of the OR expression.
111 /// @return the result of the AND expression.
375 dirent *result = readdir(dir);
376 if (result == NULL && errno != 0)
381 return result == NULL;
739 /// @param result the computed real_path;
741 real_path(const string&path, string& result)
745 result.clear();
752 result = realp;
971 /// @param result a vector of strings containing the splitted result.
974 /// and did split it as a result. Note that if no delimiter was found
980 vector<string>& result)
999 result.push_back(input_string.substr(current));
1006 result.push_back(input_string.substr(current, next - current));
1051 /// @param result output parameter. The resulting common prefix found
1055 /// @return true iff @p result was set by this function with the
1058 common_prefix(const string& s1, const string& s2, string &result)
1063 result.clear();
1066 result += s1[i];
1070 return !result.empty();
1178 string result;
1201 /// filters its result.
1246 string result;
1256 result = str.substr(start, end - start + 1);
1257 return result;
1388 temp_file_sptr result(new temp_file);
1389 if (result->is_good())
1390 return result;
1745 bool result = false;
1752 result = (package_name == "kernel");
1758 result = (string_begins_with(package_name, "linux-image"));
1761 return result;
1775 bool result = false;
1782 result = (package_name == "kernel-debuginfo");
1788 result = (string_begins_with(package_name, "linux-image")
1793 return result;
1806 /// absolute path by prefixing it with the concatenation of the result
1809 /// The result being an shared_ptr to char*, it should manage its
1821 shared_ptr<char> result;
1828 result.reset(strdup(s.c_str()), malloced_char_star_deleter());
1831 result.reset(strdup(p), malloced_char_star_deleter());
1833 return result;
1837 /// absolute path by prefixing it with the concatenation of the result
1840 /// The result being a pointer to an allocated memory region, it must
1850 char* result = 0;
1857 result = strdup(s.c_str());
1860 result = strdup(p);
1862 return result;
1945 /// @param result the type_supression to populate from the content of
1949 type_suppression_sptr &result)
1959 handle_fts_entry(entry, result);
1983 type_suppression_sptr result;
1988 gen_suppr_spec_from_headers_root_dir(*root_dir, result);
1993 handle_file_entry(*file, result);
1995 return result;
2015 type_suppression_sptr result;
2113 suppressions_type result;
2135 result.push_back(fn_suppr);
2146 result.push_back(var_suppr);
2148 return result;
2260 /// @param result the resulting path to @p file_path_to_look_for.
2265 string& result)
2285 result = entry->fts_path;
2295 /// specifications as a result, and set them to the read context.
2844 elf_based_reader_sptr result;
2846 return result;
2852 result = ctf::create_reader(elf_file_path, debug_info_root_paths, env);
2863 result = ctf::create_reader(elf_file_path, debug_info_root_paths, env);
2867 if (!result)
2872 result = dwarf::create_reader(elf_file_path,
2879 return result;