Searched refs:npath (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/contrib/bmake/filemon/
H A Dfilemon_ktrace.c129 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);
585 syscall_enter( const struct filemon_key *key, const struct ktr_syscall *call, unsigned npath, void (*show)(struct filemon *, const struct filemon_state *, const struct ktr_sysret *)) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cpp102 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) { argument
400 rep->n = npath;
401 for (int i = 0; i < npath; i++) {
403 Link *link0 = &pt->path[i ? i - 1 : npath - 1];
/freebsd-current/contrib/tcsh/
H A Dma.setp.c286 int npath, i, len; local
289 for (npath = 0, pe = pathhead; pe; npath++, pe = pe->pnext) {
296 paths[npath] = p;
/freebsd-current/sys/fs/ext2fs/
H A Dext2_extents.c1240 struct ext4_extent_path *npath; local
1245 npath = NULL;
1269 KASSERT(npath == NULL,
1272 error = ext4_ext_find_extent(ip, next, &npath);
1276 if (npath->ep_depth != path->ep_depth) {
1281 eh = npath[depth].ep_header;
1283 path = npath;
1357 if (npath) {
1358 ext4_ext_drop_refs(npath);
1359 free(npath, M_EXT2EXTENT
[all...]
/freebsd-current/sbin/pfctl/
H A Dpfctl.c1110 char *npath, *p; local
1123 if ((npath = calloc(1, MAXPATHLEN)) == NULL)
1125 snprintf(npath, MAXPATHLEN, "%s", anchorname);
1131 npath = path;
1142 if (pfctl_get_eth_rulesets_info(dev, &ri, npath)) {
1157 if (pfctl_get_eth_ruleset(dev, npath, nr, &rs))
1161 pfctl_show_eth_rules(dev, npath, opts,
1226 char *npath, *p; local
1239 if ((npath = calloc(1, MAXPATHLEN)) == NULL)
1241 snprintf(npath, MAXPATHLE
1431 char *npath, *p; local
[all...]
/freebsd-current/crypto/openssh/
H A Dsftp-server.c1554 char *path, *npath; local
1577 npath = xstrdup(path + 2);
1579 xasprintf(&path, "%s/%s", cwd, npath);
1580 free(npath);
1583 if (tilde_expand(path, pw->pw_uid, &npath) != 0) {
1589 path = npath;
1593 xasprintf(&npath, "%s/%s", cwd, path);
1595 path = npath;
/freebsd-current/contrib/sendmail/src/
H A Dqueue.c8072 char npath[MAXPATHLEN]; local
8087 (void) sm_strlcpy(npath, queuename(new, DATAFL_LETTER), sizeof(npath));
8115 if (link(opath, npath) == 0)
8118 SYNC_DIR(npath, true);
8132 (void) sm_strlcpy(npath, queuename(new, DATAFL_LETTER), sizeof(npath));
8133 if (link(opath, npath) == 0)
8136 SYNC_DIR(npath, true);
8144 opath, npath, sm_errstrin
[all...]
/freebsd-current/contrib/lib9p/pytest/
H A Dp9conn.py528 npath = b'/'.join(ncomps)
531 self.live_fids[fid] = npath

Completed in 221 milliseconds