Home
last modified time | relevance | path

Searched refs:m_file_name (Results 1 – 25 of 390) sorted by relevance

12345678910>>...16

/dports/comms/aldo/aldo-0.7.7/include/
H A Dexception.hh37 const char* m_file_name; member
39 Not_datafile_format(const char* f): m_file_name(f) in Not_datafile_format()
45 const char* m_file_name; member
47 Over_write_file(const char* f): m_file_name(f) in Over_write_file()
72 const char* m_file_name; member
74 File_not_opened(const char* f): m_file_name(f) in File_not_opened()
80 const char* m_file_name; member
82 File_not_exist(const char* f): m_file_name(f) in File_not_exist()
/dports/converters/osm2pgsql/osm2pgsql-1.5.1/src/
H A Dnode-persistent-cache.cpp30 : m_file_name(std::move(file_name)), m_remove_file(remove_file) in node_persistent_cache()
32 assert(!m_file_name.empty()); in node_persistent_cache()
34 log_debug("Loading persistent node cache from '{}'.", m_file_name); in node_persistent_cache()
37 m_fd = open(m_file_name.c_str(), O_RDWR | O_CREAT, 0644); in node_persistent_cache()
40 m_file_name, std::strerror(errno))}; in node_persistent_cache()
55 log_debug("Removing persistent node cache at '{}'.", m_file_name); in ~node_persistent_cache()
58 unlink(m_file_name.c_str()); in ~node_persistent_cache()
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/src/common/
H A Dlogger.cpp100 , m_file_name{std::move(file_name)}
102 if (!mtx::fs::is_absolute(m_file_name))
103 m_file_name = std::filesystem::temp_directory_path() / mtx::fs::to_path(m_file_name);
105 if (std::filesystem::is_regular_file(m_file_name)) {
107 std::filesystem::remove(m_file_name, ec);
114 …t_io_c out(std::make_shared<mm_file_io_c>(m_file_name.u8string(), std::filesystem::is_regular_file… in log_line()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/innobase/clone/
H A Dclone0apply.cc90 file_desc->m_file_name = path; in update_file_name()
155 file_desc->m_file_name = file.filepath(); in update_file_name()
168 if (file_desc->m_file_name == nullptr) { in compute_path_length()
234 if (0 == strcmp(undo_meta->m_file_name, file_desc->m_file_name) || in handle_existing_file()
238 << file_desc->m_file_name; in handle_existing_file()
249 file_name.assign(file_desc->m_file_name); in handle_existing_file()
297 file_name.assign(file_desc->m_file_name); in handle_existing_file()
333 if (file_desc->m_file_name != nullptr) { in build_file_path()
351 strcpy(path, file_desc->m_file_name); in build_file_path()
394 ut_ad(file_desc->m_file_name != nullptr); in build_file_path()
[all …]
/dports/devel/rttr/rttr-0.9.6-16-gb3a131c/src/rttr/detail/library/
H A Dlibrary_unix.cpp111 if (is_absolute_path(m_file_name)) in load_native()
131 if (!prefix_list[prefix].empty() && starts_with(m_file_name, prefix_list[prefix])) in load_native()
133 if (!suffix_list[suffix].empty() && ends_with(m_file_name, suffix_list[suffix])) in load_native()
136 attempt = prefix_list[prefix] + m_file_name + suffix_list[suffix]; in load_native()
139 if (!m_handle && is_absolute_path(m_file_name) && file_exist(attempt)) in load_native()
149 m_error_string = "Cannot load library " + m_file_name + " " + get_error(); in load_native()
166 m_error_string = "Cannot unload library: '" + m_file_name + "'" + get_error(); in unload_native()
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/src/propedit/
H A Dchapter_target.cpp37 if (!m_file_name.empty() && !m_new_chapters) in validate()
38 m_new_chapters = mtx::chapters::parse(m_file_name); in validate()
46 m_file_name)); in dump_info()
57 m_file_name = spec; in parse_chapter_spec()
69 …at(Y("Error parsing the chapters in '{0}': some mandatory elements are missing.\n"), m_file_name)); in execute()
H A Dattachment_target.cpp68 m_file_content = mm_file_io_c::slurp(m_file_name); in validate()
70 …mxerror(fmt::format(Y("The file '{0}' could not be opened for reading: {1}.\n"), m_file_name, ex.w… in validate()
84 m_file_name, in dump_info()
124 m_file_name = spec; in parse_spec()
151 m_file_name = to_utf8(matches.captured(3)); in parse_spec()
159 m_file_name = to_utf8(matches.captured(6)); in parse_spec()
167 if ((ac_replace == m_command) && m_file_name.empty()) in parse_spec()
188 … ? *m_options.m_mime_type : mtx::mime::guess_type_for_file(m_file_name); in execute_add()
189 …_options.m_name->empty() ? *m_options.m_name : mtx::fs::to_path(m_file_name).filename().u8s… in execute_add()
322 …options.m_name->empty() ? *m_options.m_name : to_utf8(mtx::fs::to_path(m_file_name).filename().u8s… in replace_attachment_values()
[all …]
/dports/graphics/luminance-qt5/luminance-hdr-2.6.1.1/src/BatchTM/
H A DBatchTMJob.cpp49 m_file_name(filename), in BatchTMJob()
57 m_output_folder + "/" + QFileInfo(m_file_name).completeBaseName(); in BatchTMJob()
68 .arg(QFileInfo(m_file_name).fileName())); in run()
72 io_worker.read_hdr_frame(m_file_name)); in run()
78 .arg(QFileInfo(m_file_name).fileName())); in run()
112 .arg(QFileInfo(m_file_name).fileName())); in run()
146 .arg(QFileInfo(m_file_name).fileName())); in run()
/dports/games/vamos/vamos-0.7.1/media/
H A DTexture_Image.cc56 : m_file_name (file_name), in Texture_Image()
69 : m_file_name (file_name), in Texture_Image()
80 if (m_file_name.empty ()) in initialize()
82 else if (ms_image_cache.find (m_file_name) != ms_image_cache.end ()) in initialize()
84 Cached_Image& image (ms_image_cache [m_file_name]); in initialize()
93 unsigned char* data = read_png_file (m_file_name); in initialize()
101 ms_image_cache [m_file_name] = in initialize()
108 if (ms_image_cache.find (m_file_name) != ms_image_cache.end ()) in ~Texture_Image()
110 Cached_Image& image (ms_image_cache [m_file_name]); in ~Texture_Image()
114 ms_image_cache.erase (m_file_name); in ~Texture_Image()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/kicad/
H A Dproject_tree_item.h51 m_file_name( src.m_file_name ), in PROJECT_TREE_ITEM()
61 const wxString& GetFileName() const { return m_file_name; } in GetFileName()
62 void SetFileName( const wxString& name ) { m_file_name = name; } in SetFileName()
96 wxString m_file_name; // Filename for a file, or directory name variable
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/test/
H A Dunit_test_log_formatter.hpp41 m_file_name.reserve( 200 ); in log_entry_data()
44 std::string m_file_name; ///< log entry file name member
50 m_file_name.erase(); in clear()
62 const_string m_file_name; ///< log checkpoint file name member
68 m_file_name.clear(); in clear()
/dports/databases/xtrabackup/boost_1_59_0/boost/test/
H A Dunit_test_log_formatter.hpp41 m_file_name.reserve( 200 ); in log_entry_data()
44 std::string m_file_name; ///< log entry file name member
50 m_file_name.erase(); in clear()
62 const_string m_file_name; ///< log checkpoint file name member
68 m_file_name.clear(); in clear()
/dports/databases/percona57-server/boost_1_59_0/boost/test/
H A Dunit_test_log_formatter.hpp41 m_file_name.reserve( 200 ); in log_entry_data()
44 std::string m_file_name; ///< log entry file name member
50 m_file_name.erase(); in clear()
62 const_string m_file_name; ///< log checkpoint file name member
68 m_file_name.clear(); in clear()
/dports/databases/percona57-client/boost_1_59_0/boost/test/
H A Dunit_test_log_formatter.hpp41 m_file_name.reserve( 200 ); in log_entry_data()
44 std::string m_file_name; ///< log entry file name member
50 m_file_name.erase(); in clear()
62 const_string m_file_name; ///< log checkpoint file name member
68 m_file_name.clear(); in clear()
/dports/databases/mysql57-client/mysql-5.7.36/boost/boost_1_59_0/boost/test/
H A Dunit_test_log_formatter.hpp41 m_file_name.reserve( 200 ); in log_entry_data()
44 std::string m_file_name; ///< log entry file name member
50 m_file_name.erase(); in clear()
62 const_string m_file_name; ///< log checkpoint file name member
68 m_file_name.clear(); in clear()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/boost/test/
H A Dunit_test_log_formatter.hpp41 m_file_name.reserve( 200 ); in log_entry_data()
44 std::string m_file_name; ///< log entry file name member
50 m_file_name.erase(); in clear()
62 const_string m_file_name; ///< log checkpoint file name member
68 m_file_name.clear(); in clear()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/boost-1.60.0/boost/test/
H A Dunit_test_log_formatter.hpp41 m_file_name.reserve( 200 ); in log_entry_data()
44 std::string m_file_name; ///< log entry file name member
50 m_file_name.erase(); in clear()
62 const_string m_file_name; ///< log checkpoint file name member
68 m_file_name.clear(); in clear()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/test/
H A Dunit_test_log_formatter.hpp42 m_file_name.reserve( 200 ); in log_entry_data()
45 std::string m_file_name; ///< log entry file name member
51 m_file_name.erase(); in clear()
63 const_string m_file_name; ///< log checkpoint file name member
69 m_file_name.clear(); in clear()
/dports/graphics/povray37/povray-3.7.0.10/libraries/boost/boost/test/
H A Dunit_test_log_formatter.hpp42 m_file_name.reserve( 200 ); in log_entry_data()
45 std::string m_file_name; ///< log entry file name member
51 m_file_name.erase(); in clear()
63 const_string m_file_name; ///< log checkpoint file name member
69 m_file_name.clear(); in clear()
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/boost_1.69.0/boost/test/
H A Dunit_test_log_formatter.hpp42 m_file_name.reserve( 200 ); in log_entry_data()
45 std::string m_file_name; ///< log entry file name member
51 m_file_name.erase(); in clear()
63 const_string m_file_name; ///< log checkpoint file name member
69 m_file_name.clear(); in clear()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/boost/boost/test/
H A Dunit_test_log_formatter.hpp42 m_file_name.reserve( 200 );
45 std::string m_file_name; ///< log entry file name
51 m_file_name.erase();
63 const_string m_file_name; ///< log checkpoint file name
69 m_file_name.clear();
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/src/common/bluray/
H A Ddisc_library.cpp55 thumbnail.m_file_name = mtx::fs::to_path(node.attribute("href").value()); in parse_bdmt_xml()
59 if (thumbnail.m_file_name.is_relative()) in parse_bdmt_xml()
60 …thumbnail.m_file_name = (mtx::fs::absolute(file_name).parent_path() / mtx::fs::to_path(thumbnail.m… in parse_bdmt_xml()
70 auto dimensions = mtx::image::get_size(thumbnail.m_file_name); in parse_bdmt_xml()
80 …ormat("{}: file name: {} width: {} height: {}\n", file_name, thumbnail.m_file_name.u8string(), thu… in parse_bdmt_xml()
104 …humbnail: {}x{} @ {}\n", thumbnail.m_width, thumbnail.m_height, thumbnail.m_file_name.u8string())); in dump()
/dports/devel/hyperscan/boost_1_75_0/boost/compute/detail/
H A Dparameter_cache.hpp47 m_file_name = make_file_name(); in parameter_cache()
50 if(boost::filesystem::exists(m_file_name)){ in parameter_cache()
143 BOOST_ASSERT(!m_file_name.empty()); in write_to_disk()
155 write_json(m_file_name, pt); in write_to_disk()
164 BOOST_ASSERT(!m_file_name.empty()); in read_from_disk()
170 read_json(m_file_name, pt); in read_from_disk()
215 std::string m_file_name; member in boost::compute::detail::parameter_cache
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/compute/detail/
H A Dparameter_cache.hpp47 m_file_name = make_file_name(); in parameter_cache()
50 if(boost::filesystem::exists(m_file_name)){ in parameter_cache()
143 BOOST_ASSERT(!m_file_name.empty()); in write_to_disk()
155 write_json(m_file_name, pt); in write_to_disk()
164 BOOST_ASSERT(!m_file_name.empty()); in read_from_disk()
170 read_json(m_file_name, pt); in read_from_disk()
215 std::string m_file_name; member in boost::compute::detail::parameter_cache
/dports/devel/R-cran-BH/BH/inst/include/boost/compute/detail/
H A Dparameter_cache.hpp47 m_file_name = make_file_name(); in parameter_cache()
50 if(boost::filesystem::exists(m_file_name)){ in parameter_cache()
143 BOOST_ASSERT(!m_file_name.empty()); in write_to_disk()
155 write_json(m_file_name, pt); in write_to_disk()
164 BOOST_ASSERT(!m_file_name.empty()); in read_from_disk()
170 read_json(m_file_name, pt); in read_from_disk()
215 std::string m_file_name; member in boost::compute::detail::parameter_cache

12345678910>>...16