Home
last modified time | relevance | path

Searched refs:m_result (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/atf/atf-c++/
H A Dcheck.cpp48 std::memcpy(&m_result, result, sizeof(m_result)); in check_result()
53 atf_check_result_fini(&m_result); in ~check_result()
60 return atf_check_result_exited(&m_result); in exited()
68 return atf_check_result_exitcode(&m_result); in exitcode()
75 return atf_check_result_signaled(&m_result); in signaled()
83 return atf_check_result_termsig(&m_result); in termsig()
89 return atf_check_result_stdout(&m_result); in stdout_path()
95 return atf_check_result_stderr(&m_result); in stderr_path()
H A Dcheck.hpp65 atf_check_result_t m_result; member in atf::check::check_result
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DHostNativeThreadBase.cpp29 return m_result; in GetResult()
38 m_result = 0; // NOLINT(modernize-use-nullptr) in Reset()
48 m_result = 0; // NOLINT(modernize-use-nullptr) in Release()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h43 lldb::CommandInterpreterResult GetResult() const { return m_result; } in GetResult()
46 return m_result == result; in IsResult()
54 void SetResult(lldb::CommandInterpreterResult result) { m_result = result; } in SetResult()
58 lldb::CommandInterpreterResult m_result = variable
773 CommandInterpreterRunResult m_result; variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h170 m_result.AddResult(completion, description, mode);
237 CompletionResult &m_result; variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DHostNativeThreadBase.h49 lldb::thread_result_t m_result = 0; // NOLINT(modernize-use-nullptr) variable
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DCompletionRequest.cpp18 m_result(result) { in CompletionRequest()
/freebsd/sys/netinet/
H A Dsctp_asconf.c610 struct mbuf *n, *m_ack, *m_result, *m_tail; in sctp_handle_asconf() local
716 m_result = NULL; in sctp_handle_asconf()
737 m_result = sctp_process_asconf_add_ip(src, aph, stcb, in sctp_handle_asconf()
742 m_result = sctp_process_asconf_delete_ip(src, aph, stcb, in sctp_handle_asconf()
749 m_result = sctp_process_asconf_set_primary(src, aph, in sctp_handle_asconf()
779 if (m_result != NULL) { in sctp_handle_asconf()
780 SCTP_BUF_NEXT(m_tail) = m_result; in sctp_handle_asconf()
781 m_tail = m_result; in sctp_handle_asconf()
782 ack_cp->ch.chunk_length += SCTP_BUF_LEN(m_result); in sctp_handle_asconf()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3174 m_result.IncrementNumberOfErrors(); in IOHandlerInputComplete()
3176 m_result.SetResult(lldb::eCommandInterpreterResultCommandError); in IOHandlerInputComplete()
3182 m_result.SetResult(lldb::eCommandInterpreterResultQuitRequested); in IOHandlerInputComplete()
3188 if (m_result.IsResult(lldb::eCommandInterpreterResultSuccess) && in IOHandlerInputComplete()
3193 m_result.SetResult(lldb::eCommandInterpreterResultInferiorCrash); in IOHandlerInputComplete()
3390 m_result = CommandInterpreterRunResult(); in RunCommandInterpreter()
3410 return m_result; in RunCommandInterpreter()
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp2174 auto getResult() const -> bool { return m_result; } in getResult()
2179 m_result( result ) in ITransientExpression()
2187 bool m_result; member