Home
last modified time | relevance | path

Searched refs:data_ap (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp229 std::unique_ptr<WatchpointOptions::CommandData> data_ap( in IOHandlerInputComplete() local
231 if (data_ap) { in IOHandlerInputComplete()
232 data_ap->user_source.SplitIntoLines(line); in IOHandlerInputComplete()
234 std::move(data_ap)); in IOHandlerInputComplete()
253 std::unique_ptr<WatchpointOptions::CommandData> data_ap( in SetWatchpointCommandCallback() local
260 data_ap->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
261 data_ap->script_source.assign(oneliner); in SetWatchpointCommandCallback()
262 data_ap->stop_on_error = m_options.m_stop_on_error; in SetWatchpointCommandCallback()
265 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_ap)); in SetWatchpointCommandCallback()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp476 auto data_ap = llvm::make_unique<CommandDataPython>(); in IOHandlerInputComplete() local
477 if (!data_ap) in IOHandlerInputComplete()
479 data_ap->user_source.SplitIntoLines(data); in IOHandlerInputComplete()
485 std::move(data_ap)); in IOHandlerInputComplete()
502 data_ap->user_source.SplitIntoLines(data); in IOHandlerInputComplete()
504 if (GenerateWatchpointCommandCallbackData(data_ap->user_source, in IOHandlerInputComplete()
1302 auto data_ap = llvm::make_unique<CommandDataPython>(); in SetBreakpointCommandCallback() local
1309 data_ap->user_source.SplitIntoLines(command_body_text); in SetBreakpointCommandCallback()
1332 data_ap->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
1333 data_ap->script_source.assign(oneliner); in SetWatchpointCommandCallback()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DObjectFile.cpp467 std::unique_ptr<DataBufferHeap> data_ap(new DataBufferHeap(byte_size, 0)); in ReadMemory() local
470 addr, data_ap->GetBytes(), data_ap->GetByteSize(), error); in ReadMemory()
472 data_sp.reset(data_ap.release()); in ReadMemory()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DABI.h38 std::unique_ptr<uint8_t[]> data_ap; /* host data pointer */ member
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DModule.cpp295 auto data_ap = llvm::make_unique<DataBufferHeap>(size_to_read, 0); in GetMemoryObjectFile() local
298 process_sp->ReadMemory(header_addr, data_ap->GetBytes(), in GetMemoryObjectFile()
299 data_ap->GetByteSize(), readmem_error); in GetMemoryObjectFile()
301 DataBufferSP data_sp(data_ap.release()); in GetMemoryObjectFile()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DIRInterpreter.cpp1604 rawArgs[i].data_ap.reset(new uint8_t[dataSize + 1]); in Interpret()
1607 execution_unit.ReadMemory(rawArgs[i].data_ap.get(), addr, dataSize, in Interpret()
1613 rawArgs[i].data_ap[dataSize] = '\0'; in Interpret()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/
H A DABISysV_hexagon.cpp1107 proc->WriteMemory(sp, arg.data_ap.get(), arg.size, error); in PrepareTrivialCall()