HomeSort by relevance Sort by last modified time
    Searched defs:storage (Results 76 - 100 of 695) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
StorageSummaryDonutPreference.java 17 package com.android.settings.deviceinfo.storage;
22 import android.os.storage.StorageManager;
46 * StorageSummaryDonutPreference is a preference which summarizes the used and remaining storage left
47 * on a given storage volume. It is visualized with a donut graphing the % used.
UserIconLoader.java 17 package com.android.settings.deviceinfo.storage;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
ForgetPrivateConfirmFragment.java 17 package com.android.tv.settings.device.storage;
20 import android.os.storage.StorageManager;
21 import android.os.storage.VolumeRecord;
MoveAppProgressFragment.java 17 package com.android.tv.settings.device.storage;
  /packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/device/storage/
FormatActivityFormatReceiverTest.java 17 package com.android.tv.settings.device.storage;
31 import android.os.storage.DiskInfo;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
timers.cc 176 char storage[kStorageSize]; local
182 std::strftime(storage, sizeof(storage), "%x %X", ::localtime(&now));
187 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo);
191 written = std::strftime(storage, sizeof(storage), "%x %X", ::gmtime(&now));
196 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo);
201 return std::string(storage);
    [all...]
  /system/nvram/hal/
fake_nvram_storage.cpp 17 #include <nvram/core/storage.h>
32 // An NVRAM storage layer implementation backed by the file system.
40 // Name of the storage object holding the header.
43 // Pattern for space data storage object names.
58 // Formats the storage object name for the given space index.
65 nvram::storage::Status DeleteFile(const char* name) {
68 return nvram::storage::Status::kNotFound;
71 return nvram::storage::Status::kStorageError;
74 return nvram::storage::Status::kSuccess;
77 // Loads the storage object identified by |name|
168 namespace storage { namespace in namespace:nvram
    [all...]
memory_storage.cpp 17 #include <nvram/core/storage.h>
20 namespace storage { namespace in namespace:nvram
67 // Find the storage slot in |g_spaces| that corresponds to |index|. Returns
120 } // namespace storage
  /frameworks/base/services/core/java/com/android/server/pm/
UserDataPreparer.java 25 import android.os.storage.StorageManager;
26 import android.os.storage.VolumeInfo;
48 * Helper class for preparing and destroying user storage
67 * Prepare storage areas for given user on all mounted devices.
71 final StorageManager storage = mContext.getSystemService(StorageManager.class); local
72 for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
81 // Prepare storage and verify that serial numbers are consistent; if
83 final StorageManager storage = mContext.getSystemService(StorageManager.class); local
85 storage.prepareUserStorage(volumeUuid, userId, userSerial, flags);
102 // CE storage is available after they are prepared
127 final StorageManager storage = mContext.getSystemService(StorageManager.class); local
136 final StorageManager storage = mContext.getSystemService(StorageManager.class); local
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/apis/google-api-services-storage/v1-rev82-1.22.0/
google-api-services-storage-v1-rev82-1.22.0.jar 
  /art/openjdkjvmti/
ti_class_definition.cc 179 std::string storage; local
180 DequickenDexFile(dex_file, klass->GetDescriptor(&storage), dex_data);
  /art/runtime/jdwp/
jdwp_expand_buf.cc 39 uint8_t* storage; member in struct:art::JDWP::ExpandBuf
47 * Allocate a JdwpBuf and some initial storage.
51 newBuf->storage = reinterpret_cast<uint8_t*>(malloc(kInitialStorage));
58 * Free a JdwpBuf and associated storage.
65 free(pBuf->storage);
73 return pBuf->storage;
96 uint8_t* newPtr = reinterpret_cast<uint8_t*>(realloc(pBuf->storage, pBuf->maxLen));
101 pBuf->storage = newPtr;
111 gapStart = pBuf->storage + pBuf->curLen;
123 *(pBuf->storage + pBuf->curLen) = val
    [all...]
  /device/google/marlin/dataservices/datatop/src/
datatop_dual_line_poll.c 190 * @param storage dtop_dual_line_vars struct that hold relevant dpg variables.
194 *data_points, struct dtop_dual_line_vars *storage, int dp_count)
202 dpg->priv = (struct dtop_dual_line_vars *)storage;
216 * @param storage dtop_dual_line_vars struct where relevant variables are stored.
218 int dtop_dual_line_search(char *name, struct dtop_dual_line_vars *storage)
222 int *line_len = malloc(sizeof(int) * storage->line_count);
223 int *line_len2 = malloc(sizeof(int) * storage->line_count);
229 storage->line = malloc(storage->line_count * sizeof(*storage->line))
309 struct dtop_dual_line_vars *storage = malloc local
    [all...]
datatop_meminfo_file_poll.c 193 * @param storage dtop_meminfo_vars struct that holds relevant dpg variables.
196 *data_points, struct dtop_meminfo_vars *storage)
204 dpg->priv = (struct dtop_meminfo_vars *)storage;
205 dpg->data_points_len = storage->line_count;
217 * @param storage dtop_meminfo_vars struct where relevant variables are stored.
219 int dtop_meminfo_search(struct dtop_meminfo_vars *storage)
223 int *line_len = malloc(sizeof(int) * storage->line_count);
228 storage->line = malloc(storage->line_count * sizeof(*storage->line))
278 struct dtop_meminfo_vars *storage = malloc local
    [all...]
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...]
  /external/clang/test/Analysis/Inputs/
