Home | History | Annotate | Download | only in fileapi

Lines Matching refs:filesystem_id

405                                       const std::string& filesystem_id) {
409 name.append(filesystem_id);
414 std::string* filesystem_id) {
415 DCHECK(filesystem_id);
417 // |filesystem_name| is of the form {origin}:isolated_{filesystem_id}.
433 *filesystem_id = filesystem_name.substr(pos + start_token.length(),
435 if (filesystem_id->empty())
441 bool ValidateIsolatedFileSystemId(const std::string& filesystem_id) {
443 if (filesystem_id.size() != kExpectedFileSystemIdSize)
446 return base::ContainsOnlyChars(filesystem_id, kExpectedChars);
451 const std::string& filesystem_id,
455 if (base::FilePath::FromUTF8Unsafe(filesystem_id).ReferencesParent())
457 root.append(net::EscapePath(filesystem_id));