Lines Matching refs:err

84     atf_error_t err = atf_fs_eaccess(p.c_path(), mode);
85 if (atf_is_error(err)) {
86 if (atf_error_is(err, "libc")) {
87 if (atf_libc_error_code(err) == experr) {
88 atf_error_free(err);
91 atf::throw_atf_error(err);
97 atf::throw_atf_error(err);
114 atf_error_t err = atf_fs_path_init_fmt(&m_path, "%s", s.c_str());
115 if (atf_is_error(err))
116 throw_atf_error(err);
121 atf_error_t err = atf_fs_path_copy(&m_path, &p.m_path);
122 if (atf_is_error(err))
123 throw_atf_error(err);
128 atf_error_t err = atf_fs_path_copy(&m_path, p);
129 if (atf_is_error(err))
130 throw_atf_error(err);
178 atf_error_t err;
180 err = atf_fs_path_branch_path(&m_path, &bp);
181 if (atf_is_error(err))
182 throw_atf_error(err);
194 atf_error_t err;
196 err = atf_fs_path_leaf_name(&m_path, &ln);
197 if (atf_is_error(err))
198 throw_atf_error(err);
211 atf_error_t err = atf_fs_path_to_absolute(&m_path, &pa);
212 if (atf_is_error(err))
213 throw_atf_error(err);
225 atf_error_t err = atf_fs_path_init_fmt(&tmp, "%s", p.c_str());
226 if (atf_is_error(err))
227 throw_atf_error(err);
256 atf_error_t err = atf_fs_path_append_fmt(&p2.m_path, "%s", p.c_str());
257 if (atf_is_error(err))
258 throw_atf_error(err);
269 atf_error_t err = atf_fs_path_append_fmt(&p2.m_path, "%s",
271 if (atf_is_error(err))
272 throw_atf_error(err);
301 atf_error_t err;
303 err = atf_fs_stat_init(&m_stat, p.c_path());
304 if (atf_is_error(err))
305 throw_atf_error(err);
457 atf_error_t err;
460 err = atf_fs_exists(p.c_path(), &b);
461 if (atf_is_error(err))
462 throw_atf_error(err);
514 atf_error_t err = atf_fs_rmdir(p.c_path());
515 if (atf_is_error(err))
516 throw_atf_error(err);