system-header-simulator-cxx-std-suppression.h 61 } storage; member in class:std::basic_string
77 return isLong ? storage.externalStorage : storage.localStorage;
81 // Fake deallocate stack-based storage.
88 // Fake deallocate stack-based storage, then use the variable in the
93 storage.assignExternal(new _CharT[4]);
  /external/clang/test/Analysis/
malloc.cpp 52 void **storage; member in class:PR13751::OwningVector
58 storage[length++] = Item;
  /external/clang/test/Index/
index-templates.cpp 40 struct storage { }; struct
156 // CHECK-LOAD: index-templates.cpp:40:8: ClassTemplate=storage:40:8 (Definition) Extent=[39:1 - 40:19]
  /external/deqp/framework/randomshaders/
rsgExecutionContext.cpp 63 ExecValueStorage* storage = m_varValues[variable]; local
65 if (!storage)
67 storage = new ExecValueStorage(variable->getType());
68 m_varValues[variable] = storage;
71 return storage->getValue(variable->getType());
  /external/gemmlowp/doc/
quantization_example.cc 157 : storage(rows * cols), matrix_map(storage.data(), rows, cols) {}
161 for (auto& x : storage) {
167 storage.data(), matrix_map.rows(), matrix_map.cols());
171 storage.data(), matrix_map.rows(), matrix_map.cols());
173 const std::vector<tScalar>& Storage() const { return storage; }
174 std::vector<tScalar>& Storage() { return storage; }
177 std::vector<tScalar> storage; member in class:MatrixWithStorage
    [all...]
  /external/gemmlowp/test/
test.h 81 storage.resize(size());
82 data_ = storage.data();
92 std::vector<Scalar> storage; member in class:gemmlowp::Matrix
  /external/libcxxabi/test/
test_vector2.pass.cpp 57 void *storage; member in struct:vec_on_stack
58 vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct )) {}
59 ~vec_on_stack () { __cxxabiv1::__cxa_vec_delete ( storage, 40, 8, throw_destruct ); }
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
GlobalStateImpl.java 19 package com.android.verifiedboot.storage;
  /external/libmtp/examples/
detect.c 133 LIBMTP_devicestorage_t *storage; local
228 for (storage = device->storage; storage != 0; storage = storage->next) {
233 storage->id,
  /external/llvm/include/llvm/ADT/
Optional.h 30 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
38 new (storage.buffer) T(y);
42 new (storage.buffer) T(*O);
46 new (storage.buffer) T(std::forward<T>(y));
50 new (storage.buffer) T(std::move(*O));
58 new (storage.buffer) T(std::move(y));
78 new (storage.buffer) T(std::forward<ArgTypes>(Args)...);
94 new (storage.buffer) T(y);
119 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
120 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer);
    [all...]

Completed in 699 milliseconds

1 2 34 5 6 7 8 91011>>