HomeSort by: relevance | last modified time | path
    Searched refs:npath (Results 1 - 10 of 10) sorted by relevancy

  /src/usr.bin/make/filemon/
filemon_ktrace.c 132 unsigned npath; member in struct:filemon_state
133 char *path[/*npath*/];
461 if (S->i >= S->npath)
483 if (S->i == S->npath && S->syscode == ret->ktr_code)
590 unsigned npath,
597 S = calloc(1, offsetof(struct filemon_state, path[npath]));
604 S->npath = npath;
605 for (i = 0; i < npath; i++)
618 assert(S->i == S->npath);
    [all...]
  /src/lib/libc/gen/
getttyent.c 241 char npath[PATH_MAX]; local
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
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/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_deadlock_detector2.cpp 102 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath);
359 int npath = 0; local
370 npath--;
382 pt->path[npath++] = link;
385 return Report(pt, lt, npath); // Bingo!
398 void DD::Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) {
400 rep->n = npath;
401 for (int i = 0; i < npath; i++) {
403 Link *link0 = &pt->path[i ? i - 1 : npath - 1];
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_deadlock_detector2.cpp 102 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath);
359 int npath = 0; local
370 npath--;
382 pt->path[npath++] = link;
385 return Report(pt, lt, npath); // Bingo!
398 void DD::Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) {
400 rep->n = npath;
401 for (int i = 0; i < npath; i++) {
403 Link *link0 = &pt->path[i ? i - 1 : npath - 1];
  /src/external/gpl2/xcvs/dist/src/
parseinfo.c 409 char *npath = xcanonicalize_file_name (path); local
417 if (!strncmp (nprefix, npath, strlen (nprefix))
419 && strlen (npath) == strlen (nprefix))
421 && npath[strlen (nprefix)] == '/')))
430 free (npath);
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
transited.c 519 size_t *npath)
528 *npath = 0;
573 *npath = n;
604 *npath = hier_state.num;
  /src/bin/ksh/
exec.c 901 char *npath; local
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
830 p = npath;
831 ep = &npath[sizeof(npath) - 1];
845 reply(257, "\"%s\" %s", npath, message);
  /src/crypto/external/bsd/openssh/dist/
sftp-server.c 1527 char *path, *npath; local
1550 npath = xstrdup(path + 2);
1552 xasprintf(&path, "%s/%s", cwd, npath);
1553 free(npath);
1556 if (tilde_expand(path, pw->pw_uid, &npath) != 0) {
1562 path = npath;
1566 xasprintf(&npath, "%s/%s", cwd, path);
1568 path = npath;

Completed in 69 milliseconds