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

  /external/chromium_org/chrome/browser/resources/file_manager/js/
volume_manager.js 168 * @param {string} mountPath Volume root path.
171 VolumeManager.prototype.isMounted = function(mountPath) {
172 this.validateMountPath_(mountPath);
173 return mountPath in this.mountedVolumes_;
203 self.makeVolumeInfo_('/' + info.mountPath, error, onVolumeInfo);
207 self.mountedVolumes_[volume.mountPath] = volume;
237 if (event.mountPath) {
241 this.makeVolumeInfo_(event.mountPath, error, function(volume) {
242 this.mountedVolumes_[volume.mountPath] = volume;
243 this.finishRequest_(requestKey, event.status, event.mountPath);
    [all...]
file_tasks.js 482 fm.volumeManager_.mountArchive(urls[index], function(mountPath) {
485 fm.directoryModel_.changeDirectory(mountPath);
action_choice.js 488 if (this.sourceEntry_ && event.mountPath == this.sourceEntry_.fullPath)
file_manager.js     [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
bisect-builds 370 my $mountPath = "/Volumes/WebKit";
371 my $webkitApp = File::Spec->catfile($mountPath, "WebKit.app");
376 while (-e $mountPath) {
379 `hdiutil detach '$mountPath' 2> $devNull`;
380 die "Could not unmount $diskImage at $mountPath" if $i > 100;
382 die "Can't mount $diskImage: $mountPath already exists!" if -e $mountPath;
390 die "Could not mount $diskImage at $mountPath" if $i > 100;
404 `hdiutil detach '$mountPath' 2> $devNull`;
  /cts/tests/tests/os/src/android/os/storage/cts/
StorageManagerTest.java 68 final String mountPath = checkMountedPath(canonPath);
69 final File mountDir = new File(mountPath);
263 final String mountPath = mStorageManager.getMountedObbPath(path);
266 mountPath);
267 return mountPath;
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MountServiceTests.java 187 final String mountPath = sm.getMountedObbPath(file.getPath());
190 mountPath);
191 return mountPath;
221 final String mountPath = checkMountedPath(sm, outFile);
222 final File mountDir = new File(mountPath);
  /system/vold/
VolumeManager.cpp 187 int VolumeManager::getObbMountPath(const char *sourceFile, char *mountPath, int mountPathLen) {
194 memset(mountPath, 0, mountPathLen);
195 int written = snprintf(mountPath, mountPathLen, "%s/%s", Volume::LOOPDIR, idHash);
201 if (access(mountPath, F_OK)) {
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/media/
video_player.js 174 if (selectedItemFilesystemPath.indexOf(event.mountPath) == 0)
audio_player.js 230 if (this.selectedItemFilesystemPath_.indexOf(event.mountPath) == 0)
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js     [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
gallery.js 228 if (this.selectedItemFilesystemPath_.indexOf(event.mountPath) == 0)

Completed in 413 milliseconds