HomeSort by relevance Sort by last modified time
    Searched refs:filesystem_name (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/file_system/
file_system_api.cc 166 const std::string& filesystem_name,
172 if (!fileapi::CrackIsolatedFileSystemName(filesystem_name, filesystem_id)) {
203 bool GetFilePathOfFileEntry(const std::string& filesystem_name,
209 return GetFileSystemAndPathOfFileEntry(filesystem_name,
482 std::string filesystem_name; local
484 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &filesystem_name));
488 if (!GetFilePathOfFileEntry(filesystem_name, filesystem_path,
576 std::string filesystem_name; local
578 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &filesystem_name));
588 if (!GetFilePathOfFileEntry(filesystem_name, filesystem_path
599 std::string filesystem_name; local
981 std::string filesystem_name; local
    [all...]
  /external/e2fsprogs/e2fsck/
unix.c 207 retval = ext2fs_check_if_mounted(ctx->filesystem_name,
212 ctx->filesystem_name);
229 printf(_("Warning! %s is mounted.\n"), ctx->filesystem_name);
233 printf(_("%s is mounted. "), ctx->filesystem_name);
842 ctx->filesystem_name = blkid_get_devname(ctx->blkid, argv[optind], 0);
843 if (!ctx->filesystem_name) {
857 fd = open(ctx->filesystem_name, O_RDONLY, 0);
861 ctx->filesystem_name);
867 ctx->filesystem_name);
942 retval = ext2fs_open2(ctx->filesystem_name, ctx->io_options
    [all...]
e2fsck.c 183 if (ctx->filesystem_name)
184 ext2fs_free_mem(&ctx->filesystem_name);
e2fsck.h 209 char *filesystem_name; member in struct:e2fsck_struct
journal.c 888 retval = ext2fs_open(ctx->filesystem_name, EXT2_FLAG_RW,
980 retval = ext2fs_check_if_mounted(ctx->filesystem_name, &mount_flags);
problem.c     [all...]
  /external/chromium_org/chrome/renderer/extensions/
file_system_natives.cc 111 std::string filesystem_name = *v8::String::Utf8Value(args[0]->ToString()); local
113 if (!fileapi::CrackIsolatedFileSystemName(filesystem_name, &filesystem_id))
  /external/chromium_org/webkit/common/fileapi/
file_system_util.h 139 // Find the file system id from |filesystem_name|. Should only be used by
144 const std::string& filesystem_name,
file_system_util.cc 338 bool CrackIsolatedFileSystemName(const std::string& filesystem_name,
342 // |filesystem_name| is of the form {origin}:isolated_{filesystem_id}.
351 std::string filesystem_name_upper = StringToUpperASCII(filesystem_name);
358 *filesystem_id = filesystem_name.substr(pos + start_token.length(),
  /external/chromium_org/webkit/browser/fileapi/
file_system_context.cc 47 const std::string& filesystem_name,
49 callback.Run(error, filesystem_name, filesystem_root);

Completed in 918 milliseconds