Home
last modified time | relevance | path

Searched refs:ret_value (Results 1 – 17 of 17) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBError.cpp75 bool ret_value = false; in Fail() local
77 ret_value = m_opaque_ap->Fail(); in Fail()
81 static_cast<void*>(m_opaque_ap.get()), ret_value); in Fail()
83 return ret_value; in Fail()
90 bool ret_value = true; in Success() local
92 ret_value = m_opaque_ap->Success(); in Success()
96 static_cast<void*>(m_opaque_ap.get()), ret_value); in Success()
98 return ret_value; in Success()
HDSBDebugger.cpp1074 SBStringList ret_value; in GetInternalVariableValue() local
/NextBSD/sys/boot/arm/at91/libat91/
HDsd-card.c388 volatile int ret_value; in sdcard_use4wire() local
391 ret_value=MCI_GetStatus(); in sdcard_use4wire()
393 while((ret_value > 0) && ((ret_value & AT91C_SR_READY_FOR_DATA) == 0)); in sdcard_use4wire()
398 ret_value = MCI_SDCard_SendAppCommand(SDCARD_SET_CLR_CARD_DETECT_CMD, in sdcard_use4wire()
400 if (ret_value != AT91C_CMD_SEND_OK) in sdcard_use4wire()
405 ret_value = MCI_SDCard_SendAppCommand(SDCARD_SET_BUS_WIDTH_CMD, in sdcard_use4wire()
408 if (ret_value != AT91C_CMD_SEND_OK) in sdcard_use4wire()
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDThreadPlanStepRange.cpp140 bool ret_value = false; in InRange() local
147ret_value = m_address_ranges[i].ContainsLoadAddress(pc_load_addr, m_thread.CalculateTarget().get()… in InRange()
148 if (ret_value) in InRange()
152 if (!ret_value && !m_given_ranges_only) in InRange()
166 ret_value = true; in InRange()
185 ret_value = true; in InRange()
209 ret_value = true; in InRange()
232 if (!ret_value && log) in InRange()
235 return ret_value; in InRange()
HDThread.cpp366 uint32_t ret_value = GetStackFrameList()->SetSelectedFrame(frame); in SetSelectedFrame() local
369 return ret_value; in SetSelectedFrame()
/NextBSD/sys/kern/
HDsubr_hints.c134 const char **ret_resname, int *ret_resnamelen, const char **ret_value) in res_find() argument
269 if (ret_value) in res_find()
270 *ret_value = s; in res_find()
284 const char **ret_resname, int *ret_resnamelen, const char **ret_value) in resource_find() argument
294 ret_value); in resource_find()
303 ret_value); in resource_find()
/NextBSD/contrib/llvm/tools/lldb/source/Expression/
HDClangFunction.cpp461 …unction::FetchFunctionResults (ExecutionContext &exe_ctx, lldb::addr_t args_addr, Value &ret_value) in FetchFunctionResults() argument
484ret_value.GetScalar() = process->ReadUnsignedIntegerFromMemory (args_addr + m_return_offset, m_ret… in FetchFunctionResults()
489 ret_value.SetClangType(m_function_return_type); in FetchFunctionResults()
490 ret_value.SetValueType(Value::eValueTypeScalar); in FetchFunctionResults()
/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDScriptInterpreterPython.cpp871 void *ret_value, in ExecuteOneLineWithReturn() argument
922 success = PyArg_Parse (py_return, format, (char **) ret_value); in ExecuteOneLineWithReturn()
928 success = PyArg_Parse (py_return, format, (char **) ret_value); in ExecuteOneLineWithReturn()
934 success = PyArg_Parse (py_return, format, (bool *) ret_value); in ExecuteOneLineWithReturn()
940 success = PyArg_Parse (py_return, format, (short *) ret_value); in ExecuteOneLineWithReturn()
946 success = PyArg_Parse (py_return, format, (unsigned short *) ret_value); in ExecuteOneLineWithReturn()
952 success = PyArg_Parse (py_return, format, (int *) ret_value); in ExecuteOneLineWithReturn()
958 success = PyArg_Parse (py_return, format, (unsigned int *) ret_value); in ExecuteOneLineWithReturn()
964 success = PyArg_Parse (py_return, format, (long *) ret_value); in ExecuteOneLineWithReturn()
970 success = PyArg_Parse (py_return, format, (unsigned long *) ret_value); in ExecuteOneLineWithReturn()
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Expression/
HDClangFunction.h314 Value &ret_value);
/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectWatchpointCommand.cpp247 bool ret_value = true; in WatchpointOptionsCallbackFunction() local
286 return ret_value; in WatchpointOptionsCallbackFunction()
HDCommandObjectBreakpointCommand.cpp261 bool ret_value = true; in BreakpointOptionsCallbackFunction() local
300 return ret_value; in BreakpointOptionsCallbackFunction()
/NextBSD/lib/libnv/tests/
HDnv_tests.cc261 const void *ret_value; in ATF_TEST_CASE_BODY() local
282 ret_value = nvlist_get_binary(nvl, key, &ret_size); in ATF_TEST_CASE_BODY()
284 ATF_REQUIRE_EQ(memcmp(value, ret_value, ret_size), 0); in ATF_TEST_CASE_BODY()
287 ATF_REQUIRE(value != ret_value); in ATF_TEST_CASE_BODY()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDScriptInterpreter.h139 void *ret_value,
HDScriptInterpreterPython.h148 void *ret_value,
/NextBSD/contrib/binutils/gas/config/
HDtc-cr16.c2078 int ret_value = 0; in adjust_if_needed() local
2087 ret_value = 1; in adjust_if_needed()
2091 return ret_value; in adjust_if_needed()
/NextBSD/contrib/ee/
HDee.c4758 int ret_value; in modes_op() local
4783 ret_value = menu_op(modes_menu); in modes_op()
4785 switch (ret_value) in modes_op()
4852 while (ret_value != 0); in modes_op()
/NextBSD/sys/arm/arm/
HDpmap.c3789 pv_entry_t ret_value; in pmap_get_pv_entry() local
3794 ret_value = uma_zalloc(pvzone, M_NOWAIT); in pmap_get_pv_entry()
3795 return ret_value; in pmap_get_pv_entry()