Home
last modified time | relevance | path

Searched refs:path_name (Results 1 – 25 of 1244) sorted by relevance

12345678910>>...50

/dports/devel/valgrind/valgrind-dragonfly-dragonfly/tests/
H A Dcheck_headers_and_includes153 process_file($path_name);
163 my ($path_name) = @_;
172 my ($path_name) = @_;
181 my ($path_name) = @_;
193 my ($path_name) = @_;
215 my ($path_name) = @_;
245 my ($path_name) = @_;
286 my ($path_name) = @_;
316 my ($path_name) = @_;
343 my ($path_name) = @_;
[all …]
/dports/devel/valgrind-lts/valgrind-dragonfly-dragonfly/tests/
H A Dcheck_headers_and_includes153 process_file($path_name);
163 my ($path_name) = @_;
172 my ($path_name) = @_;
181 my ($path_name) = @_;
193 my ($path_name) = @_;
215 my ($path_name) = @_;
245 my ($path_name) = @_;
286 my ($path_name) = @_;
316 my ($path_name) = @_;
343 my ($path_name) = @_;
[all …]
/dports/biology/hyphy/hyphy-2.5.33/src/core/
H A Dglobal_things.cpp901 path_name = path_name.Replace ("\\","/",true); in ProcessFileName()
903 path_name = path_name.Replace ("::",":../", true); in ProcessFileName()
907 path_name = path_name.Replace (':','/',true); in ProcessFileName()
928 path_name = *lastPath & path_name; in ProcessFileName()
930 path_name = lastPath->Cut(0,f+1) & path_name; in ProcessFileName()
942 path_name = path_name.Replace ("/","\\",true); in ProcessFileName()
946 path_name = path_name.Replace ("::",":..\\", true); in ProcessFileName()
950 path_name = path_name.Replace (':','\\',true); in ProcessFileName()
970 path_name = *lastPath&'\\'& path_name; in ProcessFileName()
972 path_name = *lastPath& path_name; in ProcessFileName()
[all …]
/dports/irc/ctrlproxy/ctrlproxy-3.0.8/src/
H A Dplugins.c50 gchar *path_name = NULL; in load_plugin() local
55 if (g_file_test(name, G_FILE_TEST_EXISTS))path_name = g_strdup(name); in load_plugin()
56 else path_name = g_module_build_path(modulesdir, name); in load_plugin()
58 m = g_module_open(path_name, 0); in load_plugin()
61 log_global(LOG_ERROR, "Unable to open module %s(%s), ignoring", path_name, g_module_error()); in load_plugin()
62 g_free(path_name); in load_plugin()
69 strchr(path_name, '/')?(strrchr(path_name, '/')+1):"error" in load_plugin()
71 g_free(path_name); in load_plugin()
79 g_free(path_name); in load_plugin()
87 g_free(path_name); in load_plugin()
[all …]
/dports/science/qmcpack/qmcpack-3.11.0/utils/
H A Dfull_clang-format.py41 path_name = join(root,name) variable
42 print(path_name)
43 with open(path_name, 'r') as f_for_hash:
47 formatted_hashes[path_name] = sha256.digest()
48 subprocess.run(["clang-format", "-i", path_name])
58 (path_name,hash) = formatted_hashes.popitem()
59 print (path_name)
60 subprocess.run(["clang-format", "-i", path_name])
61 with open(path_name, 'r') as f_for_hash:
67 formatted_hashes[path_name] = digest
/dports/japanese/ebnetd/ebnetd-1.0/lib/
H A Dfilename.c96 canonicalize_file_name(path_name) in canonicalize_file_name() argument
97 char *path_name; in canonicalize_file_name()
103 if (*path_name != '/') {
110 if (PATH_MAX < strlen(cwd) + 1 + strlen(path_name))
112 sprintf(tmp_path_name, "%s/%s", cwd, path_name);
113 strcpy(path_name, tmp_path_name);
120 path_name_length = strlen(path_name);
121 if (1 < path_name_length && *(path_name + path_name_length - 1) == '/')
122 *(path_name + path_name_length - 1) = '\0';
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/plugins/switch/cray_aries/
H A Dutil.c102 char *path_name = NULL; in remove_spool_files() local
107 path_name = xstrdup_printf( in remove_spool_files()
109 if (remove(path_name)) { in remove_spool_files()
111 xfree(path_name); in remove_spool_files()
114 xfree(path_name); in remove_spool_files()
120 xfree(path_name); in remove_spool_files()
126 if (remove(path_name)) { in remove_spool_files()
128 xfree(path_name); in remove_spool_files()
135 if (remove(path_name)) { in remove_spool_files()
137 xfree(path_name); in remove_spool_files()
[all …]
/dports/sysutils/slurm-wlm/slurm-20.02.7/testsuite/slurm_unit/api/manual/
H A Dupdate_config-tst.c96 char *dot_ptr, path_name[1024]; in _getnodename() local
98 error_code = gethostname (path_name, sizeof(path_name)); in _getnodename()
102 dot_ptr = strchr (path_name, '.'); in _getnodename()
104 dot_ptr = path_name + strlen(path_name); in _getnodename()
108 name_len = (dot_ptr - path_name); in _getnodename()
112 strcpy (name, path_name); in _getnodename()
/dports/misc/ytree/ytree-2.03/
H A Drpm.c25 char path_name[PATH_LENGTH +1]; in ReadTreeFromRPM() local
38 if( GetStatFromRPM( rpm_line, path_name, &stat ) ) in ReadTreeFromRPM()
45 if( (path_name[strlen( path_name ) - 1] == FILE_SEPARATOR_CHAR) || in ReadTreeFromRPM()
46 !strcmp( path_name, "." ) || S_ISDIR(stat.st_mode) in ReadTreeFromRPM()
53 fprintf( stderr, "DIR: %s\n", path_name ); in ReadTreeFromRPM()
56 if( strcmp( path_name, "./" ) ) in ReadTreeFromRPM()
61 (void) TryInsertArchiveDirEntry( dir_entry, path_name, &stat ); in ReadTreeFromRPM()
72 fprintf( stderr, "FILE: \"%s\"\n", path_name ); in ReadTreeFromRPM()
74 (void) InsertArchiveFileEntry( dir_entry, path_name, &stat ); in ReadTreeFromRPM()
/dports/cad/ghdl/ghdl-1.0.0/testsuite/gna/issue1268/
H A Dent.vhdl33 report f1'path_name;
34 assert f1'path_name = ":ent:f1[boolean,boolean return integer]:"
36 report p2'path_name;
37 assert p2'path_name = ":ent:p2[bit_vector]:"
39 report p3'path_name;
40 assert p3'path_name = ":ent:p3[byte,byte]:"
42 report p4'path_name;
43 assert p4'path_name = ":ent:p4[natural]:"
/dports/databases/percona57-server/percona-server-5.7.36-39/sql/
H A Dndb_name_util.cc35 void ndb_set_dbname(const char *path_name, char *dbname) in ndb_set_dbname() argument
42 ptr= strend(path_name)-1; in ndb_set_dbname()
43 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
48 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
64 ndb_set_tabname(const char *path_name, char * tabname) in ndb_set_tabname() argument
71 end= strend(path_name)-1; in ndb_set_tabname()
73 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_tabname()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/sql/
H A Dndb_name_util.cc35 void ndb_set_dbname(const char *path_name, char *dbname) in ndb_set_dbname() argument
42 ptr= strend(path_name)-1; in ndb_set_dbname()
43 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
48 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
64 ndb_set_tabname(const char *path_name, char * tabname) in ndb_set_tabname() argument
71 end= strend(path_name)-1; in ndb_set_tabname()
73 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_tabname()
/dports/databases/percona57-client/percona-server-5.7.36-39/sql/
H A Dndb_name_util.cc35 void ndb_set_dbname(const char *path_name, char *dbname) in ndb_set_dbname() argument
42 ptr= strend(path_name)-1; in ndb_set_dbname()
43 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
48 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
64 ndb_set_tabname(const char *path_name, char * tabname) in ndb_set_tabname() argument
71 end= strend(path_name)-1; in ndb_set_tabname()
73 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_tabname()
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/sql/
H A Dndb_name_util.cc35 void ndb_set_dbname(const char *path_name, char *dbname) in ndb_set_dbname() argument
42 ptr= strend(path_name)-1; in ndb_set_dbname()
43 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
48 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
64 ndb_set_tabname(const char *path_name, char * tabname) in ndb_set_tabname() argument
71 end= strend(path_name)-1; in ndb_set_tabname()
73 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_tabname()
/dports/databases/mysql57-client/mysql-5.7.36/sql/
H A Dndb_name_util.cc35 void ndb_set_dbname(const char *path_name, char *dbname) in ndb_set_dbname() argument
42 ptr= strend(path_name)-1; in ndb_set_dbname()
43 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
48 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
64 ndb_set_tabname(const char *path_name, char * tabname) in ndb_set_tabname() argument
71 end= strend(path_name)-1; in ndb_set_tabname()
73 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_tabname()
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/sql/
H A Dndb_name_util.cc35 void ndb_set_dbname(const char *path_name, char *dbname) in ndb_set_dbname() argument
42 ptr= strend(path_name)-1; in ndb_set_dbname()
43 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
48 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
64 ndb_set_tabname(const char *path_name, char * tabname) in ndb_set_tabname() argument
71 end= strend(path_name)-1; in ndb_set_tabname()
73 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_tabname()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/router/src/harness/src/stdx/io/
H A Dfile_handle.cc176 std::string path_name; in current_path() local
189 const ssize_t sz = readlink(in.data(), &path_name.front(), path_name.size()); in current_path()
202 path_name.resize(sz); in current_path()
204 return {path_name}; in current_path()
224 std::string path_name; in current_path() local
235 return {path_name}; in current_path()
262 std::string path_name; in current_path() local
267 path_name.resize(32768 + 1); in current_path()
269 ssize_t sz = ::readlink(in.data(), &path_name.front(), path_name.size()); in current_path()
274 path_name.resize(sz); in current_path()
[all …]
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/ndb/plugin/
H A Dndb_name_util.cc34 void ndb_set_dbname(const char *path_name, char *dbname) { in ndb_set_dbname() argument
40 ptr = strend(path_name) - 1; in ndb_set_dbname()
41 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
46 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_dbname()
59 void ndb_set_tabname(const char *path_name, char *tabname) { in ndb_set_tabname() argument
65 end = strend(path_name) - 1; in ndb_set_tabname()
67 while (ptr >= path_name && *ptr != '\\' && *ptr != '/') { in ndb_set_tabname()
/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarthDrivers/fastdxt/
H A Dutil.cpp216 path_name = path[i] + "/" + filename; in get_path()
217 fp = ::fopen(path_name.c_str(), "r"); in get_path()
229 path_name = filename; in get_path()
230 fp = ::fopen(path_name.c_str(),"r"); in get_path()
241 int loc = path_name.rfind('\\'); in get_path()
244 loc = path_name.rfind('/'); in get_path()
248 file_path = path_name.substr(0, loc); in get_path()
266 return path_name; in get_file()
270 path_name = filename; in get_file()
271 fp = ::fopen(path_name.c_str(),"r"); in get_file()
[all …]
/dports/audio/faust/faust-2.37.3/architecture/faust/gui/
H A DJuceReader.h42 bool checkFile(const std::string& path_name) in checkFile()
44 juce::File file(path_name); in checkFile()
48 std::cerr << "ERROR : cannot open '" << path_name << "'" << std::endl; in checkFile()
53 void getParamsFile(const std::string& path_name, int& channels, int& length) in getParamsFile()
55 …tr<juce::AudioFormatReader> formatReader (fFormatManager.createReaderFor (juce::File (path_name))); in getParamsFile()
60 …void readFile(Soundfile* soundfile, const std::string& path_name, int part, int& offset, int max_c… in readFile()
62 …tr<juce::AudioFormatReader> formatReader (fFormatManager.createReaderFor (juce::File (path_name))); in readFile()
93 std::cerr << "Error reading the file : " << path_name << std::endl; in readFile()
/dports/audio/faust/faust-2.37.3/tools/benchmark/
H A Dpoly-dynamic-jack-gtk.cpp155 string path_name = factory->getName(); in main() local
156 writePolyDSPFactoryToBitcodeFile(factory, path_name); in main()
158 factory = readPolyDSPFactoryFromBitcodeFile(path_name, "", error_msg, -1); in main()
167 string path_name = factory->getName(); in main() local
168 writePolyDSPFactoryToIRFile(factory, path_name); in main()
170 factory = readPolyDSPFactoryFromIRFile(path_name, "", error_msg, -1); in main()
179 string path_name = factory->getName(); in main() local
180 writePolyDSPFactoryToMachineFile(factory, path_name, ""); in main()
197 string path_name = factory->getName(); in main() local
198 writeInterpreterPolyDSPFactoryToMachineFile(factory, path_name); in main()
[all …]
/dports/lang/python-legacy/Python-2.7.18/Lib/
H A Drunpy.py197 def _get_importer(path_name): argument
201 importer = cache[path_name]
206 cache[path_name] = None
209 importer = hook(path_name)
219 importer = imp.NullImporter(path_name)
222 cache[path_name] = importer
247 importer = _get_importer(path_name)
251 code = _get_code_from_file(path_name)
256 sys.path.insert(0, path_name)
273 _ModifiedArgv0(path_name):
[all …]
/dports/lang/python27/Python-2.7.18/Lib/
H A Drunpy.py197 def _get_importer(path_name): argument
201 importer = cache[path_name]
206 cache[path_name] = None
209 importer = hook(path_name)
219 importer = imp.NullImporter(path_name)
222 cache[path_name] = importer
247 importer = _get_importer(path_name)
251 code = _get_code_from_file(path_name)
256 sys.path.insert(0, path_name)
273 _ModifiedArgv0(path_name):
[all …]
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/
H A Drunpy.py185 def _get_importer(path_name): argument
189 importer = cache[path_name]
194 cache[path_name] = None
197 importer = hook(path_name)
207 importer = imp.NullImporter(path_name)
210 cache[path_name] = importer
235 importer = _get_importer(path_name)
239 code = _get_code_from_file(path_name)
244 sys.path.insert(0, path_name)
261 _ModifiedArgv0(path_name):
[all …]
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Drunpy.py185 def _get_importer(path_name): argument
189 importer = cache[path_name]
194 cache[path_name] = None
197 importer = hook(path_name)
207 importer = imp.NullImporter(path_name)
210 cache[path_name] = importer
235 importer = _get_importer(path_name)
239 code = _get_code_from_file(path_name)
244 sys.path.insert(0, path_name)
261 _ModifiedArgv0(path_name):
[all …]

12345678910>>...50