Home
last modified time | relevance | path

Searched refs:result (Results 526 – 550 of 618) sorted by relevance

1...<<2122232425

/art/runtime/jni/
Djava_vm_ext.cc144 void SetResult(bool result) REQUIRES(!jni_on_load_lock_) { in SetResult() argument
148 jni_on_load_result_ = result ? kOkay : kFailed; in SetResult()
797 void JavaVMExt::UpdateGlobal(Thread* self, IndirectRef ref, ObjPtr<mirror::Object> result) { in UpdateGlobal() argument
799 globals_.Update(ref, result); in UpdateGlobal()
870 void JavaVMExt::UpdateWeakGlobal(Thread* self, IndirectRef ref, ObjPtr<mirror::Object> result) { in UpdateWeakGlobal() argument
872 weak_globals_.Update(ref, result); in UpdateWeakGlobal()
/art/libartbase/base/
Dmem_map.cc202 int result = TargetMUnmap(actual_ptr, byte_count); in CheckMapRequest() local
203 if (result == -1) { in CheckMapRequest()
614 int result = TargetMUnmap(base_begin_, real_base_size); in DoReset() local
615 if (result == -1) { in DoReset()
828 int result = madvise(base_begin_, base_size_, MADV_DONTNEED); in MadviseDontNeedAndZero() local
829 if (result == -1) { in MadviseDontNeedAndZero()
/art/tools/jvmti-agents/field-null-percent/
Dcheck-null-fields.py97 ppe.submit(kill_it, p.pid).result()
/art/test/804-class-extends-itself/smali/
DMain.smali45 move-result-object v0
/art/dex2oat/
Ddex2oat.cc748 JValue result; in ThreadLocalHashOverride() local
749 constructor->Invoke(self, args, sizeof(args), &result, /*shorty=*/ "VI"); in ThreadLocalHashOverride()
2499 bool result = true; in FlushCloseOutputFiles() local
2502 result &= FlushCloseOutputFile((*files)[i].get()); in FlushCloseOutputFiles()
2505 return result; in FlushCloseOutputFiles()
2903 std::unique_ptr<T> result = ReadCommentedInputStream<T>(*input_file, process); in ReadCommentedInputFromFile() local
2905 return result; in ReadCommentedInputFromFile()
3298 dex2oat::ReturnCode result; in Dex2oat() local
3300 result = CompileImage(*dex2oat); in Dex2oat()
3302 result = CompileApp(*dex2oat); in Dex2oat()
[all …]
/art/test/988-method-trace/src/art/
DTest988.java311 public static void notifyMethodExit(Executable m, boolean exception, Object result) {
321 results.add(new MethodReturn(m, result, cnt));
/art/openjdkjvmti/
Dti_search.cc310 jvmtiError result = AddToDexClassLoader(jvmti_env, classloader, seg.c_str()); in AddToDexClassLoaderInMemory() local
317 return result; in AddToDexClassLoaderInMemory()
Djvmti_weak_table-inl.h80 …iWeakTable<T>::GetTagSlowPath(art::Thread* self, art::ObjPtr<art::mirror::Object> obj, T* result) { in GetTagSlowPath() argument
86 return GetTagLocked(self, obj, result); in GetTagSlowPath()
/art/test/411-checker-hdiv-hrem-pow2/src/
DDivTest.java19 public static <T extends Number> void expectEquals(T expected, T result) { in expectEquals() argument
20 if (!expected.equals(result)) { in expectEquals()
21 throw new Error("Expected: " + expected + ", found: " + result); in expectEquals()
DRemTest.java19 public static <T extends Number> void expectEquals(T expected, T result) { in expectEquals() argument
20 if (!expected.equals(result)) { in expectEquals()
21 throw new Error("Expected: " + expected + ", found: " + result); in expectEquals()
/art/cmdline/
DREADME.md55 auto result = parser.parse(argv, argc));
56 if (result.isError()) {
57 std::cerr << result.getMessage() << std::endl;
242 When many arguments are parsed, the result is collapsed down to a `CmdlineResult` which acts as a
/art/runtime/
Dclass_linker.cc301 std::forward_list<Barrier*> result; in GetAndClearBarriers() local
302 result.swap(barriers_); in GetAndClearBarriers()
303 result.reverse(); // Return barriers in insertion order. in GetAndClearBarriers()
304 return result; in GetAndClearBarriers()
2843 /*out*/ ObjPtr<mirror::Class>* result) { in FindClassInSharedLibraries() argument
2857 if (!FindClassInBaseDexClassLoader(soa, self, descriptor, hash, temp_loader, result)) { in FindClassInSharedLibraries()
2860 if (*result != nullptr) { in FindClassInSharedLibraries()
2872 /*out*/ ObjPtr<mirror::Class>* result) { in FindClassInBaseDexClassLoader() argument
2875 *result = FindClassInBootClassLoaderClassPath(self, descriptor, hash); in FindClassInBaseDexClassLoader()
2888 if (!FindClassInBaseDexClassLoader(soa, self, descriptor, hash, h_parent, result)) { in FindClassInBaseDexClassLoader()
[all …]
Dstring_builder_append.cc358 ObjPtr<mirror::String> result = mirror::String::Alloc( in AppendF() local
361 return result; in AppendF()
Ddebugger.cc1092 jbyteArray result = env->NewByteArray(bytes.size()); in GetRecentAllocations() local
1093 if (result != nullptr) { in GetRecentAllocations()
1094 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0])); in GetRecentAllocations()
1096 return result; in GetRecentAllocations()
Dclass_loader_context_test.cc1645 std::set<const DexFile*> result = context->CheckForDuplicateDexFiles( in TEST_F() local
1647 ASSERT_EQ(0u, result.size()); in TEST_F()
1651 result = context->CheckForDuplicateDexFiles(dex1_raw); in TEST_F()
1652 ASSERT_EQ(0u, result.size()); in TEST_F()
1662 std::set<const DexFile*> result = context->CheckForDuplicateDexFiles(dex1_raw); in TEST_F() local
1663 ASSERT_EQ(1u, result.size()) << context->EncodeContextForOatFile(""); in TEST_F()
1664 ASSERT_EQ(dex1_raw[0], *(result.begin())); in TEST_F()
1676 std::set<const DexFile*> result = context->CheckForDuplicateDexFiles(dex1_raw); in TEST_F() local
1677 ASSERT_EQ(0u, result.size()); in TEST_F()
/art/test/569-checker-pattern-replacement/src/
DMain.java268 int result = s.setInstanceLongFieldReturnArg2(value, arg2); in setLongReturnArg2() local
269 return s.instanceLongField + result; in setLongReturnArg2()
/art/runtime/entrypoints/quick/
Dquick_field_entrypoints.cc410 mirror::Object* result = in artReadBarrierSlow() local
415 return result; in artReadBarrierSlow()
/art/dex2oat/driver/
Dcompiler_driver.cc960 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot(); in ShouldCompileBasedOnProfile() local
964 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true); in ShouldCompileBasedOnProfile()
967 return result; in ShouldCompileBasedOnProfile()
1435 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc); in IsSafeCast() local
1436 if (result) { in IsSafeCast()
1441 return result; in IsSafeCast()
1881 ClassStateTable::InsertResult result = in FastVerify() local
1883 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation(); in FastVerify()
2847 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref, in AddCompiledMethod() local
2850 CHECK(result == MethodTable::kInsertResultSuccess); in AddCompiledMethod()
[all …]
/art/oatdump/
Doatdump.cc630 bool result = dex_layout.ProcessDexFile(vdex_dex_file->GetLocation().c_str(), in Dump() local
635 if (!result) { in Dump()
2809 int result = DumpImage(space.get(), options, os); in DumpImages() local
2810 if (result != EXIT_SUCCESS) { in DumpImages()
2811 return result; in DumpImages()
2822 int result = DumpImage(image_space, options, os); in DumpImages() local
2823 if (result != EXIT_SUCCESS) { in DumpImages()
2824 return result; in DumpImages()
2954 bool result; in SymbolizeOat() local
2959 result = oat_symbolizer.Symbolize(); in SymbolizeOat()
[all …]
/art/compiler/optimizing/
Dssa_liveness_analysis.h774 LiveInterval* result = this; in GetLastSibling() local
775 while (result->next_sibling_ != nullptr) { in GetLastSibling()
776 result = result->next_sibling_; in GetLastSibling()
778 return result; in GetLastSibling()
/art/runtime/arch/arm/
Djni_entrypoints_arm.S45 mov r12, r0 @ save result in r12
/art/test/912-classes/src-art/art/
DTest912.java119 String[] result = getClassSignature(base); in testClass() local
120 System.out.println(Arrays.toString(result)); in testClass()
/art/tools/
Dlibcore_fugu_failures.txt11 result: EXEC_FAILED,
22 result: EXEC_FAILED,
/art/runtime/native/
Ddalvik_system_VMRuntime.cc123 ObjPtr<mirror::Array> result = mirror::Array::Alloc(soa.Self(), in VMRuntime_newNonMovableArray() local
128 return soa.AddLocalReference<jobject>(result); in VMRuntime_newNonMovableArray()
150 ObjPtr<mirror::Array> result = in VMRuntime_newUnpaddedArray() local
157 return soa.AddLocalReference<jobject>(result); in VMRuntime_newUnpaddedArray()
/art/tools/jvmti-agents/field-counts/
Dcount-fields.py97 ppe.submit(kill_it, p.pid).result()

1...<<2122232425