Home
last modified time | relevance | path

Searched refs:utf16_path (Results 1 – 2 of 2) sorted by relevance

/third_party/exfatprogs/lib/
Dexfat_fs.c258 __le16 *utf16_path; in exfat_resolve_path() local
271 utf16_path = ctx->utf16_path; in exfat_resolve_path()
275 memcpy((char *)utf16_path, (char *)ctx->ancestors[i]->name, in exfat_resolve_path()
277 utf16_path += name_len; in exfat_resolve_path()
278 memcpy((char *)utf16_path, &utf16_slash, sizeof(utf16_slash)); in exfat_resolve_path()
279 utf16_path++; in exfat_resolve_path()
283 utf16_path--; in exfat_resolve_path()
284 memcpy((char *)utf16_path, &utf16_null, sizeof(utf16_null)); in exfat_resolve_path()
285 utf16_path++; in exfat_resolve_path()
287 in_size = (utf16_path - ctx->utf16_path) * sizeof(__le16); in exfat_resolve_path()
[all …]
/third_party/exfatprogs/include/
Dexfat_fs.h59 __le16 utf16_path[PATH_MAX + 2]; member