OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VolumeManager
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/resources/file_manager/background/js/
volume_manager.js
323
*
VolumeManager
is responsible for tracking list of mounted volumes.
328
function
VolumeManager
() {
343
// The status should be merged into
VolumeManager
.
359
VolumeManager
.prototype.onDriveConnectionStatusChanged_ = function() {
370
VolumeManager
.prototype.getDriveConnectionState = function() {
375
*
VolumeManager
extends cr.EventTarget.
377
VolumeManager
.prototype.__proto__ = cr.EventTarget.prototype;
383
VolumeManager
.TIMEOUT = 15 * 60 * 1000;
390
VolumeManager
.getInstanceQueue_ = new AsyncUtil.Queue();
393
* The singleton instance of
VolumeManager
. Initialized by the first invocatio
[
all
...]
/system/vold/
VolumeManager.h
53
class
VolumeManager
{
55
static
VolumeManager
*sInstance;
71
virtual ~
VolumeManager
();
134
static
VolumeManager
*Instance();
153
VolumeManager
();
VolumeManager.cpp
42
#include "
VolumeManager
.h"
55
VolumeManager
*
VolumeManager
::sInstance = NULL;
57
VolumeManager
*
VolumeManager
::Instance() {
59
sInstance = new
VolumeManager
();
63
VolumeManager
::
VolumeManager
() {
75
VolumeManager
::~
VolumeManager
() {
[
all
...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
volume_manager.cc
142
VolumeManager
::
VolumeManager
(
155
VolumeManager
::~
VolumeManager
() {
158
VolumeManager
*
VolumeManager
::Get(content::BrowserContext* context) {
162
void
VolumeManager
::Initialize() {
209
base::Bind(&
VolumeManager
::OnExternalStorageDisabledChanged,
213
void
VolumeManager
::Shutdown() {
221
void
VolumeManager
::AddObserver(VolumeManagerObserver* observer)
[
all
...]
volume_manager.h
95
class
VolumeManager
: public BrowserContextKeyedService,
99
VolumeManager
(Profile* profile,
103
virtual ~
VolumeManager
();
106
static
VolumeManager
* Get(content::BrowserContext* context);
159
DISALLOW_COPY_AND_ASSIGN(
VolumeManager
);
Completed in 205 milliseconds