Searched refs:paths (Results 1 - 25 of 71) sorted by relevance

123

/haiku-fatelf/src/bin/network/ftpd/
H A Dpathnames.h37 #include <paths.h>
/haiku-fatelf/src/bin/network/telnetd/
H A Dpathnames.h37 #include <paths.h>
/haiku-fatelf/src/tests/system/kernel/
H A Dpath_resolution_test.cpp33 const char* const paths[] = { local
44 for (int32 i = 0; paths[i] != NULL; i++)
45 time_lstat(paths[i]);
/haiku-fatelf/src/apps/icon-o-matic/
H A DUtil.cpp54 VectorPath* paths[1]; local
55 paths[0] = *path;
59 container, paths, 1, true, insertIndex);
/haiku-fatelf/src/bin/debug/
H A Ddebug_utils.cpp38 const char* paths = getenv("PATH"); local
39 if (!paths)
42 // iterate through the paths
44 const char* pathEnd = strchr(paths, ':');
45 int pathLen = (pathEnd ? pathEnd - paths : strlen(paths));
47 // We skip empty paths.
50 std::string path(paths, pathLen);
62 paths = (pathEnd ? pathEnd + 1 : NULL);
63 } while (paths);
[all...]
/haiku-fatelf/src/kits/debug/
H A DTeamDebugger.cpp173 const char* paths = getenv("PATH"); local
174 if (!paths)
177 // iterate through the paths
179 const char* pathEnd = strchr(paths, ':');
180 int pathLen = (pathEnd ? pathEnd - paths : strlen(paths));
182 // We skip empty paths.
185 BString directory(paths, pathLen);
202 paths = (pathEnd ? pathEnd + 1 : NULL);
203 } while (paths);
[all...]
/haiku-fatelf/src/libs/icon/message/
H A DMessageImporter.h48 PathContainer* paths) const;
52 PathContainer* paths,
H A DMessageImporter.cpp86 // paths
87 PathContainer* paths = icon->Paths();
88 ret = _ImportPaths(&archive, paths);
91 "error importing paths: %s\n", strerror(ret));
105 ret = _ImportShapes(&archive, paths, styles, icon->Shapes());
121 PathContainer* paths) const
124 status_t ret = archive->FindMessage("paths", &allPaths);
132 if (!path || !paths->AddPath(path)) {
170 MessageImporter::_ImportShapes(const BMessage* archive, PathContainer* paths, argument
209 // find the referenced paths
[all...]
/haiku-fatelf/src/libs/icon/transformer/
H A DPathSource.cpp15 PathSource::PathSource(PathContainer* paths) argument
17 , fPaths(paths)
H A DPathSource.h30 PathSource(PathContainer* paths);
/haiku-fatelf/src/bin/network/wget/src/
H A Dres.c98 struct path_info *paths; member in struct:robot_specs
130 paths in SPECS. */
151 specs->paths = xrealloc (specs->paths,
154 specs->paths[specs->count - 1] = pp;
157 /* Recreate SPECS->paths with only those paths that have
167 if (specs->paths[i].user_agent_exact_p)
171 if (specs->paths[i].user_agent_exact_p)
172 newpaths[j++] = specs->paths[
[all...]
/haiku-fatelf/src/kits/print/
H A DPrintTransport.cpp73 const directory_which paths[] = { local
79 for (uint32 i = 0; i < sizeof(paths) / sizeof(paths[0]); ++i) {
80 if (find_directory(paths[i], &path) != B_OK)
/haiku-fatelf/src/libs/print/libprint/
H A DTransport.cpp44 const directory_which paths[] = { local
50 for (uint32 i = 0; i < sizeof(paths) / sizeof(paths[0]); ++i) {
51 if (find_directory(paths[i], &path) != B_OK)
/haiku-fatelf/src/libs/icon/flat_icon/
H A DFlatIconImporter.h58 PathContainer* paths);
62 PathContainer* paths);
65 PathContainer* paths,
/haiku-fatelf/src/apps/icon-o-matic/shape/commands/
H A DRemovePathsCommand.cpp30 VectorPath** const paths,
34 fInfos(paths && count > 0 ? new (nothrow) PathInfo[count] : NULL),
42 fInfos[i].path = paths[i];
43 fInfos[i].index = fContainer->IndexOf(paths[i]);
44 if (paths[i]) {
45 int32 listenerCount = paths[i]->CountListeners();
47 Shape* shape = dynamic_cast<Shape*>(paths[i]->ListenerAtFast(j));
78 // remove paths from container and shapes that reference them
100 // add paths to container and shapes which previously referenced them
29 RemovePathsCommand(PathContainer* container, VectorPath** const paths, int32 count) argument
H A DAddPathsCommand.cpp30 VectorPath** const paths,
36 fPaths(paths && count > 0 ? new (nothrow) VectorPath*[count] : NULL),
45 memcpy(fPaths, paths, sizeof(VectorPath*) * fCount);
48 // Add references to paths
79 // add paths to container
97 // remove paths from container
29 AddPathsCommand(PathContainer* container, VectorPath** const paths, int32 count, bool ownsPaths, int32 index) argument
H A DAddPathsCommand.h28 VectorPath** const paths,
H A DMovePathsCommand.h30 VectorPath** paths,
H A DRemovePathsCommand.h30 VectorPath** const paths,
/haiku-fatelf/src/bin/gdb/gdb/
H A Dgdb_indent.sh8 paths=`echo $PATH | sed \
13 for path in $paths
/haiku-fatelf/src/libs/util/
H A Dauth.c37 #include <paths.h>
/haiku-fatelf/src/system/libroot/posix/unistd/
H A Dexec.cpp149 const char* paths = getenv("PATH"); local
150 if (paths == NULL) {
157 // iterate through the paths
158 const char* pathEnd = paths - 1;
160 paths = pathEnd + 1;
161 pathEnd = strchr(paths, ':');
162 int pathLen = (pathEnd ? pathEnd - paths : strlen(paths));
164 // We skip empty paths and those that would become too long.
173 memcpy(path, paths, pathLe
[all...]
/haiku-fatelf/src/system/libroot/posix/
H A Dftw.c36 char * const paths[2] = { (char *)path, NULL }; local
47 ftsp = fts_open(paths, FTS_LOGICAL | FTS_COMFOLLOW | FTS_NOCHDIR, NULL);
H A Dnftw.c36 char * const paths[2] = { (char *)path, NULL }; local
58 ftsp = fts_open(paths, ftsflags, NULL);
/haiku-fatelf/src/apps/icon-o-matic/import_export/message/
H A DMessageExporter.cpp42 PathContainer* paths = icon->Paths(); local
45 // paths
48 int32 count = paths->CountPaths();
50 VectorPath* path = paths->PathAtFast(i);
61 ret = archive.AddMessage("paths", &allPaths);
91 ret = _Export(shape, paths, styles, &shapeArchive);
164 // indices of used paths

Completed in 119 milliseconds

123