Lines Matching defs:_output

190 UiUtils::AreaProtectionFlagsToString(uint32 protection, BString& _output)
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, "-");
228 ADD_AREA_FLAG_IF_PRESENT(B_STACK_AREA, protection, "s", _output, "");
229 ADD_AREA_FLAG_IF_PRESENT(B_KERNEL_STACK_AREA, protection, "s", _output, "");
230 ADD_AREA_FLAG_IF_PRESENT(B_OVERCOMMITTING_AREA, protection, _output, "o",
232 ADD_AREA_FLAG_IF_PRESENT(B_CLONEABLE_AREA, protection, "c", _output, "");
233 ADD_AREA_FLAG_IF_PRESENT(B_SHARED_AREA, protection, "S", _output, "");
234 ADD_AREA_FLAG_IF_PRESENT(B_KERNEL_AREA, protection, "k", _output, "");
240 _output += buffer;
243 return _output;
283 UiUtils::PrintValueNodeGraph(BString& _output, ValueNodeChild* child,
286 _output.Append('\t', indentLevel);
287 _output << child->Name();
291 _output << ": Unavailable\n";
296 _output << ": ";
299 _output << "Unresolved";
305 _output << valueData;
307 _output << "Unavailable";
309 _output << strerror(resolutionState);
313 _output << "\n";
328 _output << " {\n";
336 PrintValueNodeGraph(_output, node->ChildAt(i),
340 _output.Append('\t', indentLevel);
341 _output << "}\n";
343 _output << "\n";
350 UiUtils::DumpMemory(BString& _output, int32 indentLevel,
357 _output.Append('\t', indentLevel);
367 _output.Append("\n");
368 _output.Append('\t', indentLevel);
372 _output += data;
380 _output += c;
385 _output += ' ';
387 _output.Append(" ");
408 _output += data;
411 _output.Append("\n");
435 int32 upperBound, bool fixedRange, RangeList& _output)
468 result = _output.AddRange(lowValue, highValue);
542 uint32 format, BString& _output)
544 _output.SetTo("{");
575 _output += temp;
577 _output += ", ";
579 _output += "}";
581 return _output;
586 UiUtils::SignalNameToString(int32 signal, BString& _output)
591 _output = #x; \
592 return _output.String();
630 _output = "SIGRTMIN";
632 _output = "SIGRTMAX";
634 _output.SetToFormat("SIGRTMIN+%" B_PRId32, signal - SIGRTMIN);
636 return _output.String();