tok 665 src/vfs/ftpfs/ftpfs_parse_ls.c char *tok; tok 683 src/vfs/ftpfs/ftpfs_parse_ls.c for (tok = strtok (line, ";"); tok != NULL; tok = strtok (NULL, ";")) tok 685 src/vfs/ftpfs/ftpfs_parse_ls.c if (strcasecmp (tok, "Type=cdir") == 0 || strcasecmp (tok, "Type=pdir") == 0 tok 686 src/vfs/ftpfs/ftpfs_parse_ls.c || strcasecmp (tok, "Type=dir") == 0) tok 691 src/vfs/ftpfs/ftpfs_parse_ls.c if (strcasecmp (tok, "Type=file") == 0) tok 696 src/vfs/ftpfs/ftpfs_parse_ls.c if (strcasecmp (tok, "Type=OS.unix=symlink") == 0) tok 701 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "Modify=", 7) == 0) tok 703 src/vfs/ftpfs/ftpfs_parse_ls.c date = ftpfs_convert_date (tok + 7); tok 706 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "Size=", 5) == 0) tok 710 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (tok + 5, "%lld", &size_ll) == 1) tok 714 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "Perm=", 5) == 0) tok 717 src/vfs/ftpfs/ftpfs_parse_ls.c for (tok += 5; *tok != '\0'; tok++) tok 719 src/vfs/ftpfs/ftpfs_parse_ls.c switch (g_ascii_tolower (*tok)) tok 742 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "UNIX.mode=", 10) == 0) tok 744 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (tok + 10, "%o", (unsigned int *) &perms) != 1) tok 748 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "UNIX.owner=", 11) == 0) tok 750 src/vfs/ftpfs/ftpfs_parse_ls.c owner = tok + 11; tok 753 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "UNIX.group=", 11) == 0) tok 755 src/vfs/ftpfs/ftpfs_parse_ls.c group = tok + 11; tok 758 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "UNIX.uid=", 9) == 0) tok 761 src/vfs/ftpfs/ftpfs_parse_ls.c owner = tok + 9; tok 764 src/vfs/ftpfs/ftpfs_parse_ls.c if (strncasecmp (tok, "UNIX.gid=", 9) == 0) tok 767 src/vfs/ftpfs/ftpfs_parse_ls.c group = tok + 9;