HomeSort by relevance Sort by last modified time
    Searched full:storage (Results 26 - 50 of 6397) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/storage/
StorageResultCode.java 17 package android.os.storage;
29 * @see android.os.storage.StorageManager
35 * @see android.os.storage.StorageManager
41 * @see android.os.storage.StorageManager
47 * @see android.os.storage.StorageManager
53 * @see android.os.storage.StorageManager
58 * Operation failed: Storage not mounted.
59 * @see android.os.storage.StorageManager
64 * Operation failed: Storage is mounted.
65 * @see android.os.storage.StorageManage
    [all...]
package.html 4 Contains classes for the system storage service, which manages binary asset filesystems
  /external/chromium_org/chrome/browser/extensions/api/storage/
storage_api.h 10 #include "chrome/browser/extensions/api/storage/settings_namespace.h"
11 #include "chrome/browser/extensions/api/storage/settings_observer.h"
31 virtual bool RunWithStorage(ValueStore* storage) = 0;
33 // Sets error_ or result_ depending on the value of a storage ReadResult, and
37 // Sets error_ depending on the value of a storage WriteResult, sends a
45 void AsyncRunWithStorage(ValueStore* storage);
57 DECLARE_EXTENSION_FUNCTION("storage.get", STORAGE_GET)
63 virtual bool RunWithStorage(ValueStore* storage) OVERRIDE;
68 DECLARE_EXTENSION_FUNCTION("storage.set", STORAGE_SET)
74 virtual bool RunWithStorage(ValueStore* storage) OVERRIDE
    [all...]
settings_namespace.h 14 // The namespaces of the storage areas.
16 LOCAL, // "local" i.e. chrome.storage.local
17 SYNC, // "sync" i.e. chrome.storage.sync
18 MANAGED, // "managed" i.e. chrome.storage.managed
  /external/clang/test/Parser/
opencl-storage-class.cl 5 static int a; // expected-error {{OpenCL does not support the 'static' storage class specifier}}
6 register int b; // expected-error {{OpenCL does not support the 'register' storage class specifier}}
7 extern int c; // expected-error {{OpenCL does not support the 'extern' storage class specifier}}
8 auto int d; // expected-error {{OpenCL does not support the 'auto' storage class specifier}}
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
retriever.h 32 class Storage;
35 // Storage* storage = ...;
38 // downloader, storage);
46 // Takes ownership of |downloader| and |storage|.
49 Storage* storage);
53 // for the data in storage first. If storage does not have the data for |key|,
54 // then downloads the data and places it in storage
    [all...]
  /external/chromium_org/webkit/browser/appcache/
mock_appcache_storage_unittest.cc 88 service.storage()->LoadCache(111, &delegate);
103 int64 cache_id = service.storage()->NewCacheId();
104 scoped_refptr<AppCache> cache(new AppCache(service.storage(), cache_id));
108 service.storage()->LoadCache(cache_id, &delegate);
117 MockAppCacheStorage* storage = local
118 reinterpret_cast<MockAppCacheStorage*>(service.storage());
121 service.storage()->LoadOrCreateGroup(manifest_url, &delegate);
129 EXPECT_TRUE(storage->stored_groups_.empty());
142 service.storage()->LoadOrCreateGroup(manifest_url, &delegate);
153 service.storage()->LoadOrCreateGroup(manifest_url, &delegate)
163 MockAppCacheStorage* storage = local
214 MockAppCacheStorage* storage = local
246 MockAppCacheStorage* storage = local
291 MockAppCacheStorage* storage = local
333 MockAppCacheStorage* storage = local
378 MockAppCacheStorage* storage = local
398 MockAppCacheStorage* storage = local
421 MockAppCacheStorage* storage = local
456 MockAppCacheStorage* storage = local
514 MockAppCacheStorage* storage = local
570 MockAppCacheStorage* storage = local
    [all...]
  /development/samples/browseable/StorageProvider/
_index.jd 1 page.tags="Storage access framework", storage, documents
  /external/chromium/chrome/browser/extensions/
