Home
last modified time | relevance | path

Searched refs:SetOutputFile (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Tools/bgen/bgen/
DbgenOutput.py11 def SetOutputFile(file = None, needclose = 0): function
37 SetOutputFile()
39 SetOutputFile(open(filename, 'w'), 1)
41 SetOutputFile() # Initialize _File
/external/llvm-project/lldb/test/API/python_api/file_handle/
DTestFileHandle.py257 status = self.dbg.SetOutputFile(sbf)
272 status = self.dbg.SetOutputFile(sbf)
283 status = self.dbg.SetOutputFile(lldb.SBFile(f))
349 status = self.dbg.SetOutputFile(outsbf)
371 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
390 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
408 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
426 status = self.dbg.SetOutputFile(lldb.SBFile(outf))
563 status = self.dbg.SetOutputFile(f)
637 status = self.dbg.SetOutputFile(sbf)
[all …]
/external/llvm-project/lldb/bindings/interface/
DSBDebugger.i175 self.SetOutputFile(SBFile.Create(file, borrow=True))
213 SetOutputFile (SBFile file);
222 SetOutputFile (FileSP file);
/external/llvm-project/lldb/test/Shell/ScriptInterpreter/Lua/
Dio.test10 lldb.debugger:SetOutputFile(file)
Dprint.test10 lldb.debugger:SetOutputFile(file)
/external/llvm-project/lldb/include/lldb/API/
DSBDebugger.h93 SBError SetOutputFile(SBFile file);
99 SBError SetOutputFile(FileSP file);
/external/llvm-project/lldb/test/API/python_api/interpreter/
DTestRunCommandInterpreterAPI.py64 self.dbg.SetOutputFile(devnull)
/external/llvm-project/lldb/source/API/
DSBDebugger.cpp343 SBError SBDebugger::SetOutputFile(FileSP file_sp) { in SetOutputFile() function in SBDebugger
344 LLDB_RECORD_METHOD(SBError, SBDebugger, SetOutputFile, (FileSP), file_sp); in SetOutputFile()
345 return LLDB_RECORD_RESULT(SetOutputFile(SBFile(file_sp))); in SetOutputFile()
351 SetOutputFile((FileSP)std::make_shared<NativeFile>(fh, transfer_ownership)); in SetOutputFileHandle()
354 SBError SBDebugger::SetOutputFile(SBFile file) { in SetOutputFile() function in SBDebugger
355 LLDB_RECORD_METHOD(SBError, SBDebugger, SetOutputFile, (SBFile file), file); in SetOutputFile()
365 m_opaque_sp->SetOutputFile(file.m_opaque_sp); in SetOutputFile()
1675 SBFile)>::method<&SBDebugger::SetOutputFile>::record, in RegisterMethods()
1685 FileSP)>::method<&SBDebugger::SetOutputFile>::record, in RegisterMethods()
/external/v4l2_codec2/tests/c2_e2e_test/jni/
Dvideo_decoder_e2e_test.cpp152 bool SetOutputFile(const std::string& output_frames_path) { in SetOutputFile() function in android::VideoFrameValidator
335 if (video_frame_validator.SetOutputFile(g_env->output_frames_path())) { in TEST_F()
/external/python/cpython2/Mac/Modules/qd/
Dqdsupport.py377 SetOutputFile() # Close it
/external/llvm-project/lldb/include/lldb/Core/
DDebugger.h137 void SetOutputFile(lldb::FileSP file);
/external/llvm-project/lldb/source/Core/
DDebugger.cpp800 void Debugger::SetOutputFile(FileSP file_sp) { in SetOutputFile() function in Debugger