Searched refs:wnames (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/fs/p9fs/ |
H A D | p9fs_subr.c | 252 char **wnames; in p9fs_get_full_path() local 261 wnames = malloc(n * sizeof(char *), M_TEMP, M_ZERO|M_WAITOK); in p9fs_get_full_path() 264 wnames[i] = node->inode.i_name; in p9fs_get_full_path() 266 *names = wnames; in p9fs_get_full_path() 343 char **wnames = NULL; in p9fs_get_fid() local 383 nwnames = p9fs_get_full_path(np, &wnames); in p9fs_get_fid() 396 fid = p9_client_walk(fid, l, wnames, clone, error); in p9fs_get_fid() 409 free(wnames, M_TEMP); in p9fs_get_fid()
|
H A D | p9_protocol.c | 242 char **wnames; in p9_buf_vreadf() local 250 wnames = malloc(sizeof(char *) * nwname, M_TEMP, M_NOWAIT | M_ZERO); in p9_buf_vreadf() 253 error = p9_buf_readf(buf, proto_version, "s", &wnames[i]); in p9_buf_vreadf() 257 free((wnames)[i], M_TEMP); in p9_buf_vreadf() 258 free(wnames, M_TEMP); in p9_buf_vreadf() 260 *wnames_p = wnames; in p9_buf_vreadf() 441 char **wnames = va_arg(ap, char **); in p9_buf_vwritef() local 448 error = p9_buf_writef(buf, proto_version, "s", wnames[i]); in p9_buf_vwritef()
|
H A D | p9_client.h | 130 char **wnames, int clone, int *error);
|
H A D | p9_client.c | 731 p9_client_walk(struct p9_fid *oldfid, uint16_t nwnames, char **wnames, in p9_client_walk() argument 766 wnames != NULL ? wnames[nwnames-1] : NULL); in p9_client_walk() 773 fid->fid, wnames, nwnames); in p9_client_walk()
|