Home
last modified time | relevance | path

Searched refs:m_path (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/atf/atf-c++/detail/
H A Dfs.cpp117 atf_error_t err = atf_fs_path_copy(&m_path, &p.m_path); in path()
131 atf_fs_path_fini(&m_path); in ~path()
138 return atf_fs_path_cstring(&m_path); in c_str()
145 return &m_path; in c_path()
159 return atf_fs_path_is_absolute(&m_path); in is_absolute()
166 return atf_fs_path_is_root(&m_path); in is_root()
192 err = atf_fs_path_leaf_name(&m_path, &ln); in leaf_name()
225 atf_fs_path_fini(&m_path); in operator =()
226 m_path = tmp; in operator =()
236 return atf_equal_fs_path_fs_path(&m_path, &p.m_path); in operator ==()
[all …]
H A Dfs.hpp71 atf_fs_path_t m_path; member in atf::fs::path
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/
H A DDynamicLoaderFreeBSDKernel.h62 : m_module_sp(), m_memory_module_sp(), m_uuid(), m_name(), m_path() {} in KModImageInfo()
71 m_path.clear(); in Clear()
88 void SetPath(const char *path) { m_path = path; } in SetPath()
90 std::string GetPath() const { return m_path; } in GetPath()
121 std::string m_path; variable
/freebsd/contrib/atf/atf-c/detail/
H A Dfs.c79 char m_path[1024]; member
98 data->m_path, (unsigned int)data->m_umask); in invalid_umask_format()
111 strncpy(data.m_path, atf_fs_path_cstring(path), sizeof(data.m_path)); in invalid_umask_error()
112 data.m_path[sizeof(data.m_path) - 1] = '\0'; in invalid_umask_error()
127 const char *m_path; member
142 data->m_path); in unknown_type_format()
152 data.m_path = path; in unknown_type_error()
H A Dprocess.h52 const atf_fs_path_t *m_path; member
H A Dprocess.c164 sb->m_path = path; in atf_process_stream_init_redirect_path()
349 int aux = open(atf_fs_path_cstring(sp->m_sb->m_path), in child_connect()
353 atf_fs_path_cstring(sp->m_sb->m_path)); in child_connect()
H A Dprocess_test.c352 atf_fs_path_t m_path; member
368 RE(atf_fs_path_init_fmt(&s->m_path, "stdout")); in redirect_path_stream_init()
371 RE(atf_fs_path_init_fmt(&s->m_path, "stderr")); in redirect_path_stream_init()
378 RE(atf_process_stream_init_redirect_path(&s->m_base.m_sb, &s->m_path)); in redirect_path_stream_init()
389 atf_fs_path_fini(&s->m_path); in redirect_path_stream_fini()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DCppModuleConfiguration.h25 std::string m_path; variable
37 return m_path; in Get()
H A DCppModuleConfiguration.cpp21 m_path = path.str(); in TrySet()
27 if (m_path == path) in TrySet()
/freebsd/contrib/atf/atf-sh/
H A Datf-check.cpp111 std::auto_ptr< atf::fs::path > m_path; member in __anon48974bdc0111::temp_file
131 m_path.reset(new atf::fs::path(buf.get())); in temp_file()
138 remove(*m_path); in ~temp_file()
147 return *m_path; in get_path()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp219 if (m_path.empty() && m_history && !m_prefix.empty()) { in GetHistoryFilePath()
233 m_path = std::string(lldb_history_file.str()); in GetHistoryFilePath()
237 if (m_path.empty()) in GetHistoryFilePath()
240 return m_path.c_str(); in GetHistoryFilePath()
311 std::string m_path; member in lldb_private::line_editor::EditlineHistory