Searched defs:returncode (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/tools/cscope-fast/
H A Dvpaccess.c44 int returncode; local
47 if ((returncode = access(path, amode)) == -1 && path[0] != '/') {
51 if ((returncode = access(buf, amode)) != -1) {
56 return (returncode);
H A Dvpfopen.c45 FILE *returncode; local
48 if ((returncode = fopen(filename, type)) == NULL &&
53 if ((returncode = fopen(buf, type)) != NULL) {
59 return (returncode);
H A Dvpopen.c47 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 Dvpstat.c44 int returncode; local
47 if ((returncode = stat(path, statp)) == -1 && path[0] != '/') {
51 if ((returncode = stat(buf, statp)) != -1) {
56 return (returncode);
/illumos-gate/usr/src/cmd/ipf/tools/
H A Dipf_y.y319 | IPFY_RETICMP returncode { fr->fr_flags |= FR_RETICMP; }
321 | IPFY_RETICMPASDST returncode { fr->fr_flags |= FR_FAKEICMP; }
697 returncode: label

Completed in 72 milliseconds