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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/unittests/ADT/
TwineTest.cpp 85 SmallString<8> storage; local
86 EXPECT_EQ(0, *Twine("hello").toNullTerminatedStringRef(storage).end());
88 *Twine(StringRef("hello")).toNullTerminatedStringRef(storage).end());
90 .toNullTerminatedStringRef(storage)
  /external/swiftshader/third_party/LLVM/unittests/ADT/
TwineTest.cpp 78 SmallString<8> storage; local
79 EXPECT_EQ(0, *Twine("hello").toNullTerminatedStringRef(storage).end());
81 *Twine(StringRef("hello")).toNullTerminatedStringRef(storage).end());
  /system/chre/platform/include/chre/platform/
memory_impl.h 27 auto *storage = static_cast<T *>(memoryAlloc(sizeof(T))); local
28 if (storage != nullptr) {
29 new(storage) T(std::forward<Args>(args)...);
32 return storage;
  /system/nvram/core/tests/
fake_storage.h 20 #include <nvram/core/storage.h>
23 namespace storage { namespace in namespace:nvram
25 // Setup the header storage read functions to return Status::kStorageError.
28 // Setup the header storage write functions to return Status::kStorageError.
31 // Setup the storage read calls for space |index| to return
35 // Setup the storage write calls for space |index| to return
39 // Clears all storage.
42 } // namespace storage
  /external/libcxx/test/std/atomics/atomics.flag/
default.pass.cpp 31 TEST_ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
32 A& zero = *new (storage) A();
  /prebuilts/ndk/r11/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/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/atomics/atomics.flag/
default.pass.cpp 29 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
30 A& zero = *new (storage) A();
  /art/runtime/base/
arena_bit_vector.h 38 void* storage = arena->template Alloc<ArenaBitVector>(kind); local
39 return new (storage) ArenaBitVector(arena, start_bits, expandable, kind);
  /external/libcxx/test/std/atomics/atomics.types.generic/
bool.pass.cpp 231 TEST_ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
232 A& zero = *new (storage) A();
address.pass.cpp 126 TEST_ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
127 A& zero = *new (storage) A();
integral.pass.cpp 156 TEST_ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
157 A& zero = *new (storage) A();
  /external/libmojo/mojo/public/cpp/bindings/
string_traits.h 20 const char* storage() const { return data_->storage(); } function in class:mojo::StringDataView
  /external/skia/src/core/
SkDrawLooper.cpp 17 char storage[48]; local
18 SkArenaAlloc alloc {storage};
41 char storage[48]; local
42 SkArenaAlloc alloc {storage};
SkRasterizer.cpp 18 SkIRect storage; local
29 storage = clipBounds->makeOutset(margin.fX, margin.fY);
30 clipBounds = &storage;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.generic/
bool.pass.cpp 225 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
226 A& zero = *new (storage) A();
address.pass.cpp 118 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
119 A& zero = *new (storage) A();
integral.pass.cpp 149 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
150 A& zero = *new (storage) A();
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/atomics/atomics.types.generic/
bool.pass.cpp 229 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
230 A& zero = *new (storage) A();
address.pass.cpp 124 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
125 A& zero = *new (storage) A();
integral.pass.cpp 154 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
155 A& zero = *new (storage) A();
  /system/nvram/core/include/nvram/core/
storage.h 27 namespace storage { namespace in namespace:nvram
29 // Indicates the result of a storage operation.
33 kStorageError, // Failure on the underlying storage layer.
36 // Load NVRAM header from storage. See the comment on LoadSpace() for details on
40 // Write the binary-encoded NVRAM header |blob| to storage. See the comment on
44 // Load NVRAM space data for a given index from storage.
47 // operation If there is evidence that no header data is present in the storage
53 // implementations to write at block granularity of the underlying storage
57 // Write the NVRAM space data for the given index to storage.
65 // It's OK for the implementation to allocate a larger storage area tha
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_container.h 58 storage_t storage; member in struct:__anon38533
  /frameworks/base/core/java/android/os/storage/
StorageManagerInternal.java 17 package android.os.storage;
27 * Policy that influences how external storage is mounted and reported.
31 * Gets the external storage mount mode for the given uid.
45 * Gets whether external storage should be reported to the given UID.
47 * @param uid The UID for which to determine whether it has external storage.
49 * @return Weather to report external storage.
50 * @return True to report the state of external storage, false to
57 * Adds a policy for determining how external storage is mounted and reported.
  /frameworks/base/services/core/java/com/android/server/storage/
AppFuseBridge.java 17 package com.android.server.storage;
DeviceStorageMonitorInternal.java 17 package com.android.server.storage;

Completed in 735 milliseconds

1 2 3 4 5 6 7 8 91011>>