Home
last modified time | relevance | path

Searched refs:curPath (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/dports/ftp/ncftp3/ncftp-3.2.6/libncftp/
H A Dftw.c178 free(ftwip->curPath); in FtwDispose()
193 char *path = ftwip->curPath; in FtwTraverse()
238 ftwip->curPath = newBuf; in FtwTraverse()
240 path = ftwip->curPath; in FtwTraverse()
315 path = ftwip->curPath; in FtwTraverse()
356 if (ftwip->curPath == NULL) { in Ftw()
366 if (ftwip->curPath == NULL) in Ftw()
374 cp = ftwip->curPath + strlen(ftwip->curPath); in Ftw()
380 while (cp >= ftwip->curPath) { in Ftw()
452 free(ftwip->curPath); in FtwSetBuf()
[all …]
H A Drftw.c43 char *path = ftwip->curPath; in FTPFtwTraverse()
150 ftwip->curPath = newBuf; in FTPFtwTraverse()
152 path = ftwip->curPath; in FTPFtwTraverse()
307 path = ftwip->curPath; in FTPFtwTraverse()
355 if (ftwip->curPath == NULL) { in FTPFtw()
364 ftwip->curPath = (char *) malloc(alen); in FTPFtw()
365 if (ftwip->curPath == NULL) in FTPFtw()
396 memcpy(ftwip->curPath, path, len + 1); in FTPFtw()
397 endp = cp = ftwip->curPath + strlen(ftwip->curPath); in FTPFtw()
402 while (cp >= ftwip->curPath) { in FTPFtw()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Configuration_2.0/
H A DWebConfigurationManager.cs450 curPath = curPath.Substring (0, len); in GetParentDir()
457 return curPath; in GetParentDir()
486 ConfigPath curPath; in FindWebConfig()
488 if (curPath != null) { in FindWebConfig()
490 return curPath.Path; in FindWebConfig()
511 if (curPath != null) { in FindWebConfig()
513 return curPath.Path; in FindWebConfig()
523 curPath.Path = rootPath; in FindWebConfig()
530 curPath.Path = GetParentDir (rootPath, curPath.Path); in FindWebConfig()
531 if (curPath.Path == null || curPath.Path == "~") { in FindWebConfig()
[all …]
/dports/sysutils/nix/nix-2.3.10/src/nix/
H A Dls.cc29 auto showFile = [&](const Path & curPath, const std::string & relPath) { in listText() argument
31 auto st = accessor->stat(curPath); in listText()
40 std::cout << " -> " << accessor->readLink(curPath) in listText()
44 doPath(st, curPath, relPath, false); in listText()
48 auto st = accessor->stat(curPath); in listText()
50 doPath(st, curPath, relPath, false); in listText()
55 doPath = [&](const FSAccessor::Stat & st, const Path & curPath, in listText()
59 auto names = accessor->readDirectory(curPath); in listText()
61 showFile(curPath + "/" + name, relPath + "/" + name); in listText()
63 showFile(curPath, relPath); in listText()
/dports/sysutils/hfsexplorer/hfsexplorer-hfsexplorer-0.23.1/src/java/org/catacombae/storage/fs/
H A DFileSystemHandler.java163 String[] curPath = null; in getTruePathFromPosixPath() local
166 if(curPath == null) in getTruePathFromPosixPath()
167 curPath = pathStack.toArray(new String[pathStack.size()]); in getTruePathFromPosixPath()
168 curEntry2 = getEntry(curPath); in getTruePathFromPosixPath()
184 if(curPath == null) in getTruePathFromPosixPath()
185 curPath = pathStack.toArray(new String[pathStack.size()]); in getTruePathFromPosixPath()
186 FSEntry linkTarget = resolveLinks(curPath, curLink, visitedLinks); in getTruePathFromPosixPath()
258 …private FSEntry resolveLinks(String[] curPath, FSLink curLink, LinkedList<String[]> visitedLinks) { in resolveLinks() argument
261 Util.concatenateStrings(curPath, "/") + ", " + in resolveLinks()
283 visitedLinks.add(curPath); in resolveLinks()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/langtools/tools/javac/records/recordComponent/
H A DRecordComponentTypeTest.java65 Path curPath = Path.of("."); in testRecordComponentUsingGeneratedType() local
70 .outdir(curPath) in testRecordComponentUsingGeneratedType()
85 .outdir(curPath) in testRecordComponentUsingGeneratedType()
92 Path curPath = Path.of("."); in testRecordComponentUsingUnknownType() local
97 .outdir(curPath) in testRecordComponentUsingUnknownType()
111 .outdir(curPath) in testRecordComponentUsingUnknownType()
134 Path curPath = Path.of("."); in testRecordComponentUsingGeneratedTypeWithAnnotation() local
138 .outdir(curPath) in testRecordComponentUsingGeneratedTypeWithAnnotation()
140 … cf = ClassFile.read(curPath.resolve("RecordComponentUsingGeneratedTypeWithAnnotation.class")); in testRecordComponentUsingGeneratedTypeWithAnnotation()
/dports/science/py-pymol/pymol-open-source-2.4.0/modules/cealign/src/
H A Dccealignmodule.cpp237 curPath[i].first = -1; in findPath()
238 curPath[i].second = -1; in findPath()
240 curPath[0].first = iA; in findPath()
241 curPath[0].second = iB; in findPath()
259 int jA = curPath[curPathLength-1].first + winSize; in findPath()
289 curScore += fabs( dA[curPath[s].first][jA] - dB[curPath[s].second][jB] ); in findPath()
306 curPath[curPathLength].first = jA; in findPath()
307 curPath[curPathLength].second = jB; in findPath()
383 tempPath[i].first = curPath[i].first; in findPath()
384 tempPath[i].second = curPath[i].second; in findPath()
[all …]
/dports/science/cdk/cdk-cdk-2.3/base/core/src/main/java/org/openscience/cdk/graph/
H A DPathTools.java554 curPath.add(start); in getPathsOfLength()
555 paths.add(curPath); in getPathsOfLength()
560 IAtom lastVertex = curPath.get(curPath.size() - 1); in getPathsOfLength()
590 curPath.add(start); in getPathsOfLengthUpto()
591 paths.add(curPath); in getPathsOfLengthUpto()
592 allpaths.add(curPath); in getPathsOfLengthUpto()
597 IAtom lastVertex = curPath.get(curPath.size() - 1); in getPathsOfLengthUpto()
634 curPath.add(start); in getLimitedPathsOfLengthUpto()
635 paths.add(curPath); in getLimitedPathsOfLengthUpto()
636 allpaths.add(curPath); in getLimitedPathsOfLengthUpto()
[all …]
/dports/devel/kde-dev-scripts/kde-dev-scripts-21.12.3/
H A Dkde-checkout-list.pl93 my $curPath = "";
333 if ( $curUrl && $curPath ) {
336 $curPath =~ s+$curComponent+$foo+;
338 my $subdir = $curPath;
339 $curPath .= "-git" if ($gitSuffix && -d "$curPath/.svn");
342 $output{$subdir}{'path'} = $curPath;
347 $projectByPath{$curPath} = $subdir;
350 print STDERR "ERROR: repo without url! $curComponent $curModule $curProject $curPath\n";
351 } elsif (!$curPath) {
373 $curPath = $data;
/dports/lang/mono/mono-5.10.1.57/mcs/tools/installvst/
H A Dinstallvst.cs93 string curPath = folders.Count > 0 ? (string) folders.Peek () : null; in GetCurPath()
94 if (curPath == null || curPath.Length == 0) in GetCurPath()
96 return curPath; in GetCurPath()
101 string curPath = GetCurPath (); in ProcessFolder()
102 string folderPath = Path.Combine (curPath, SafeGetAttribute (node, "Name")); in ProcessFolder()
113 string curPath = GetCurPath (); in ProcessItem()
117 string dst = Path.Combine (curPath, targetName.Length > 0 ? targetName : srcName); in ProcessItem()
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/nomad/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
377 s.curPath.push(step)
415 s.curPath.pop()
428 s.curPath.push(step)
429 defer s.curPath.pop()
455 s.curPath.push(step)
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/golang/gddo/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
392 s.curPath.push(step)
438 s.curPath.pop()
451 s.curPath.push(step)
452 defer s.curPath.pop()
478 s.curPath.push(step)
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/docker/moby-20.10.2/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/cli/cli-20.10.2/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/containerd/containerd/containerd-1.4.3/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/containerd/containerd/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/docker/docker/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/docker/docker/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/docker/docker/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/docker/docker/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/docker/docker/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/net-mgmt/semaphore/semaphore-2.6.8/vendor/go.mongodb.org/mongo-driver/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/go.mongodb.org/mongo-driver/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/docker/docker/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/containerd/containerd/vendor/github.com/google/go-cmp/cmp/
H A Dcompare.go195 if len(s.curPath) == 0 {
197 defer s.curPath.pop()
243 defer s.curPath.pop()
256 defer s.curPath.pop()
280 if sf, ok := s.curPath[len(s.curPath)-1].(*structField); ok && sf.unexported {
393 s.curPath.push(step)
439 s.curPath.pop()
452 s.curPath.push(step)
453 defer s.curPath.pop()
479 s.curPath.push(step)
[all …]

12345678910>>...15