HomeSort by relevance Sort by last modified time
    Searched refs:VolumeManager (Results 1 - 25 of 33) sorted by null

1 2

  /system/vold/tests/
VolumeManager_test.cpp 22 #include "../VolumeManager.h"
44 EXPECT_TRUE(VolumeManager::asecHash(exp1, (char*)NULL, sizeof(buffer)) == NULL && errno == ESPIPE)
46 EXPECT_TRUE(VolumeManager::asecHash(exp1, dst, 0) == NULL && errno == ESPIPE)
48 EXPECT_TRUE(VolumeManager::asecHash((const char*)NULL, dst, sizeof(buffer)) == NULL && errno == ESPIPE)
51 EXPECT_FALSE(VolumeManager::asecHash(src1, dst, sizeof(buffer)) == NULL)
58 EXPECT_FALSE(VolumeManager::asecHash(src2, dst, sizeof(buffer)) == NULL)
  /external/chromium_org/chrome/browser/chromeos/file_manager/
volume_manager_factory.h 19 class VolumeManager;
21 // Factory to create VolumeManager.
24 // Returns VolumeManager instance.
25 static VolumeManager* Get(content::BrowserContext* context);
volume_manager_factory.cc 20 VolumeManager* VolumeManagerFactory::Get(content::BrowserContext* context) {
21 return static_cast<VolumeManager*>(
45 VolumeManager* instance = new VolumeManager(
volume_manager.h 119 class VolumeManager : public KeyedService,
125 VolumeManager(
131 virtual ~VolumeManager();
134 static VolumeManager* Get(content::BrowserContext* context);
232 base::WeakPtrFactory<VolumeManager> weak_ptr_factory_;
233 DISALLOW_COPY_AND_ASSIGN(VolumeManager);
volume_manager.cc 248 VolumeManager::VolumeManager(
265 VolumeManager::~VolumeManager() {
268 VolumeManager* VolumeManager::Get(content::BrowserContext* context) {
272 void VolumeManager::Initialize() {
382 base::Bind(&VolumeManager::OnExternalStorageDisabledChanged,
389 base::Bind(&VolumeManager::OnPrivetVolumesAvailable,
400 base::Bind(&VolumeManager::OnStorageMonitorInitialized
    [all...]
external_filesystem_apitest.cc 418 VolumeManager::Get(browser()->profile())->AddVolumeInfoForTesting(
448 VolumeManager::Get(browser()->profile())->AddVolumeInfoForTesting(
636 VolumeManager::Get(browser()->profile())
volume_manager_unittest.cc 163 new VolumeManager(profile_.get(),
173 VolumeManager* volume_manager() const { return volume_manager_.get(); }
180 scoped_ptr<VolumeManager> volume_manager_;
191 VolumeManager* volume_manager() const {
631 // When "format" is successfully done, VolumeManager requests to mount it.
807 // VolumeManager.
    [all...]
  /system/vold/
NetlinkHandler.cpp 28 #include "VolumeManager.h"
46 VolumeManager *vm = VolumeManager::Instance();
Volume.h 24 class VolumeManager;
55 VolumeManager *mVm;
67 Volume(VolumeManager *vm, const fstab_rec* rec, int flags);
VolumeManager.h 53 class VolumeManager {
55 static VolumeManager *sInstance;
71 virtual ~VolumeManager();
135 static VolumeManager *Instance();
154 VolumeManager();
VolumeManager.cpp 45 #include "VolumeManager.h"
162 VolumeManager *VolumeManager::sInstance = NULL;
164 VolumeManager *VolumeManager::Instance() {
166 sInstance = new VolumeManager();
170 VolumeManager::VolumeManager() {
182 VolumeManager::~VolumeManager() {
    [all...]
main.cpp 34 #include "VolumeManager.h"
40 static int process_config(VolumeManager *vm);
48 VolumeManager *vm;
60 if (!(vm = VolumeManager::Instance())) {
61 SLOGE("Unable to create VolumeManager");
76 SLOGE("Unable to start VolumeManager (%s)", strerror(errno));
154 static int process_config(VolumeManager *vm)
DirectVolume.h 57 DirectVolume(VolumeManager *vm, const fstab_rec* rec, int flags);
Android.mk 4 VolumeManager.cpp \
CommandListener.cpp 35 #include "VolumeManager.h"
130 VolumeManager *vm = VolumeManager::Instance();
343 VolumeManager *vm = VolumeManager::Instance();
485 VolumeManager *vm = VolumeManager::Instance();
DirectVolume.cpp 31 #include "VolumeManager.h"
73 DirectVolume::DirectVolume(VolumeManager *vm, const fstab_rec* rec, int flags) :
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_mount.cc 82 file_manager::VolumeManager* volume_manager =
83 file_manager::VolumeManager::Get(GetProfile());
156 using file_manager::VolumeManager;
158 VolumeManager* volume_manager = VolumeManager::Get(GetProfile());
202 file_manager::VolumeManager::Get(GetProfile())->GetVolumeInfoList();
private_api_file_system.cc 273 using file_manager::VolumeManager;
275 VolumeManager* volume_manager = VolumeManager::Get(GetProfile());
408 using file_manager::VolumeManager;
410 VolumeManager* volume_manager = VolumeManager::Get(GetProfile());
522 using file_manager::VolumeManager;
524 VolumeManager* volume_manager = VolumeManager::Get(GetProfile());
event_router.cc 384 VolumeManager* volume_manager = VolumeManager::Get(profile_);
409 // VolumeManager's construction triggers DriveIntegrationService's
410 // construction, so it is necessary to call VolumeManager's Get before
412 VolumeManager* volume_manager = VolumeManager::Get(profile_);
    [all...]
private_api_util.cc 76 VolumeManager::Get(profile)->snapshot_manager()->CreateManagedSnapshot(
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
volume_manager_wrapper.js 6 * Thin wrapper for VolumeManager. This should be an interface proxy to talk
7 * to VolumeManager. This class also filters Drive related data/events if
34 // Start initialize the VolumeManager.
49 this.backgroundPage_.VolumeManager.getInstance(function(volumeManager) {
50 this.onReady_(volumeManager);
71 * Called when the VolumeManager gets ready for post initialization.
72 * @param {VolumeManager} volumeManager The initialized VolumeManager instance
    [all...]
directory_tree.js 195 var location = tree.volumeManager.getLocationInfo(dirEntry);
413 * @param {VolumeManagerWrapper} volumeManager VolumeManager of the system.
417 el, directoryModel, volumeManager, metadataCache) {
420 directoryModel, volumeManager, metadataCache);
452 * The VolumeManager instance of the system.
453 * @type {VolumeManager}
455 get volumeManager() {
495 * @param {VolumeManagerWrapper} volumeManager VolumeManager of the system
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/background/js/
volume_manager.js 414 * VolumeManager is responsible for tracking list of mounted volumes.
419 function VolumeManager() {
441 // The status should be merged into VolumeManager.
457 VolumeManager.prototype.onDriveConnectionStatusChanged_ = function() {
468 VolumeManager.prototype.getDriveConnectionState = function() {
473 * VolumeManager extends cr.EventTarget.
475 VolumeManager.prototype.__proto__ = cr.EventTarget.prototype;
481 VolumeManager.TIMEOUT = 15 * 60 * 1000;
488 VolumeManager.getInstanceQueue_ = new AsyncUtil.Queue();
491 * The singleton instance of VolumeManager. Initialized by the first invocatio
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/
background.js 9 * @param {VolumeManager} volumeManager Volume manager.
11 function BackgroundComponents(stringData, volumeManager) {
20 * @type {VolumeManager}
22 this.volumeManager = volumeManager;
39 // VolumeManager should be obtained after stringData initialized.
42 VolumeManager.getInstance(fulfill);
  /external/chromium_org/chrome/browser/ui/views/
select_file_dialog_extension_browsertest.cc 119 EXPECT_TRUE(file_manager::VolumeManager::Get(

Completed in 190 milliseconds

1 2