Searched refs:pathbuf (Results 1 - 5 of 5) sorted by relevance

/barrelfish-2018-10-04/lib/libc/gen/
H A Dglob.c630 Char pathbuf[MAXPATHLEN]; local
635 return (glob2(pathbuf, pathbuf, pathbuf + MAXPATHLEN - 1,
645 glob2(Char *pathbuf, Char *pathend, Char *pathend_last, Char *pattern, argument
659 if (g_lstat(pathbuf, &sb, pglob))
671 g_stat(pathbuf, &sb, pglob) == 0 &&
681 return (globextend(pathbuf, pglob, limit, NULL));
708 return (glob3(pathbuf, pathend, pathend_last, pattern,
715 glob3(Char *pathbuf, Cha argument
[all...]
/barrelfish-2018-10-04/lib/vfs/
H A Dvfs_ramfs.c70 char pathbuf[nextlen + 1]; local
71 memcpy(pathbuf, &path[pos], nextlen);
72 pathbuf[nextlen] = '\0';
76 err = cl->rpc->rpc_tx_vtbl.lookup(cl->rpc, fh, pathbuf, &msgerr, &nextfh, &isdir);
95 path, pathbuf);
658 char pathbuf[pathlen + 1]; local
659 memcpy(pathbuf, path, pathlen);
660 pathbuf[pathlen] = '\0';
663 err = resolve_path(cl, pathbuf, &parent, NULL, &isdir);
H A Dvfs_nfs.c132 char pathbuf[nextlen + 1]; local
133 memcpy(pathbuf, &st->path[st->path_pos], nextlen);
134 pathbuf[nextlen] = '\0';
137 errval_t e = nfs_lookup(st->nfs->client, st->curfh, pathbuf, resolve_lookup_cb,
181 char pathbuf[nextlen + 1]; local
182 memcpy(pathbuf, &st->path[st->path_pos], nextlen);
183 pathbuf[nextlen] = '\0';
187 errval_t e = nfs_lookup(nfs->client, st->curfh, pathbuf, resolve_lookup_cb, st);
/barrelfish-2018-10-04/lib/barrelfish/
H A Dspawn_client.c477 char pathbuf[buflen]; local
479 snprintf(pathbuf, buflen, "%s%c%s", searchpath, VFS_PATH_SEP, path);
480 pathbuf[buflen - 1] = '\0';
481 //vfs_path_normalise(pathbuf);
482 path = pathbuf;
634 char pathbuf[buflen]; local
636 snprintf(pathbuf, buflen, "%s%c%s", searchpath, VFS_PATH_SEP, path);
637 pathbuf[buflen - 1] = '\0';
638 //vfs_path_normalise(pathbuf);
639 path = pathbuf;
[all...]
/barrelfish-2018-10-04/tools/arm_boot/
H A Darm_bootimage.c1009 char pathbuf[PATH_MAX+1]; local
1074 join_paths(pathbuf, buildroot, menu->kernel.path);
1076 printf("Loading %s\n", pathbuf);
1077 int cpu_fd= open(pathbuf, O_RDONLY);
1099 join_paths(pathbuf, buildroot, menu->modules[i].path);
1100 raw_load(pathbuf, &modules[i]);

Completed in 112 milliseconds