extension_storage_apitest.cc 7 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, Storage) {
8 ASSERT_TRUE(RunExtensionTest("storage")) << message_;
  /external/chromium_org/third_party/skia/src/core/
SkTemplatesPriv.h 18 #define SK_PLACEMENT_NEW(result, classname, storage, storageSize) \
21 #define SK_PLACEMENT_NEW_ARGS(result, classname, storage, storageSize, args) \
25 #define SK_PLACEMENT_NEW(result, classname, storage, storagesize) \
30 result = new(storage) classname; \
36 #define SK_PLACEMENT_NEW_ARGS(result, classname, storage, storagesize, args) \
41 result = new(storage) classname args; \
52 SkAutoTPlacementDelete(T* obj, void* storage) : fObj(obj), fStorage(storage)
  /external/chromium_org/webkit/data/dom_storage/
README.txt 1 webcore_test_database.localstorage - This is a sample local storage database
2 generated by Chromium 17.0.963.38 beta (using the WebCore DOM Storage
  /external/skia/src/core/
SkTemplatesPriv.h 18 #define SK_PLACEMENT_NEW(result, classname, storage, storageSize) \
21 #define SK_PLACEMENT_NEW_ARGS(result, classname, storage, storageSize, args) \
25 #define SK_PLACEMENT_NEW(result, classname, storage, storagesize) \
30 result = new(storage) classname; \
36 #define SK_PLACEMENT_NEW_ARGS(result, classname, storage, storagesize, args) \
41 result = new(storage) classname args; \
52 SkAutoTPlacementDelete(T* obj, void* storage) : fObj(obj), fStorage(storage)
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
constants.js 8 * Key to access wallpaper rss in chrome.local.storage.
13 * Key to access wallpaper manifest in chrome.storage.local.
18 * Key to access user wallpaper info in chrome.storage.local.
23 * Key to access user wallpaper info in chrome.storage.sync.
34 * chrome.local.storage.
66 * Local storage.
68 WallpaperLocalStorage: chrome.storage.local,
71 * Sync storage.
73 WallpaperSyncStorage: chrome.storage.sync
  /external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.cpp 27 #include "core/storage/Storage.h"
36 PassRefPtr<Storage> Storage::create(Frame* frame, PassOwnPtr<StorageArea> storageArea)
38 return adoptRef(new Storage(frame, storageArea));
41 Storage::Storage(Frame* frame, PassOwnPtr<StorageArea> storageArea)
50 Storage::~Storage()
54 String Storage::anonymousIndexedGetter(unsigned index, ExceptionState& exceptionState
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
link_uniform_initializers.cpp 38 get_storage(gl_uniform_storage *storage, unsigned num_storage,
42 if (strcmp(name, storage[i].name) == 0)
43 return &storage[i];
50 copy_constant_to_storage(union gl_constant_value *storage,
58 storage[i].u = val->value.u[i];
62 storage[i].i = val->value.i[i];
65 storage[i].f = val->value.f[i];
68 storage[i].b = int(val->value.b[i]);
111 struct gl_uniform_storage *const storage = local
115 if (storage == NULL)
    [all...]
  /external/mesa3d/src/glsl/
link_uniform_initializers.cpp 38 get_storage(gl_uniform_storage *storage, unsigned num_storage,
42 if (strcmp(name, storage[i].name) == 0)
43 return &storage[i];
50 copy_constant_to_storage(union gl_constant_value *storage,
58 storage[i].u = val->value.u[i];
62 storage[i].i = val->value.i[i];
65 storage[i].f = val->value.f[i];
68 storage[i].b = int(val->value.b[i]);
111 struct gl_uniform_storage *const storage = local
115 if (storage == NULL)
    [all...]
  /docs/source.android.com/src/devices/tech/storage/
index.jd 1 page.title=External Storage Technical Information
19 <p>Android supports devices with external storage, which is defined to be a
20 case-insensitive and permissionless filesystem. External storage can be
22 by internal storage. Devices may contain multiple instances of external
23 storage, but currently only the primary external storage is exposed to
26 <p>External storage is managed by a combination of the <code>vold</code> init service and
28 <p>Mounting of physical external storage volumes is handled by <code>vold</code>, which
47 storage volumes that are managed by <code>vold</code>, the entries should have the
64 <p>External storage interactions at and above the framework level are handle
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
manifest.json 15 "storage": {
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
storage.html 5 to meet the specific storage needs of extensions.
6 It provides the same storage capabilities as the
7 <a href="https://developer.mozilla.org/en/DOM/Storage#localStorage">localStorage API</a>
13 (using <code>storage.sync</code>).</li>
24 can be read (using <code>storage.managed</code> with a
25 <a href="manifest/storage.html">schema</a>).</li>
29 <p>You must declare the "storage" permission in the <a
31 to use the storage API.
38 "storage"
49 <code>storage.sync</code> o
    [all...]
  /external/chromium_org/mojo/shell/
context.h 10 #include "mojo/shell/storage.h"
26 Storage* storage() { return &storage_; } function in class:mojo::shell::Context
36 Storage storage_;
  /external/chromium_org/native_client_sdk/src/build_tools/json/
naclsdk_manifest.json 11 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/1.15/sdk_tools.tgz",
19 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/1.15/sdk_tools.tgz",
27 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/1.15/sdk_tools.tgz",
45 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/gdb_builds/0.1/gdb-win-builds.tgz",
63 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_14_1052/naclsdk_mac.tgz",
71 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_14_1052/naclsdk_linux.tgz",
79 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_14_1052/naclsdk_win.exe",
97 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_15_1239/naclsdk_mac.tgz",
105 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_15_1239/naclsdk_linux.tgz",
113 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_15_1239/naclsdk_win.exe"
    [all...]
  /external/chromium_org/net/disk_cache/flash/
storage.h 14 class NET_EXPORT_PRIVATE Storage {
16 Storage(const base::FilePath& path, int32 size);
18 ~Storage();
30 DISALLOW_COPY_AND_ASSIGN(Storage);
  /external/chromium_org/third_party/skia/src/images/
SkStreamHelpers.cpp 12 size_t CopyStreamToStorage(SkAutoMalloc* storage, SkStream* stream) {
13 SkASSERT(storage != NULL);
18 void* dst = storage->reset(length);
37 void* dst = storage->reset(length);
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
README.txt 3 substantially different storage schema from fts1, so tables will need
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
README.txt 3 substantially different storage schema from fts1, so tables will need

Completed in 575 milliseconds

12 3 4 5 6 7 8 91011>>