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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/
generate_clients.sh 3 gen_client --discovery_url=storage.v1 --overwrite --outdir=storage --root_package=. client
  /frameworks/base/core/java/android/os/storage/
DiskInfo.aidl 17 package android.os.storage;
StorageVolume.aidl 17 package android.os.storage;
VolumeInfo.aidl 17 package android.os.storage;
MountServiceListener.java 17 package android.os.storage;
26 * USB Mass storage connection state has changed.
34 * Storage state has changed.
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...]
  /external/expat/tests/
chardata.c 31 CharData_Init(CharData *storage)
33 assert(storage != NULL);
34 storage->count = -1;
38 CharData_AppendString(CharData *storage, const char *s)
40 int maxchars = sizeof(storage->data) / sizeof(storage->data[0]);
45 if (storage->count < 0)
46 storage->count = 0;
47 if ((len + storage->count) > maxchars) {
48 len = (maxchars - storage->count)
    [all...]
chardata.h 25 void CharData_Init(CharData *storage);
27 void CharData_AppendString(CharData *storage, const char *s);
29 void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len);
31 int CharData_CheckString(CharData *storage, const char *s);
33 int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorInternal.java 17 package com.android.server.storage;
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.tycho.noopsecurity_0.20.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.tycho.noopsecurity_0.18.1.jar 
  /hardware/intel/common/libwsbm/src/
wsbm_manager.c 74 struct _WsbmBufStorage *storage; member in struct:_WsbmBufferObject
360 struct _WsbmBufStorage *storage; local
362 storage = buf->storage;
363 if (!storage)
366 (void)storage->pool->waitIdle(storage, lazy);
372 struct _WsbmBufStorage *storage = buf->storage; local
376 retval = storage->pool->map(storage, mode, &virtual)
384 struct _WsbmBufStorage *storage = buf->storage; local
395 struct _WsbmBufStorage *storage = buf->storage; local
403 struct _WsbmBufStorage *storage = buf->storage; local
411 struct _WsbmBufStorage *storage = buf->storage; local
419 struct _WsbmBufStorage *storage = buf->storage; local
427 struct _WsbmBufStorage *storage = buf->storage; local
449 struct _WsbmBufStorage *storage = buf->storage; local
491 struct _WsbmBufStorage *storage; local
620 struct _WsbmBufStorage *storage; local
746 struct _WsbmBufStorage *storage = buf->storage; local
774 struct _WsbmBufStorage *storage = buf->storage; local
820 struct _WsbmBufStorage *storage = buf->storage; local
883 struct _WsbmBufStorage *storage = buf->storage; local
935 struct _WsbmBufStorage *storage; local
1125 struct _WsbmBufStorage *storage = buf->storage; local
1158 struct _WsbmBufStorage *storage; local
1177 struct _WsbmBufStorage *storage; local
1197 struct _WsbmBufStorage *storage; local
1222 struct _WsbmBufStorage *storage; local
1250 struct _WsbmBufStorage *storage; local
1283 struct _WsbmBufStorage *storage; local
1354 struct _WsbmBufStorage *storage = buf->storage; local
    [all...]
wsbm_pool.h 86 wsbmBufStorageInit(struct _WsbmBufStorage *storage,
89 int ret = WSBM_MUTEX_INIT(&storage->mutex);
93 storage->pool = pool;
94 wsbmAtomicSet(&storage->refCount, 1);
95 wsbmAtomicSet(&storage->onList, 0);
96 storage->destroyContainer = NULL;
101 wsbmBufStorageTakedown(struct _WsbmBufStorage *storage)
103 WSBM_MUTEX_FREE(&storage->mutex);
109 struct _WsbmBufStorage *storage = *pStorage; local
112 if (storage == NULL
    [all...]
  /frameworks/base/core/jni/android/graphics/
CreateJavaOutputStreamAdaptor.h 17 * @param storage Java byte array for retrieving data from the
25 jbyteArray storage);
31 * @param storage Java byte array for retrieving data from the
37 jbyteArray storage);
40 jbyteArray storage);
  /system/connectivity/shill/
