Searched refs:returncode (Results 1 – 7 of 7) sorted by relevance
/titanic_50/usr/src/tools/cscope-fast/ |
H A D | vpaccess.c | 44 int returncode; in vpaccess() local 47 if ((returncode = access(path, amode)) == -1 && path[0] != '/') { in vpaccess() 51 if ((returncode = access(buf, amode)) != -1) { in vpaccess() 56 return (returncode); in vpaccess()
|
H A D | vpstat.c | 44 int returncode; in vpstat() local 47 if ((returncode = stat(path, statp)) == -1 && path[0] != '/') { in vpstat() 51 if ((returncode = stat(buf, statp)) != -1) { in vpstat() 56 return (returncode); in vpstat()
|
H A D | vpopen.c | 47 int returncode; in vpopen() local 50 if ((returncode = open(path, oflag, 0666)) == -1 && *path != '/' && in vpopen() 55 if ((returncode = open(buf, oflag, 0666)) != -1) { in vpopen() 60 return (returncode); in vpopen()
|
H A D | vpfopen.c | 45 FILE *returncode; in vpfopen() local 48 if ((returncode = fopen(filename, type)) == NULL && in vpfopen() 53 if ((returncode = fopen(buf, type)) != NULL) { in vpfopen() 59 return (returncode); in vpfopen()
|
/titanic_50/usr/src/test/test-runner/cmd/ |
H A D | run | 82 self.returncode = None 95 self.returncode = proc.returncode 99 elif self.returncode == 0: 102 elif self.returncode != 0: 208 while proc.returncode is None: 757 if p.returncode != 0:
|
/titanic_50/usr/src/tools/scripts/ |
H A D | wsdiff.py | 128 returncode = os.WEXITSTATUS(status) 134 return returncode, output
|
/titanic_50/usr/src/cmd/ipf/tools/ |
H A D | ipf_y.y | 319 | IPFY_RETICMP returncode { fr->fr_flags |= FR_RETICMP; } 321 | IPFY_RETICMPASDST returncode { fr->fr_flags |= FR_FAKEICMP; } 697 returncode:
|