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

1 2 3 4 5 6 7 8 91011>>

  /external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/storage/
PrimaryType2.java 1 package com.github.javaparser.storage;
Z.java 1 package com.github.javaparser.storage
PrimaryType.java 1 package com.github.javaparser.storage;
  /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/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();
  /packages/apps/Dialer/java/com/android/dialer/storage/
Unencrypted.java 16 package com.android.dialer.storage;
20 /** Annotation for retrieving unencrypted storage objects. */
StorageModule.java 16 package com.android.dialer.storage;
27 /** Module for the storage component. */
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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();
  /art/test/064-field-access/src/
OOMEOnNullAccess.java 37 static ArrayList<Object> storage = new ArrayList<>(100000); field in class:OOMEOnNullAccess
48 storage.add(new byte[l]);
56 storage.clear();
59 storage.clear();
63 storage.clear();
  /art/runtime/base/
arena_bit_vector.h 38 void* storage = allocator->template Alloc<ArenaBitVector>(kind); local
39 return new (storage) ArenaBitVector(allocator, 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_data_view.h 24 const char* storage() const { return data_->storage(); } function in class:mojo::StringDataView
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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();
  /system/chre/util/include/chre/util/
memory_impl.h 114 auto *storage = static_cast<T *>(memoryAlloc(sizeof(T))); local
115 if (storage != nullptr) {
116 new(storage) T(std::forward<Args>(args)...);
119 return storage;
  /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...]
  /art/test/044-proxy/src/
OOMEOnDispatch.java 27 static ArrayList<Object> storage = new ArrayList<>(100000); field in class:OOMEOnDispatch
43 storage.add(new byte[l]);
51 storage.clear();
54 storage.clear();
62 storage.clear();
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
BackupInterface.java 17 package com.android.verifiedboot.storage;
DefaultOsBackupImpl.java 17 package com.android.verifiedboot.storage;
24 import com.android.verifiedboot.storage.BackupInterface;
  /external/libmtp/examples/
folders.c 77 LIBMTP_devicestorage_t *storage; local
109 for (storage = device->storage; storage != 0; storage = storage->next) {
112 printf("Storage: %s\n", storage->StorageDescription);
113 folders = LIBMTP_Get_Folder_List_For_Storage(device, storage->id);
  /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;

Completed in 538 milliseconds

1 2 3 4 5 6 7 8 91011>>