Home | History | Annotate | Download | only in util

Lines Matching defs:short_path

1013 // Gets the short (8.3) form of |path|, putting the result in |short_path| and
1014 // returning true on success. |short_path| is not modified on failure.
1015 bool ShortNameFromPath(const base::FilePath& path, string16* short_path) {
1016 DCHECK(short_path);
1026 short_path->swap(result);
1118 string16 short_path;
1131 if (!ShortNameFromPath(command_line.GetProgram(), &short_path))
1134 if (!base::FilePath::CompareEqualIgnoreCase(short_path, short_app_path))