Lines Matching refs:ctx
254 int exfat_resolve_path(struct path_resolve_ctx *ctx, struct exfat_inode *child)
263 ctx->local_path[0] = '\0';
266 ctx->ancestors,
267 sizeof(ctx->ancestors) / sizeof(ctx->ancestors[0]),
271 utf16_path = ctx->utf16_path;
273 name_len = exfat_utf16_len(ctx->ancestors[i]->name,
275 memcpy((char *)utf16_path, (char *)ctx->ancestors[i]->name,
287 in_size = (utf16_path - ctx->utf16_path) * sizeof(__le16);
288 return exfat_utf16_dec(ctx->utf16_path, in_size,
289 ctx->local_path, sizeof(ctx->local_path));
292 int exfat_resolve_path_parent(struct path_resolve_ctx *ctx,
301 ret = exfat_resolve_path(ctx, child);