Lines Matching defs:mm
362 MetaMethod* mm = reinterpret_cast<MetaMethod*>(baseAddr_);
363 mm->name_ = WriteString(method->GetName());
364 mm->signature_ = WriteString(method->GetSignature());
365 mm->properties_ = method->IsOneway() ? METHOD_PROPERTY_ONEWAY : 0;
366 mm->returnTypeIndex_ = module_->IndexOf(method->GetReturnType());
368 mm->cacheable_ = method->GetCacheable();
369 if (mm->cacheable_ == true) {
370 mm->cacheabletime_ = method->GetCacheableTime();
372 mm->parameterNumber_ = static_cast<int>(parameterNumber);
375 mm->parameters_ = reinterpret_cast<MetaParameter**>(baseAddr_);
380 mm->parameters_[i] = WriteMetaParameter(method->GetParameter(i));
383 return mm;