tok 664 src/vfs/ftpfs/ftpfs_parse_ls.c char *tok; tok 682 src/vfs/ftpfs/ftpfs_parse_ls.c for (tok = strtok (line, ";"); tok != NULL; tok = strtok (NULL, ";")) tok 684 src/vfs/ftpfs/ftpfs_parse_ls.c if (strcasecmp (tok, "Type=cdir") == 0 tok 685 src/vfs/ftpfs/ftpfs_parse_ls.c || strcasecmp (tok, "Type=pdir") == 0 || strcasecmp (tok, "Type=dir") == 0) tok 690 src/vfs/ftpfs/ftpfs_parse_ls.c if (strcasecmp (tok, "Type=file") == 0) tok 695 src/vfs/ftpfs/ftpfs_parse_ls.c if (strcasecmp (tok, "Type=OS.unix=symlink") == 0) tok 700 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "Modify=", 7) == 0) tok 702 src/vfs/ftpfs/ftpfs_parse_ls.c date = ftpfs_convert_date (tok + 7); tok 705 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "Size=", 5) == 0) tok 709 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (tok + 5, "%lld", &size_ll) == 1) tok 713 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "Perm=", 5) == 0) tok 716 src/vfs/ftpfs/ftpfs_parse_ls.c for (tok += 5; *tok != '\0'; tok++) tok 718 src/vfs/ftpfs/ftpfs_parse_ls.c switch (g_ascii_tolower (*tok)) tok 741 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "UNIX.mode=", 10) == 0) tok 743 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (tok + 10, "%o", (unsigned int *) &perms) != 1) tok 747 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "UNIX.owner=", 11) == 0) tok 749 src/vfs/ftpfs/ftpfs_parse_ls.c owner = tok + 11; tok 752 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "UNIX.group=", 11) == 0) tok 754 src/vfs/ftpfs/ftpfs_parse_ls.c group = tok + 11; tok 757 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "UNIX.uid=", 9) == 0) tok 760 src/vfs/ftpfs/ftpfs_parse_ls.c owner = tok + 9; tok 763 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "UNIX.gid=", 9) == 0) tok 766 src/vfs/ftpfs/ftpfs_parse_ls.c group = tok + 9;