/src/lib/libc/gen/ |
getttyent.c | 241 char npath[PATH_MAX]; local in function:setttyentpath 242 (void)snprintf(npath, sizeof(npath), "%s.%s", path, 244 if ((tf = fopen(npath, "re")) != NULL)
|
getttyent.c | 241 char npath[PATH_MAX]; local in function:setttyentpath 242 (void)snprintf(npath, sizeof(npath), "%s.%s", path, 244 if ((tf = fopen(npath, "re")) != NULL)
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_deadlock_detector2.cc | 103 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath); 362 int npath = 0; local in function:__sanitizer::DD::CycleCheck 373 npath--; 385 pt->path[npath++] = link; 388 return Report(pt, lt, npath); // Bingo! 401 void DD::Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) { 403 rep->n = npath; 404 for (int i = 0; i < npath; i++) { 406 Link *link0 = &pt->path[i ? i - 1 : npath - 1];
|
sanitizer_deadlock_detector2.cc | 103 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath); 362 int npath = 0; local in function:__sanitizer::DD::CycleCheck 373 npath--; 385 pt->path[npath++] = link; 388 return Report(pt, lt, npath); // Bingo! 401 void DD::Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) { 403 rep->n = npath; 404 for (int i = 0; i < npath; i++) { 406 Link *link0 = &pt->path[i ? i - 1 : npath - 1];
|
/src/bin/ksh/ |
exec.c | 901 char *npath; local in function:findcom 963 npath = search(name, flags & FC_DEFPATH ? def_path : path, 965 if (npath) { 967 tp->val.s = npath; 969 tp->val.s = str_save(npath, APERM); 970 afree(npath, ATEMP); 975 && (npath = search(name, fpath, R_OK, 986 tp->u.fpath = npath;
|
exec.c | 901 char *npath; local in function:findcom 963 npath = search(name, flags & FC_DEFPATH ? def_path : path, 965 if (npath) { 967 tp->val.s = npath; 969 tp->val.s = str_save(npath, APERM); 970 afree(npath, ATEMP); 975 && (npath = search(name, fpath, R_OK, 986 tp->u.fpath = npath;
|
/src/libexec/ftpd/ |
cmds.c | 828 char npath[MAXPATHLEN * 2]; local in function:replydirname 830 p = npath; 831 ep = &npath[sizeof(npath) - 1]; 845 reply(257, "\"%s\" %s", npath, message);
|
cmds.c | 828 char npath[MAXPATHLEN * 2]; local in function:replydirname 830 p = npath; 831 ep = &npath[sizeof(npath) - 1]; 845 reply(257, "\"%s\" %s", npath, message);
|
/src/usr.bin/make/filemon/ |
filemon_ktrace.c | 129 unsigned npath; member in struct:filemon_state 130 char *path[/*npath*/]; 458 if (S->i >= S->npath) 480 if (S->i == S->npath && S->syscode == ret->ktr_code) 587 unsigned npath, 594 S = calloc(1, offsetof(struct filemon_state, path[npath])); 601 S->npath = npath; 602 for (i = 0; i < npath; i++) 615 assert(S->i == S->npath); [all...] |
filemon_ktrace.c | 129 unsigned npath; member in struct:filemon_state 130 char *path[/*npath*/]; 458 if (S->i >= S->npath) 480 if (S->i == S->npath && S->syscode == ret->ktr_code) 587 unsigned npath, 594 S = calloc(1, offsetof(struct filemon_state, path[npath])); 601 S->npath = npath; 602 for (i = 0; i < npath; i++) 615 assert(S->i == S->npath); [all...] |