Lines Matching refs:valobj_sp
142 auto valobj_sp = frame->FindVariable(ConstString(expr)); in DoExecute() local
143 if (valobj_sp && valobj_sp->GetError().Success()) { in DoExecute()
145 if (auto persisted_valobj = valobj_sp->Persist()) in DoExecute()
146 valobj_sp = persisted_valobj; in DoExecute()
159 valobj_sp->Dump(temp_result_stream, dump_options); in DoExecute()
164 valobj_sp->Dump(result.GetOutputStream(), dump_options); in DoExecute()
174 ValueObjectSP valobj_sp; in DoExecute() local
178 expr, exe_scope, valobj_sp, eval_options, &fixed_expression); in DoExecute()
197 if (valobj_sp->GetError().GetError() != UserExpression::kNoResult) { in DoExecute()
200 valobj_sp->Dump(temp_result_stream, dump_options); in DoExecute()
205 valobj_sp->Dump(result.GetOutputStream(), dump_options); in DoExecute()
211 target.GetPersistentVariable(valobj_sp->GetName())) { in DoExecute()
212 auto language = valobj_sp->GetPreferredDisplayLanguage(); in DoExecute()
220 if (valobj_sp) in DoExecute()
221 result.SetError(valobj_sp->GetError()); in DoExecute()