Searched refs:params (Results 1 - 17 of 17) sorted by relevance

/art/tools/ahat/src/
H A DQuery.java91 Map<String, String> params = new TreeMap<String, String>(mParams);
92 params.put(name, value);
94 for (Map.Entry<String, String> entry : params.entrySet()) {
/art/test/913-heaps/
H A Dheaps.cc839 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(extensions[i].params[j].name));
841 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(extensions[i].params));
862 CHECK_EQ(strcmp("tag", extensions[i].params[0].name), 0);
863 CHECK_EQ(extensions[i].params[0].base_type, JVMTI_TYPE_JLONG);
864 CHECK_EQ(extensions[i].params[0].kind, JVMTI_KIND_IN);
866 CHECK_EQ(strcmp("heap_id", extensions[i].params[1].name), 0);
867 CHECK_EQ(extensions[i].params[1].base_type, JVMTI_TYPE_JINT);
868 CHECK_EQ(extensions[i].params[1].kind, JVMTI_KIND_OUT);
869 CHECK_EQ(extensions[i].params[1].null_ok, false);
884 CHECK_EQ(strcmp("heap_id", extensions[i].params[
[all...]
/art/runtime/
H A Ddex_file-inl.h182 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); local
185 DCHECK_EQ(params == nullptr, rhs_params == nullptr);
186 if (params != nullptr) {
187 uint32_t params_size = params->Size();
190 const DexFile::TypeId& param_id = dex_file_->GetTypeId(params->GetTypeItem(i).type_idx_);
H A Ddex_file.cc1338 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); local
1340 if (params == nullptr) {
1344 for (uint32_t i = 0; i < params->Size(); ++i) {
1345 result += dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_);
1354 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); local
1355 return (params != nullptr) ? params->Size() : 0;
1372 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); local
1373 if (params != nullptr) {
1374 for (uint32_t i = 0; i < params
[all...]
H A Dart_method.cc551 bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) { argument
558 auto param_len = params != nullptr ? params->GetLength() : 0u;
570 if (type != params->GetWithoutChecks(i)) {
H A Dreflection.cc366 const DexFile::TypeList* params = m->GetParameterTypeList(); local
367 if (params == nullptr) {
371 uint32_t num_params = params->Size();
379 dex::TypeIndex type_idx = params->GetTypeItem(i).type_idx_;
H A Dart_method.h593 bool EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params)
/art/runtime/gc/space/
H A Dmemory_tool_malloc_space.h56 MemoryToolMallocSpace(MemMap* mem_map, size_t initial_size, Params... params);
H A Dmemory_tool_malloc_space-inl.h242 MemMap* mem_map, size_t initial_size, Params... params) : S(mem_map, initial_size, params...) {
241 MemoryToolMallocSpace( MemMap* mem_map, size_t initial_size, Params... params) argument
/art/runtime/native/
H A Djava_lang_reflect_Executable.cc284 const DexFile::TypeList* params = method->GetParameterTypeList(); local
285 if (params == nullptr) {
289 const uint32_t num_params = params->Size();
302 const dex::TypeIndex type_idx = params->GetTypeItem(i).type_idx_;
319 const DexFile::TypeList* params = method->GetParameterTypeList(); local
320 return (params == nullptr) ? 0 : params->Size();
/art/compiler/linker/arm/
H A Drelative_patcher_arm_base.h75 ThunkKey(ThunkType type, ThunkParams params) : type_(type), params_(params) { } argument
/art/compiler/linker/arm64/
H A Drelative_patcher_arm64.cc344 ThunkParams params; local
347 params.offset_params.base_reg = BakerReadBarrierFirstRegField::Decode(value);
348 CheckValidReg(params.offset_params.base_reg);
349 params.offset_params.holder_reg = BakerReadBarrierSecondRegField::Decode(value);
350 CheckValidReg(params.offset_params.holder_reg);
353 params.root_params.root_reg = BakerReadBarrierFirstRegField::Decode(value);
354 CheckValidReg(params.root_params.root_reg);
355 params.root_params.dummy = 0u;
370 params);
/art/runtime/openjdkjvmti/
H A DOpenjdkJvmTi.cc1104 const std::vector<CParamInfo>& params,
1133 func_info.params = params_ptr.get();
1137 JvmtiUniquePtr<char[]> param_name = CopyString(env, params[i].name, &error);
1141 func_info.params[i].name = param_name.get();
1144 func_info.params[i].kind = params[i].kind;
1145 func_info.params[i].base_type = params[i].base_type;
1146 func_info.params[i].null_ok = params[
[all...]
/art/test/046-reflect/src/
H A DMain.java35 Class<?>[] params, exceptions;
41 params = meth.getParameterTypes();
42 for (i = 0; i < params.length; i++)
43 System.out.println(" Arg " + i + ": " + params[i].getName());
525 System.out.println("generic method " + method.getName() + " params='"
535 System.out.println("generic ctor " + ctor.getName() + " params='"
/art/runtime/interpreter/
H A Dinterpreter_common.cc996 const DexFile::TypeList* params = method->GetParameterTypeList(); local
1022 const dex::TypeIndex type_idx = params->GetTypeItem(shorty_pos).type_idx_;
/art/runtime/openjdkjvmti/include/
H A Djvmti.h640 jvmtiParamInfo* params; member in struct:_jvmtiExtensionFunctionInfo
649 jvmtiParamInfo* params; member in struct:_jvmtiExtensionEventInfo
/art/runtime/verifier/
H A Dmethod_verifier.cc4539 const DexFile::TypeList* params = res_method->GetParameterTypeList(); local
4540 size_t params_size = params == nullptr ? 0 : params->Size();
4556 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);

Completed in 2304 milliseconds