Searched refs:returncode (Results 1 - 6 of 6) sorted by relevance
/illumos-gate/usr/src/tools/cscope-fast/ |
H A D | vpaccess.c | 44 int returncode; local 47 if ((returncode = access(path, amode)) == -1 && path[0] != '/') { 51 if ((returncode = access(buf, amode)) != -1) { 56 return (returncode);
|
H A D | vpopen.c | 47 int returncode; local 50 if ((returncode = open(path, oflag, 0666)) == -1 && *path != '/' && 55 if ((returncode = open(buf, oflag, 0666)) != -1) { 60 return (returncode);
|
H A D | vpstat.c | 44 int returncode; local 47 if ((returncode = stat(path, statp)) == -1 && path[0] != '/') { 51 if ((returncode = stat(buf, statp)) != -1) { 56 return (returncode);
|
H A D | vpfopen.c | 45 FILE *returncode; local 48 if ((returncode = fopen(filename, type)) == NULL && 53 if ((returncode = fopen(buf, type)) != NULL) { 59 return (returncode);
|
/illumos-gate/usr/src/test/test-runner/cmd/ |
H A D | run | 72 self.returncode = None 85 self.returncode = proc.returncode 89 elif self.returncode is 0: 92 elif self.returncode is not 0: 201 while proc.returncode is None: 748 if p.returncode is not 0:
|
/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: label
|
Completed in 65 milliseconds