Lines Matching refs:exe_ctx

100 OptionValueProperties::GetValueForKey(const ExecutionContext *exe_ctx,
106 value_sp = GetPropertyAtIndex(exe_ctx, will_modify, idx)->GetValue();
111 OptionValueProperties::GetSubValue(const ExecutionContext *exe_ctx,
127 value_sp = GetValueForKey(exe_ctx, key, will_modify);
135 value_sp->GetSubValue(exe_ctx, sub_name.drop_front(), will_modify, error);
142 exe_ctx, sub_name.drop_front(experimental_len + 2), will_modify, error);
166 if (PredicateMatches(exe_ctx, predicate)) {
169 return value_sp->GetSubValue(exe_ctx, rest,
185 return value_sp->GetSubValue(exe_ctx, sub_name, will_modify, error);
194 Status OptionValueProperties::SetSubValue(const ExecutionContext *exe_ctx,
207 lldb::OptionValueSP value_sp(GetSubValue(exe_ctx, name, will_modify, error));
226 OptionValueProperties::GetProperty(const ExecutionContext *exe_ctx,
230 exe_ctx, will_modify,
235 const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const {
240 const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const {
241 const Property *setting = GetPropertyAtIndex(exe_ctx, will_modify, idx);
249 const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const {
250 OptionValueSP value_sp(GetPropertyValueAtIndex(exe_ctx, will_modify, idx));
258 const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const {
259 OptionValueSP value_sp(GetPropertyValueAtIndex(exe_ctx, will_modify, idx));
266 const ExecutionContext *exe_ctx, uint32_t idx) const {
267 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
275 const ExecutionContext *exe_ctx, uint32_t idx) const {
276 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
283 const ExecutionContext *exe_ctx, uint32_t idx, Args &args) const {
284 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
302 const ExecutionContext *exe_ctx, uint32_t idx, const Args &args) {
303 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx);
321 const ExecutionContext *exe_ctx, uint32_t idx, bool fail_value) const {
322 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
332 const ExecutionContext *exe_ctx, uint32_t idx, bool new_value) {
333 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx);
346 const ExecutionContext *exe_ctx, uint32_t idx) const {
347 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
354 const ExecutionContext *exe_ctx, uint32_t idx, int64_t fail_value) const {
355 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
365 const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) {
366 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx);
377 const ExecutionContext *exe_ctx, uint32_t idx) {
378 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx);
389 const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const {
390 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
400 const ExecutionContext *exe_ctx, uint32_t idx) const {
401 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
411 const ExecutionContext *exe_ctx, uint32_t idx,
413 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx);
424 const ExecutionContext *exe_ctx, uint32_t idx) const {
425 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
435 const ExecutionContext *exe_ctx, uint32_t idx) const {
436 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
446 const ExecutionContext *exe_ctx, uint32_t idx, int64_t fail_value) const {
447 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
457 const ExecutionContext *exe_ctx, uint32_t idx, int64_t new_value) {
458 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx);
468 const ExecutionContext *exe_ctx, uint32_t idx,
470 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
480 const ExecutionContext *exe_ctx, uint32_t idx, llvm::StringRef new_value) {
481 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx);
491 const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const {
492 OptionValueSP value_sp(GetPropertyValueAtIndex(exe_ctx, will_modify, idx));
499 const ExecutionContext *exe_ctx, uint32_t idx, uint64_t fail_value) const {
500 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
510 const ExecutionContext *exe_ctx, uint32_t idx, uint64_t new_value) {
511 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx);
552 void OptionValueProperties::DumpValue(const ExecutionContext *exe_ctx,
556 const Property *property = GetPropertyAtIndex(exe_ctx, false, i);
561 property->Dump(exe_ctx, strm, dump_mask);
568 Status OptionValueProperties::DumpPropertyValue(const ExecutionContext *exe_ctx,
575 GetSubValue(exe_ctx, property_path, will_modify, error));
583 value_sp->DumpValue(exe_ctx, strm, dump_mask);
593 const ExecutionContext *exe_ctx, bool will_modify, llvm::StringRef name) const {
607 property = GetProperty(exe_ctx, will_modify, key);
615 return sub_properties->GetPropertyAtPath(exe_ctx, will_modify,
668 OptionValueProperties::GetSubProperty(const ExecutionContext *exe_ctx,
670 lldb::OptionValueSP option_value_sp(GetValueForKey(exe_ctx, name, false));