Home | History | Annotate | Download | only in libpp

Lines Matching refs:str

34 string const fixup_image_spec(string const & str, extra_images const & extra)
36 // On error find_image_path() return str, so if an occur we will
39 return extra.find_image_path(str, error, true);
94 void profile_spec::set_image_or_lib_name(string const & str)
98 image_or_lib_image.push_back(fixup_image_spec(str, extra_found_images));
102 void profile_spec::parse_archive_path(string const & str)
104 archive_path = op_realpath(str);
114 void profile_spec::parse_session(string const & str)
116 session = separate_token(str, ',');
120 void profile_spec::parse_session_exclude(string const & str)
122 session_exclude = separate_token(str, ',');
126 void profile_spec::parse_image(string const & str)
128 image = separate_token(str, ',');
133 void profile_spec::parse_image_exclude(string const & str)
135 image_exclude = separate_token(str, ',');
140 void profile_spec::parse_lib_image(string const & str)
142 lib_image = separate_token(str, ',');
147 void profile_spec::parse_event(string const & str)
149 event.set(str);
153 void profile_spec::parse_count(string const & str)
155 count.set(str);
159 void profile_spec::parse_unitmask(string const & str)
161 unitmask.set(str);
165 void profile_spec::parse_tid(string const & str)
167 tid.set(str);
171 void profile_spec::parse_tgid(string const & str)
173 tgid.set(str);
177 void profile_spec::parse_cpu(string const & str)
179 cpu.set(str);
518 throw invalid_argument(os.str());
566 throw op_fatal_error(os.str());