Searched refs:returncode (Results 1 – 7 of 7) sorted by relevance
/illumos-gate/usr/src/tools/cscope-fast/ |
H A D | vpaccess.c | 42 int returncode; in vpaccess() local 45 if ((returncode = access(path, amode)) == -1 && path[0] != '/') { in vpaccess() 49 if ((returncode = access(buf, amode)) != -1) { in vpaccess() 54 return (returncode); in vpaccess()
|
H A D | vpstat.c | 42 int returncode; in vpstat() local 45 if ((returncode = stat(path, statp)) == -1 && path[0] != '/') { in vpstat() 49 if ((returncode = stat(buf, statp)) != -1) { in vpstat() 54 return (returncode); in vpstat()
|
H A D | vpopen.c | 45 int returncode; in vpopen() local 48 if ((returncode = open(path, oflag, 0666)) == -1 && *path != '/' && in vpopen() 53 if ((returncode = open(buf, oflag, 0666)) != -1) { in vpopen() 58 return (returncode); in vpopen()
|
H A D | vpfopen.c | 43 FILE *returncode; in vpfopen() local 46 if ((returncode = fopen(filename, type)) == NULL && in vpfopen() 51 if ((returncode = fopen(buf, type)) != NULL) { in vpfopen() 57 return (returncode); in vpfopen()
|
/illumos-gate/usr/src/test/test-runner/cmd/ |
H A D | run | 90 self.returncode = None 107 self.returncode = proc.returncode 112 elif self.returncode == 0: 115 elif self.returncode == 3 or self.returncode == 4: 118 elif self.returncode != 0: 235 while proc.returncode is None: 884 if p.returncode != 0:
|
/illumos-gate/usr/src/tools/scripts/ |
H A D | wsdiff.py | 125 returncode = os.WEXITSTATUS(status) 131 return returncode, output
|
/illumos-gate/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:
|