Home
last modified time | relevance | path

Searched refs:Load (Results 1 – 25 of 39) sorted by relevance

12

/frameworks/base/cmds/incidentd/testdata/
Dkmsg.txt15 B - 545004 - Image Load, Start
18 B - 548725 - Image Load, Start
21 B - 550891 - Image Load, Start
24 B - 601704 - Image Load, Start
30 B - 602558 - Image Load, Start
33 B - 613568 - Image Load, Start
36 B - 624335 - Image Load, Start
38 B - 624548 - Image Load, Start
Dkmsg.txt.gz
/frameworks/base/libs/androidfw/tests/
DLoadedArsc_test.cpp48 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents)); in TEST()
74 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents)); in TEST()
98 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents)); in TEST()
118 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents)); in TEST()
144 LoadedArsc::Load(StringPiece(contents), nullptr /*loaded_idmap*/, false /*system*/, in TEST()
158 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents)); in TEST()
204 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents)); in TEST()
254 LoadedArsc::Load(StringPiece(contents), &loaded_idmap); in TEST()
DApkAssets_test.cpp39 ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk"); in TEST()
65 ApkAssets::Load(GetTestDataPath() + "/appaslib/appaslib.apk"); in TEST()
117 ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk"); in TEST()
127 ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk"); in TEST()
DAssetManager2_bench.cpp41 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path); in BM_AssetManagerLoadAssets()
64 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path); in BM_AssetManagerLoadFrameworkAssets()
132 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk"); in BM_AssetManagerGetBag()
180 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath); in BM_AssetManagerGetResourceLocales()
216 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath); in BM_AssetManagerSetConfigurationFramework()
DAttributeResolution_bench.cpp40 ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk"); in BM_ApplyStyle()
83 std::unique_ptr<const ApkAssets> framework_apk = ApkAssets::Load(kFrameworkPath); in BM_ApplyStyleFramework()
90 ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk"); in BM_ApplyStyleFramework()
DTheme_bench.cpp31 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath); in BM_ThemeApplyStyleFramework()
65 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath); in BM_ThemeGetAttribute()
DTheme_test.cpp37 system_assets_ = ApkAssets::Load(GetTestDataPath() + "/system/system.apk", true /*system*/); in SetUp()
40 style_assets_ = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk"); in SetUp()
43 libclient_assets_ = ApkAssets::Load(GetTestDataPath() + "/libclient/libclient.apk"); in SetUp()
46 lib_one_assets_ = ApkAssets::Load(GetTestDataPath() + "/lib_one/lib_one.apk"); in SetUp()
49 lib_two_assets_ = ApkAssets::Load(GetTestDataPath() + "/lib_two/lib_two.apk"); in SetUp()
DAssetManager2_test.cpp48 basic_assets_ = ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk"); in SetUp()
51 basic_de_fr_assets_ = ApkAssets::Load(GetTestDataPath() + "/basic/basic_de_fr.apk"); in SetUp()
54 style_assets_ = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk"); in SetUp()
57 lib_one_assets_ = ApkAssets::Load(GetTestDataPath() + "/lib_one/lib_one.apk"); in SetUp()
60 lib_two_assets_ = ApkAssets::Load(GetTestDataPath() + "/lib_two/lib_two.apk"); in SetUp()
63 libclient_assets_ = ApkAssets::Load(GetTestDataPath() + "/libclient/libclient.apk"); in SetUp()
69 system_assets_ = ApkAssets::Load(GetTestDataPath() + "/system/system.apk", true /*system*/); in SetUp()
72 app_assets_ = ApkAssets::Load(GetTestDataPath() + "/app/app.apk"); in SetUp()
DBenchmarkHelpers.cpp59 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path); in GetResourceBenchmark()
/frameworks/compile/libbcc/lib/
DRSInvariant.cpp127 } else if (auto Load = llvm::dyn_cast<llvm::LoadInst>(Inst)) { in markInvariantUserLoads() local
128 if (Use.get() == Load->getPointerOperand()) { in markInvariantUserLoads()
129 Load->setMetadata("invariant.load", EmptyMDNode); in markInvariantUserLoads()
/frameworks/rs/rsov/compiler/
DGlobalMergePass.cpp104 LoadInst *Load = new LoadInst(MergedGV, "", InsertBefore); in runOnModule() local
105 DEBUG(Load->dump()); in runOnModule()
106 Base = new BitCastInst(Load, PointerType::getUnqual(MergedTy), "", in runOnModule()
197 LoadInst *Load = LLVMIRBuilder.CreateLoad(MergedGV); in CreateInitFunction() local
198 LLVMIRBuilder.CreateMemCpy(Load, MergedInit, BufferSize, 0); in CreateInitFunction()
/frameworks/base/libs/androidfw/include/androidfw/
DLoadedArsc.h81 static std::unique_ptr<const LoadedPackage> Load(const Chunk& chunk,
198 static std::unique_ptr<const LoadedArsc> Load(const StringPiece& data,
DIdmap.h42 static std::unique_ptr<const LoadedIdmap> Load(const StringPiece& idmap_data);
DApkAssets.h40 static std::unique_ptr<const ApkAssets> Load(const std::string& path, bool system = false);
/frameworks/base/libs/androidfw/
DApkAssets.cpp46 std::unique_ptr<const ApkAssets> ApkAssets::Load(const std::string& path, bool system) { in Load() function in android::ApkAssets
65 std::unique_ptr<const LoadedIdmap> loaded_idmap = LoadedIdmap::Load(idmap_data); in LoadOverlay()
150 LoadedArsc::Load(data, loaded_idmap.get(), system, load_as_shared_library); in LoadImpl()
DLoadedArsc.cpp369 std::unique_ptr<const LoadedPackage> LoadedPackage::Load(const Chunk& chunk, in Load() function in android::LoadedPackage
631 LoadedPackage::Load(child_chunk, loaded_idmap, system_, load_as_shared_library); in LoadTable()
653 std::unique_ptr<const LoadedArsc> LoadedArsc::Load(const StringPiece& data, in Load() function in android::LoadedArsc
DIdmap.cpp118 std::unique_ptr<const LoadedIdmap> LoadedIdmap::Load(const StringPiece& idmap_data) { in Load() function in android::LoadedIdmap
/frameworks/rs/script_api/
Drs_matrix.spec217 summary: Load or copy a matrix
262 summary: Load a frustum projection matrix
276 summary: Load identity matrix
312 summary: Load an orthographic projection matrix
332 summary: Load a perspective projection matrix
348 summary: Load a rotation matrix
364 summary: Load a scaling matrix
379 summary: Load a translation matrix
Drs_graphics.spec814 summary: Load the model matrix for a bound fixed function vertex program
816 Load the model matrix for a currently bound fixed function
828 summary: Load the projection matrix for a bound fixed function vertex program
830 Load the projection matrix for a currently bound fixed function
842 summary: Load the texture matrix for a bound fixed function vertex program
844 Load the texture matrix for a currently bound fixed function
/frameworks/native/cmds/installd/
Dsystem_properties.h32 bool Load(const std::string& strFile) { in Load() function
/frameworks/rs/script_api/include/
Drs_matrix.rsh220 * rsMatrixLoad: Load or copy a matrix
268 * rsMatrixLoadFrustum: Load a frustum projection matrix
284 * rsMatrixLoadIdentity: Load identity matrix
329 * rsMatrixLoadOrtho: Load an orthographic projection matrix
348 * rsMatrixLoadPerspective: Load a perspective projection matrix
366 * rsMatrixLoadRotate: Load a rotation matrix
385 * rsMatrixLoadScale: Load a scaling matrix
402 * rsMatrixLoadTranslate: Load a translation matrix
/frameworks/native/services/vr/performanced/
Dcpu_set.h70 void Load(const std::string& cpuset_root);
/frameworks/base/core/jni/
Dandroid_content_res_ApkAssets.cpp49 apk_assets = ApkAssets::Load(path.c_str(), system); in NativeLoad()
/frameworks/native/cmds/dumpstate/
Ddumpstate.h134 void Load();

12