Lines Matching refs:f_name
1033 ctx->f_name = ctx->f_fname; in smbfs_findopenLM1()
1063 cp = ctx->f_name; in smbfs_findnextLM1()
1067 while (*cp == ' ' && cp >= ctx->f_name) in smbfs_findnextLM1()
1073 ctx->f_nmlen = strlen(ctx->f_name); in smbfs_findnextLM1()
1225 ctx->f_name = malloc(SMB_MAXFNAMELEN * 2, M_SMBFSDATA, M_WAITOK); in smbfs_findopenLM2()
1227 ctx->f_name = malloc(SMB_MAXFNAMELEN, M_SMBFSDATA, M_WAITOK); in smbfs_findopenLM2()
1308 cp = ctx->f_name; in smbfs_findnextLM2()
1342 bcopy(ctx->f_name, ctx->f_rname, nmlen); in smbfs_findnextLM2()
1356 if (ctx->f_name) in smbfs_findcloseLM2()
1357 free(ctx->f_name, M_SMBFSDATA); in smbfs_findcloseLM2()
1409 *(u_int16_t *)ctx->f_name == htole16(0x002e)) || in smbfs_findnext()
1411 *(u_int32_t *)ctx->f_name == htole32(0x002e002e))) in smbfs_findnext()
1414 if ((ctx->f_nmlen == 1 && ctx->f_name[0] == '.') || in smbfs_findnext()
1415 (ctx->f_nmlen == 2 && ctx->f_name[0] == '.' && in smbfs_findnext()
1416 ctx->f_name[1] == '.')) in smbfs_findnext()
1420 smbfs_fname_tolocal(SSTOVC(ctx->f_ssp), ctx->f_name, &ctx->f_nmlen, in smbfs_findnext()
1422 ctx->f_attr.fa_ino = smbfs_getino(ctx->f_dnp, ctx->f_name, ctx->f_nmlen); in smbfs_findnext()