property_store_unittest.h 77 bool* storage, Error* error) {
78 return store.GetBoolProperty(name, storage, error);
82 int16_t* storage, Error* error) {
83 return store.GetInt16Property(name, storage, error);
87 int32_t* storage, Error* error) {
88 return store.GetInt32Property(name, storage, error);
92 std::string* storage, Error* error) {
93 return store.GetStringProperty(name, storage, error);
97 Stringmap* storage, Error* error) {
98 return store.GetStringmapProperty(name, storage, error)
    [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...]
  /external/autotest/client/site_tests/hardware_UsbMount/
hardware_UsbMount.py 10 from cros import storage as storage_mod
37 @param filter_dict: storage dictionary filter.
43 storage = self.wait_for_device(filter_dict, cycles=1,
46 if not os.path.ismount(storage['mountpoint']):
49 storage_filter = {'fs_uuid': storage['fs_uuid']}
51 # everytime the storage device is un-mounted.
52 self._tmpfile = os.path.join(storage['mountpoint'],
61 logging.debug('storage to umount %s', storage)
64 self.scanner.umount_volume(storage_dict=storage)
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
Model.cpp 51 cv::FileStorage storage(path, cv::FileStorage::WRITE);
52 storage << "points_3d" << points3dmatrix;
53 storage << "points_2d" << points2dmatrix;
54 storage << "keypoints" << list_keypoints_;
55 storage << "descriptors" << descriptors_;
57 storage.release();
65 cv::FileStorage storage(path, cv::FileStorage::READ);
66 storage["points_3d"] >> points3d_mat;
67 storage["descriptors"] >> descriptors_;
71 storage.release()
    [all...]
  /external/mesa3d/src/glsl/tests/
copy_constant_to_storage_tests.cpp 32 copy_constant_to_storage(union gl_constant_value *storage,
49 gl_constant_value storage[17]; member in class:copy_constant_to_storage
72 const unsigned red_zone_size = Elements(storage) - val->type->components();
73 fill_storage_array_with_sentinels(storage,
77 linker::copy_constant_to_storage(storage,
82 verify_data(storage, 0, val, red_zone_size);
91 const unsigned red_zone_size = Elements(storage) - val->type->components();
92 fill_storage_array_with_sentinels(storage,
96 linker::copy_constant_to_storage(storage,
101 verify_data(storage, 0, val, red_zone_size)
    [all...]
  /external/libcxx/test/std/atomics/atomics.flag/
default.pass.cpp 29 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
30 A& zero = *new (storage) A();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.flag/
default.pass.cpp 26 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
27 A& zero = *new (storage) A();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
storage.h 7 #warning Your code should include objbase.h instead of storage.h header file.
  /external/v8/src/base/
lazy-instance.h 102 static T* MutableInstance(StorageType* storage) {
103 return reinterpret_cast<T*>(storage);
107 static void InitStorageUsingTrait(StorageType* storage) {
108 ConstructTrait::Construct(MutableInstance(storage));
117 static T* MutableInstance(StorageType* storage) {
118 return *storage;
122 static void InitStorageUsingTrait(StorageType* storage) {
123 *storage = CreateTrait::Create();
146 template <typename Function, typename Storage>
147 static void Init(OnceType* once, Function function, Storage storage)
    [all...]
  /device/google/marlin/dataservices/datatop/src/
datatop_single_line_poll.c 147 * @param storage dtop_single_line_vars struct that holds relevant dpg variables.
150 *data_points, struct dtop_single_line_vars *storage)
158 dpg->priv = (struct dtop_single_line_vars *)storage;
159 dpg->data_points_len = storage->line_count;
172 * @param storage dtop_single_line_vars struct where relevant variables are stored.
174 int dtop_single_line_search(char *name, struct dtop_single_line_vars *storage)
178 int *line_len = malloc(sizeof(int) * storage->line_count);
183 storage->line = malloc(storage->line_count * sizeof(*storage->line))
239 struct dtop_single_line_vars *storage = malloc local
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpServer.java 62 public void addStorage(MtpStorage storage) {
63 native_add_storage(storage);
66 public void removeStorage(MtpStorage storage) {
67 native_remove_storage(storage.getStorageId());
76 private native final void native_add_storage(MtpStorage storage);

Completed in 375 milliseconds

1 2 3 4 5 6 7 8 91011>>