/frameworks/base/cmds/bootanimation/iot/ |
D | BootAction.cpp | 67 void* loaded = nullptr; in init() local 68 if (!loadSymbol("boot_action_init", &loaded) || loaded == nullptr) { in init() 71 mLibInit = reinterpret_cast<libInit>(loaded); in init() 73 loaded = nullptr; in init() 74 if (!loadSymbol("boot_action_shutdown", &loaded) || loaded == nullptr) { in init() 77 mLibShutdown = reinterpret_cast<libShutdown>(loaded); in init() 81 loaded = nullptr; in init() 82 if (!loadSymbol("boot_action_start_part", &loaded) || loaded == nullptr) { in init() 86 mLibStartPart = reinterpret_cast<libStartPart>(loaded); in init() 109 bool BootAction::loadSymbol(const char* symbol, void** loaded) { in loadSymbol() argument [all …]
|
D | BootAction.h | 51 bool loadSymbol(const char* symbol, void** loaded);
|
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/ |
D | JavaAnalyzer.java | 81 JavaClass loaded = mClassCache.get(className); in findClassInternal() local 82 if (loaded != null) { in findClassInternal() 83 return loaded; in findClassInternal() 86 loaded = loadPrimitive(className); in findClassInternal() 87 if (loaded == null) { in findClassInternal() 95 loaded = new JavaClass(Class.forName(realClassName, false, mClassLoader)); in findClassInternal() 96 mClassCache.put(className, loaded); in findClassInternal() 98 loaded = loadRecursively(className); in findClassInternal() 99 mClassCache.put(className, loaded); in findClassInternal() 107 if (loaded == null) { in findClassInternal() [all …]
|
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/android/arch/persistence/room/integration/testapp/test/ |
D | PrimaryKeyTest.java | 57 IntegerAutoIncPKeyEntity loaded = mDatabase.integerPKeyDao().getMe(1); in integerTest() local 58 assertThat(loaded, notNullValue()); in integerTest() 59 assertThat(loaded.data, is(entity.data)); in integerTest() 68 IntegerAutoIncPKeyEntity loaded = mDatabase.integerPKeyDao().getMe(0); in dontOverrideNullable0() local 69 assertThat(loaded, notNullValue()); in dontOverrideNullable0() 70 assertThat(loaded.data, is(entity.data)); in dontOverrideNullable0() 78 IntAutoIncPKeyEntity loaded = mDatabase.intPKeyDao().getMe(1); in intTest() local 79 assertThat(loaded, notNullValue()); in intTest() 80 assertThat(loaded.data, is(entity.data)); in intTest()
|
D | EmbeddedTest.java | 226 PetCouple loaded = petCouples.get(0); in sameFieldType() local 227 assertThat(loaded.id, is("foo")); in sameFieldType() 228 assertThat(loaded.male, is(male)); in sameFieldType() 229 assertThat(loaded.getFemale(), is(female)); in sameFieldType() 241 PetCouple loaded = petCouples.get(0); in sameFieldOneNull() local 242 assertThat(loaded.id, is("foo")); in sameFieldOneNull() 243 assertThat(loaded.male, is(loneWolf)); in sameFieldOneNull() 244 assertThat(loaded.getFemale(), is(nullValue())); in sameFieldOneNull()
|
D | SimpleEntityReadWriteTest.java | 381 User loaded = mUserDao.load(3); in renamedField() local 382 assertThat(loaded.getCustomField(), is("foo laaa")); in renamedField() 383 assertThat(loaded, is(user)); in renamedField()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/job/ |
D | JobStoreTest.java | 152 JobStatus loaded = jobStatusSet.getAllJobs().iterator().next(); in testWritingTaskWithExtras() local 153 assertTasksEqual(task, loaded.getJob()); in testWritingTaskWithExtras() 170 JobStatus loaded = jobStatusSet.getAllJobs().iterator().next(); in testWritingTaskWithSourcePackage() local 171 assertEquals("Source package not equal.", loaded.getSourcePackageName(), in testWritingTaskWithSourcePackage() 173 assertEquals("Source user not equal.", loaded.getSourceUserId(), in testWritingTaskWithSourcePackage() 191 JobStatus loaded = jobStatusSet.getAllJobs().iterator().next(); in testWritingTaskWithFlex() local 192 assertEquals("Period not equal.", loaded.getJob().getIntervalMillis(), in testWritingTaskWithFlex() 194 assertEquals("Flex not equal.", loaded.getJob().getFlexMillis(), in testWritingTaskWithFlex() 222 JobStatus loaded = jobStatusSet.getAllJobs().iterator().next(); in testMassivePeriodClampedOnRead() local 228 loaded.getEarliestRunTime() <= newNowElapsed + TWO_HOURS); in testMassivePeriodClampedOnRead() [all …]
|
/frameworks/rs/cpu_ref/ |
D | rsCpuExecutable.cpp | 173 void *loaded = dlopen(fullPath, RTLD_NOW | RTLD_LOCAL); in loadAndDeleteSharedLibrary() local 174 if (loaded == nullptr) { in loadAndDeleteSharedLibrary() 184 return loaded; in loadAndDeleteSharedLibrary() 191 void *loaded = nullptr; in loadSharedLibrary() local 201 loaded = loadSOHelper(scriptSOName.c_str(), cacheDir, resName, alreadyLoaded); in loadSharedLibrary() 203 if (loaded == nullptr) { in loadSharedLibrary() 216 loaded = loadSOHelper(scriptSONameSystem.c_str(), cacheDir, in loadSharedLibrary() 218 if (loaded == nullptr) { in loadSharedLibrary() 225 return loaded; in loadSharedLibrary() 258 void *loaded = nullptr; in loadSOHelper() local [all …]
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/ |
D | AsyncListUtilTest.java | 139 int loaded = 0; in getLoadedItemCount() local 142 loaded++; in getLoadedItemCount() 145 return loaded; in getLoadedItemCount()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | DessertCaseView.java | 178 Bitmap loaded = null; in DessertCaseView() local 181 opts.inBitmap = loaded; in DessertCaseView() 182 loaded = BitmapFactory.decodeResource(res, resid, opts); in DessertCaseView() 183 final BitmapDrawable d = new BitmapDrawable(res, convertToAlphaMask(loaded)); in DessertCaseView() 189 loaded = null; in DessertCaseView()
|
/frameworks/layoutlib/rename_font/ |
D | README | 4 versions are loaded. As a workaround, we rename all the fonts that we ship with
|
/frameworks/av/services/mediacodec/seccomp_policy/ |
D | mediacodec-arm.policy | 20 # on ARM is statically loaded at 0xffff 0000. See
|
/frameworks/base/media/lib/tvremote/ |
D | README.txt | 13 This library is distributed in the system image, and loaded as
|
/frameworks/base/media/lib/signer/ |
D | README.txt | 15 This library is distributed in the system image, and loaded as
|
/frameworks/base/media/lib/remotedisplay/ |
D | README.txt | 13 This library is distributed in the system image, and loaded as
|
/frameworks/base/location/lib/ |
D | README.txt | 14 This library is distributed in the system image, and loaded as
|
/frameworks/base/cmds/bootanimation/ |
D | FORMAT.md | 49 Each part is scanned and loaded directly from the zip archive. Within a part directory, every file
|
/frameworks/rs/tests/java_api/Refocus/dataExtraction/ |
D | N5.txt | 4 07-30 19:27:05.166 20903-21523/com.example.xinyiwang.refocus V/RenderScript﹕ Successfully loaded r… 78 07-30 19:27:26.730 20903-21740/com.example.xinyiwang.refocus V/RenderScript﹕ Successfully loaded r… 150 07-30 19:29:38.517 20903-22922/com.example.xinyiwang.refocus V/RenderScript﹕ Successfully loaded r… 679 07-30 19:35:49.096 27224-27657/com.example.xinyiwang.refocus V/RenderScript﹕ Successfully loaded r… 754 07-30 19:37:02.005 27224-28541/com.example.xinyiwang.refocus V/RenderScript﹕ Successfully loaded r… 827 07-30 19:37:10.944 27224-28696/com.example.xinyiwang.refocus V/RenderScript﹕ Successfully loaded r… 901 07-30 19:38:16.595 27224-29497/com.example.xinyiwang.refocus V/RenderScript﹕ Successfully loaded r…
|
/frameworks/base/tools/aapt2/ |
D | readme.md | 156 configurations to a separate APK which can be loaded alongside the base APK on
|
/frameworks/compile/slang/ |
D | README.rst | 251 is loaded. This is useful to initialize data or anything else the
|
/frameworks/native/vulkan/doc/implementors_guide/ |
D | implementors_guide.adoc | 48 … private interfaces to the driver for this implementation. These will be loaded through the driver…
|
/frameworks/base/services/core/java/com/android/server/audio/ |
D | AudioService.java | 4965 boolean loaded = onLoadSoundEffects(); in handleMessage() 4969 reply.mStatus = loaded ? 0 : -1; in handleMessage()
|
/frameworks/rs/driver/runtime/ll32/ |
D | allocation.ll | 20 ; If we can ensure that all accesses to elements loaded from RenderScript
|
/frameworks/rs/driver/runtime/ll64/ |
D | allocation.ll | 22 ; If we can ensure that all accesses to elements loaded from RenderScript
|
/frameworks/wilhelm/doc/ |
D | Doxyfile | 851 # page has loaded. For this to work a browser that supports
|