Home
last modified time | relevance | path

Searched refs:set (Results 151 – 175 of 223) sorted by relevance

123456789

/art/tools/
Dexternal_oj_libjdwp_art_failures.txt16 description: "Test fails due to static values not being set correctly.",
/art/runtime/
Dclass_loader_context.h173 std::set<const DexFile*> CheckForDuplicateDexFiles(
Dtrace.cc617 std::set<ArtMethod*> visited_methods; in FinishTracing()
819 bit_set->set(method->GetDexMethodIndex()); in RegisterMethod()
831 seen_threads_->set(tid); in RegisterThread()
990 std::set<ArtMethod*>* visited_methods) { in GetVisitedMethods()
1002 void Trace::DumpMethodList(std::ostream& os, const std::set<ArtMethod*>& visited_methods) { in DumpMethodList()
Druntime_options.def177 // Even with this option set, we will still only actually load the plugin
186 // This is set to true in frameworks/base/core/jni/AndroidRuntime.cpp.
Dclass_loader_context.cc541 std::set<std::string> canonical_locations; in RemoveLocationsFromClassPaths()
597 std::set<std::string> seen_locations; in EncodeClassPathContexts()
686 std::set<std::string> seen_locations; in EncodeContextInternal()
1406 std::set<const DexFile*> ClassLoaderContext::CheckForDuplicateDexFiles( in CheckForDuplicateDexFiles()
1411 std::set<const DexFile*> result; in CheckForDuplicateDexFiles()
Druntime.h675 void SetDisabledCompatChanges(const std::set<uint64_t>& disabled_changes) { in SetDisabledCompatChanges()
679 std::set<uint64_t> GetDisabledCompatChanges() const { in GetDisabledCompatChanges()
1178 std::set<uint64_t> disabled_compat_changes_;
Dmonitor.cc299 auto remove = [&](Thread*& set){ in RemoveFromWaitSet() argument
300 if (set != nullptr) { in RemoveFromWaitSet()
301 if (set == thread) { in RemoveFromWaitSet()
302 set = thread->GetWaitNext(); in RemoveFromWaitSet()
306 Thread* t = set; in RemoveFromWaitSet()
/art/test/
DAndroid.bp445 "2012-structural-redefinition-failures-jni-id/set-jni-id-used.cc",
750 "1912-get-set-local-primitive/src/art/Test1912.java",
751 "1913-get-set-local-objects/src/art/Test1913.java",
753 "1915-get-set-local-current-thread/src/art/Test1915.java",
754 "1916-get-set-current-frame/src/art/Test1916.java",
780 "1967-get-set-local-bad-slot/src/art/Test1967.java",
888 "1912-get-set-local-primitive/expected.txt",
889 "1913-get-set-local-objects/expected.txt",
891 "1915-get-set-local-current-thread/expected.txt",
892 "1916-get-set-current-frame/expected.txt",
[all …]
/art/build/apex/
Dart_apex_test.py260 self._expected_file_globs = set()
381 expected_paths = set()
384 expected_paths |= set(fnmatch.filter(paths, path_glob))
390 expected_paths |= set(fnmatch.filter(paths, dir_prefix + subpath_first_segment))
391 for unexpected_path in set(paths) - expected_paths:
DAndroid.bp25 // installed in `/system` for the ART Buildbot set-up to work properly. This is
153 // installed in `/system` for the ART Buildbot set-up to work properly. This is
306 // HOST_PREFER_32_BIT is set. We cannot simply use com.android.art.debug
/art/runtime/arch/arm/
Djni_entrypoints_arm.S83 // If we're coming directly from compiled code, it is LR, set further down.
/art/runtime/hprof/
Dhprof.cc497 void DumpFakeObjectArray(mirror::Object* obj, const std::set<mirror::Object*>& elements)
502 const std::set<mirror::Object*>& fake_roots)
1101 const std::set<mirror::Object*>& GetRoots() const { in DumpHeapObject()
1108 mutable std::set<mirror::Object*> roots_; in DumpHeapObject()
1417 void Hprof::DumpFakeObjectArray(mirror::Object* obj, const std::set<mirror::Object*>& elements) { in DumpFakeObjectArray()
1470 const std::set<mirror::Object*>& fake_roots) { in DumpHeapInstanceObject()
/art/test/912-classes/
Dclasses.cc492 static void SetOrCompare(JNIEnv* jni_env, jobject value, bool set) { in SetOrCompare() argument
499 if (set) { in SetOrCompare()
514 if (set) { in SetOrCompare()
/art/tools/jvmti-agents/titrace/
DREADME.md23 Normal applications require that `debuggable=true` to be set in their AndroidManifest.xml.
/art/runtime/base/
Dmutex.cc43 std::set<BaseMutex*>* all_mutexes;
190 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes; in BaseMutex()
194 *all_mutexes_ptr = new std::set<BaseMutex*>(); in BaseMutex()
211 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes; in DumpAll()
Dtiming_logger.cc122 std::set<Histogram<uint64_t>*, CompareHistorgramByTimeSpentDeclining> in DumpHistogram()
/art/libartbase/base/
Dstl_util.h129 bool ContainsElement(const std::set<T>& container, const T& value) { in ContainsElement()
Darena_containers.h65 using ArenaSet = std::set<T, Comparator, ArenaAllocatorAdapter<T>>;
/art/libprofile/profile/
Dprofile_compilation_info_test.cc1615 std::set<dex::TypeIndex> expected_classes; in TEST_F()
1616 std::set<uint16_t> expected_hot_methods; in TEST_F()
1617 std::set<uint16_t> expected_startup_methods; in TEST_F()
1618 std::set<uint16_t> expected_post_startup_methods; in TEST_F()
1632 std::set<dex::TypeIndex> classes; in TEST_F()
1633 std::set<uint16_t> hot_methods; in TEST_F()
1634 std::set<uint16_t> startup_methods; in TEST_F()
1635 std::set<uint16_t> post_startup_methods; in TEST_F()
/art/tools/tracefast-plugin/
Dtracefast.cc30 #error Must set one of TRACEFAST_TRAMPOLINE or TRACEFAST_INTERPRETER during build
/art/runtime/verifier/
Dmethod_verifier.h159 std::set<uint32_t> dex_registers;
/art/test/712-varhandle-invocations/util-src/
Dgenerate_java.py89 BOOLEAN_TYPE : set(),
96 DOUBLE_TYPE : set()
/art/tools/checker/
DREADME3 against a set of statements specified alongside the tests.
81 For convenience, several architectures can be specified as set after the
/art/runtime/gc/space/
Dlarge_object_space.h229 typedef std::set<AllocationInfo*, SortByPrevFree,
/art/dex2oat/
Dverifier_deps_test.cc1363 std::set<VerifierDeps::MethodResolution>* methods = &deps.methods_; in TEST_F()
1376 std::set<VerifierDeps::MethodResolution>* methods = &deps.methods_; in TEST_F()
1390 std::set<VerifierDeps::MethodResolution>* methods = &deps.methods_; in TEST_F()
1403 std::set<VerifierDeps::MethodResolution>* methods = &deps.methods_; in TEST_F()

123456789