Searched refs:_output (Results 1 - 25 of 48) sorted by relevance

12

/haiku/src/kits/debugger/value/value_formatters/
H A DStringValueFormatter.cpp28 StringValueFormatter::FormatValue(Value* value, BString& _output) argument
30 _output = "\"";
39 _output << "\\0";
42 _output << "\\a";
45 _output << "\\b";
48 _output << "\\t";
51 _output << "\\r";
54 _output << "\\n";
57 _output << "\\f";
64 _output << buffe
[all...]
H A DBoolValueFormatter.cpp24 BoolValueFormatter::FormatValue(Value* _value, BString& _output) argument
30 _output.SetTo(value->GetValue() ? "true" : "false");
H A DFloatValueFormatter.cpp30 FloatValueFormatter::FormatValue(Value* _value, BString& _output) argument
51 _output.SetTo(buffer);
75 type_code type, Value*& _output) const
77 return _PerformValidation(input, type, _output, true);
83 ::Value*& _output, bool wantsValue) const
107 _output = new(std::nothrow) FloatValue(newValue);
108 if (_output == NULL)
82 _PerformValidation(const BString& input, type_code type, ::Value*& _output, bool wantsValue) const argument
H A DEnumerationValueFormatter.cpp25 EnumerationValueFormatter::FormatValue(Value* _value, BString& _output) argument
35 _output.SetTo(enumValue->Name());
40 return IntegerValueFormatter::FormatValue(_value, _output);
H A DIntegerValueFormatter.cpp44 IntegerValueFormatter::FormatValue(Value* _value, BString& _output) argument
59 _output.SetTo(buffer);
83 type_code type, Value*& _output) const
85 return _PerformValidation(input, type, _output, true);
91 ::Value*& _output, bool wantsValue) const
108 error = _ValidateUnsigned(input, type, _output, format, wantsValue);
110 error = _ValidateSigned(input, type, _output, wantsValue);
118 ::Value*& _output, bool wantsValue) const
162 _output = new(std::nothrow) IntegerValue(newValue);
163 if (_output
90 _PerformValidation(const BString& input, type_code type, ::Value*& _output, bool wantsValue) const argument
117 _ValidateSigned(const BString& input, type_code type, ::Value*& _output, bool wantsValue) const argument
172 _ValidateUnsigned(const BString& input, type_code type, ::Value*& _output, integer_format format, bool wantsValue) const argument
[all...]
/haiku/headers/private/debugger/value/value_formatters/
H A DFloatValueFormatter.h24 virtual status_t FormatValue(Value* value, BString& _output);
34 Value*& _output) const;
39 ::Value*& _output,
H A DEnumerationValueFormatter.h17 virtual status_t FormatValue(Value* value, BString& _output);
H A DIntegerValueFormatter.h30 virtual status_t FormatValue(Value* value, BString& _output);
40 Value*& _output) const;
45 ::Value*& _output,
49 ::Value*& _output,
53 ::Value*& _output,
H A DBoolValueFormatter.h24 virtual status_t FormatValue(Value* value, BString& _output);
H A DStringValueFormatter.h24 virtual status_t FormatValue(Value* value, BString& _output);
/haiku/src/kits/debugger/value/
H A DValueFormatter.cpp32 type_code type, Value*& _output) const
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageFamily.cpp46 ExpressionResult*& _output, ValueNode*& _neededNode)
48 _output = NULL;
52 _output = evaluator.Evaluate(expression, manager, info);
62 _output = new(std::nothrow) ExpressionResult();
63 if (_output == NULL)
65 _output->SetToPrimitive(value);
44 EvaluateExpression(const BString& expression, ValueNodeManager* manager, TeamTypeInformation* info, ExpressionResult*& _output, ValueNode*& _neededNode) argument
/haiku/src/kits/debugger/user_interface/util/
H A DUiUtils.cpp190 UiUtils::AreaProtectionFlagsToString(uint32 protection, BString& _output) argument
195 _output += name; \
198 _output += missing; \
200 _output.Truncate(0);
203 ADD_AREA_FLAG_IF_PRESENT(B_READ_AREA, protection, "r", _output,
205 ADD_AREA_FLAG_IF_PRESENT(B_WRITE_AREA, protection, "w", _output,
207 ADD_AREA_FLAG_IF_PRESENT(B_EXECUTE_AREA, protection, "x", _output,
221 _output, "-");
223 _output, "-");
225 _output, "
283 PrintValueNodeGraph(BString& _output, ValueNodeChild* child, int32 indentLevel, int32 maxDepth) argument
350 DumpMemory(BString& _output, int32 indentLevel, TeamMemoryBlock* block, target_addr_t address, int32 itemSize, int32 displayWidth, int32 count) argument
434 ParseRangeExpression(const BString& rangeExpression, int32 lowerBound, int32 upperBound, bool fixedRange, RangeList& _output) argument
541 FormatSIMDValue(const BVariant& value, uint32 bitSize, uint32 format, BString& _output) argument
586 SignalNameToString(int32 signal, BString& _output) argument
[all...]
/haiku/src/kits/debugger/debugger_interface/remote/
H A DRemoteDebugRequest.cpp50 RemoteDebugRequest::SaveToMessage(BMessage& _output) const
52 _output.MakeEmpty();
54 status_t error = _output.AddInt32("type", Type());
58 return SaveSpecificInfoToMessage(_output);
113 RemoteDebugResponse::SaveToMessage(BMessage& _output) const
115 _output.MakeEmpty();
117 status_t error = _output.AddInt32("type", Request()->Type());
121 error = _output.AddInt32("result", Result());
128 return SaveSpecificInfoToMessage(_output);
140 RemoteDebugResponse::SaveSpecificInfoToMessage(BMessage& _output) cons
[all...]
H A DRemoteDebugRequest.h59 status_t SaveToMessage(BMessage& _output) const;
69 BMessage& _output) const = 0;
89 status_t SaveToMessage(BMessage& _output) const;
104 virtual status_t SaveSpecificInfoToMessage(BMessage& _output) const;
132 BMessage& _output) const;
158 BMessage& _output) const;
182 BMessage& _output) const;
205 BMessage& _output) const;
229 BMessage& _output) const;
291 BMessage& _output) cons
[all...]
/haiku/headers/private/debugger/user_interface/util/
H A DUiUtils.h49 BString& _output);
59 static void PrintValueNodeGraph(BString& _output,
63 static void DumpMemory(BString& _output,
73 RangeList& _output);
79 BString& _output);
82 BString& _output);
/haiku/headers/private/debugger/value/
H A DValueFormatter.h23 virtual status_t FormatValue(Value* value, BString& _output)
37 Value*& _output) const;
/haiku/src/apps/debugger/user_interface/gui/value/
H A DTableCellIntegerEditor.cpp42 TableCellIntegerEditor::GetValueForInput(::Value*& _output) const
49 variantValue.Type(), _output);
H A DTableCellFloatEditor.cpp42 TableCellFloatEditor::GetValueForInput(::Value*& _output) const
49 variantValue.Type(), _output);
H A DTableCellIntegerEditor.h22 virtual status_t GetValueForInput(::Value*& _output) const;
H A DTableCellFloatEditor.h21 virtual status_t GetValueForInput(::Value*& _output) const;
H A DTableCellTextControlEditor.h28 virtual status_t GetValueForInput(::Value*& _output) const = 0;
/haiku/src/kits/debugger/controllers/
H A DDebugReportGenerator.h68 status_t _GenerateReportHeader(BFile& _output);
69 status_t _DumpLoadedImages(BFile& _output);
70 status_t _DumpAreas(BFile& _output);
71 status_t _DumpSemaphores(BFile& _output);
72 status_t _DumpRunningThreads(BFile& _output);
73 status_t _DumpDebuggedThreadInfo(BFile& _output,
75 status_t _DumpFunctionDisassembly(BFile& _output,
77 status_t _DumpStackFrameMemory(BFile& _output,
H A DDebugReportGenerator.cpp247 DebugReportGenerator::_GenerateReportHeader(BFile& _output) argument
254 WRITE_AND_CHECK(_output, data);
299 WRITE_AND_CHECK(_output, data);
309 WRITE_AND_CHECK(_output, data);
314 WRITE_AND_CHECK(_output, data);
322 DebugReportGenerator::_DumpLoadedImages(BFile& _output) argument
327 WRITE_AND_CHECK(_output, data);
339 WRITE_AND_CHECK(_output, data);
343 WRITE_AND_CHECK(_output, data);
358 WRITE_AND_CHECK(_output, dat
369 _DumpAreas(BFile& _output) argument
415 _DumpSemaphores(BFile& _output) argument
450 _DumpRunningThreads(BFile& _output) argument
505 _DumpDebuggedThreadInfo(BFile& _output, ::Thread* thread) argument
660 _DumpFunctionDisassembly(BFile& _output, target_addr_t instructionPointer) argument
739 _DumpStackFrameMemory(BFile& _output, CpuState* state, target_addr_t framePointer, uint8 stackDirection) argument
[all...]
/haiku/headers/private/debugger/source_language/c_family/
H A DCLanguageFamily.h23 ExpressionResult*& _output,

Completed in 275 milliseconds

12