Lines Matching refs:ptr_at
1394 const char *ptr_at, *filename; in dnode_get_fullpath() local
1398 ptr_at = strchr(fullpath, '@'); in dnode_get_fullpath()
1399 if (!ptr_at) { in dnode_get_fullpath()
1405 const char *ptr_slash = strchr(ptr_at, '/'); in dnode_get_fullpath()
1408 fsname = malloc(ptr_at - fullpath + 1); in dnode_get_fullpath()
1411 memcpy(fsname, fullpath, ptr_at - fullpath); in dnode_get_fullpath()
1412 fsname[ptr_at - fullpath] = 0; in dnode_get_fullpath()
1413 if (ptr_at[1] && ptr_at[1] != '/') { in dnode_get_fullpath()
1414 snapname = malloc(ptr_slash - ptr_at); in dnode_get_fullpath()
1419 memcpy(snapname, ptr_at + 1, ptr_slash - ptr_at - 1); in dnode_get_fullpath()
1420 snapname[ptr_slash - ptr_at - 1] = 0; in dnode_get_fullpath()