Home
last modified time | relevance | path

Searched refs:ReturnValue (Results 1 – 25 of 52) sorted by relevance

123

/reactos/modules/rostests/kmtests/ntos_io/
H A DIoInterrupt.c25 BOOLEAN ReturnValue; member
44 return TestContext->ReturnValue; in SynchronizeRoutine()
65 TestContext.ReturnValue = TRUE; in TestSynchronizeExecution()
67 for (TestContext.ReturnValue = 0; TestContext.ReturnValue <= 2; ++TestContext.ReturnValue) in TestSynchronizeExecution()
84 ok_eq_int(Ret, TestContext.ReturnValue); in TestSynchronizeExecution()
/reactos/drivers/bus/acpi/acpica/utilities/
H A Dutstrtoul64.c123 UINT64 *ReturnValue) in AcpiUtStrtoul64() argument
133 *ReturnValue = 0; in AcpiUtStrtoul64()
184 Status = AcpiUtConvertOctalString (String, ReturnValue); in AcpiUtStrtoul64()
188 Status = AcpiUtConvertDecimalString (String, ReturnValue); in AcpiUtStrtoul64()
193 Status = AcpiUtConvertHexString (String, ReturnValue); in AcpiUtStrtoul64()
H A Dutclib.c705 UINT32 ReturnValue = 0; in strtoul() local
818 if (ReturnValue > ((ACPI_UINT32_MAX - (UINT32) index) / in strtoul()
822 ReturnValue = 0; /* reset */ in strtoul()
826 ReturnValue *= Base; in strtoul()
827 ReturnValue += index; in strtoul()
841 if (converted == 0 && ReturnValue == 0 && String != NULL) in strtoul()
853 ReturnValue = ACPI_UINT32_MAX; in strtoul()
861 ReturnValue = (ACPI_UINT32_MAX - ReturnValue) + 1; in strtoul()
864 return (ReturnValue); in strtoul()
H A Dutosi.c480 UINT64 ReturnValue; in AcpiUtOsiImplementation() local
505 ReturnValue = 0; in AcpiUtOsiImplementation()
529 ReturnValue = ACPI_UINT64_MAX; in AcpiUtOsiImplementation()
543 StringDesc->String.Pointer, (UINT32) ReturnValue)) in AcpiUtOsiImplementation()
545 ReturnValue = ACPI_UINT64_MAX; in AcpiUtOsiImplementation()
551 StringDesc->String.Pointer, ReturnValue == 0 ? "not " : "")); in AcpiUtOsiImplementation()
555 ReturnDesc->Integer.Value = ReturnValue; in AcpiUtOsiImplementation()
/reactos/modules/rostests/rosautotest/
H A Dmain.cpp89 int ReturnValue = 1; in wmain() local
145 ReturnValue = 0; in wmain()
173 if(ReturnValue == 1) in wmain()
190 ReturnValue = 1; in wmain()
192 return ReturnValue; in wmain()
/reactos/subsystems/csr/csrsrv/
H A Dsession.c232 ApiMessage->ReturnValue = STATUS_NO_MEMORY; in CsrSbCreateSession()
280 ApiMessage->ReturnValue = STATUS_NO_MEMORY; in CsrSbCreateSession()
342 ApiMessage->ReturnValue = NtResumeThread(hThread, NULL); in CsrSbCreateSession()
368 ApiMessage->ReturnValue = STATUS_NOT_IMPLEMENTED; in CsrSbForeignSessionComplete()
390 ApiMessage->ReturnValue = STATUS_NOT_IMPLEMENTED; in CsrSbTerminateSession()
412 ApiMessage->ReturnValue = STATUS_NOT_IMPLEMENTED; in CsrSbCreateProcess()
573 ReplyMsg->ReturnValue = STATUS_NOT_IMPLEMENTED; in CsrSbApiRequestThread()
/reactos/drivers/bus/acpi/acpica/namespace/
H A Dnsinit.c61 void **ReturnValue);
68 void **ReturnValue);
75 void **ReturnValue);
323 void **ReturnValue) in AcpiNsInitOnePackage() argument
386 void **ReturnValue) in AcpiNsInitOneObject() argument
526 void **ReturnValue) in AcpiNsFindIniMethods() argument
599 void **ReturnValue) in AcpiNsInitOneDevice() argument
H A Dnswalk.c198 void **ReturnValue) in AcpiNsWalkNamespace() argument
286 Context, ReturnValue); in AcpiNsWalkNamespace()
294 Context, ReturnValue); in AcpiNsWalkNamespace()
H A Dnsdump.c65 void **ReturnValue);
76 void **ReturnValue);
83 void **ReturnValue);
209 void **ReturnValue) in AcpiNsDumpOneObject() argument
746 void **ReturnValue) in AcpiNsDumpOneObjectPath() argument
790 void **ReturnValue) in AcpiNsGetMaxDepth() argument
H A Dnsxfeval.c647 void **ReturnValue) in AcpiWalkNamespace() argument
703 AscendingCallback, Context, ReturnValue); in AcpiWalkNamespace()
735 void **ReturnValue) in ACPI_EXPORT_SYMBOL()
855 Info->Context, ReturnValue); in ACPI_EXPORT_SYMBOL()
890 void **ReturnValue) in AcpiGetDevices() argument
928 AcpiNsGetDeviceCallback, NULL, &Info, ReturnValue); in AcpiGetDevices()
H A Dnsdumpdv.c78 void **ReturnValue) in AcpiNsDumpOneDevice() argument
89 Status = AcpiNsDumpOneObject (ObjHandle, Level, Context, ReturnValue); in AcpiNsDumpOneDevice()
/reactos/modules/rosapps/applications/cmdutils/winspool_print/
H A Dmain.c11 int ReturnValue = 1; in wmain() local
90 ReturnValue = 0; in wmain()
99 return ReturnValue; in wmain()
/reactos/drivers/bus/acpi/acpica/hardware/
H A Dhwpci.c375 UINT64 ReturnValue; in AcpiHwGetPciDeviceInfo() local
395 PciDevice, &ReturnValue); in AcpiHwGetPciDeviceInfo()
405 PciId->Device = ACPI_HIWORD (ACPI_LODWORD (ReturnValue)); in AcpiHwGetPciDeviceInfo()
406 PciId->Function = ACPI_LOWORD (ACPI_LODWORD (ReturnValue)); in AcpiHwGetPciDeviceInfo()
H A Dhwxface.c139 UINT64 *ReturnValue, in ACPI_EXPORT_SYMBOL()
148 Status = AcpiHwRead (ReturnValue, Reg); in ACPI_EXPORT_SYMBOL()
215 UINT32 *ReturnValue) in ACPI_EXPORT_SYMBOL()
252 *ReturnValue = Value; in ACPI_EXPORT_SYMBOL()
/reactos/dll/win32/ws2_32/src/
H A Dqshelpr.c25 INT ReturnValue; in AnsiDupFromUnicode() local
31 ReturnValue = WideCharToMultiByte(CP_ACP, in AnsiDupFromUnicode()
39 if (ReturnValue > Length) in AnsiDupFromUnicode()
42 Length = ReturnValue; in AnsiDupFromUnicode()
48 else if (ReturnValue > 0) in AnsiDupFromUnicode()
73 INT ReturnValue; in UnicodeDupFromAnsi() local
79 ReturnValue = MultiByteToWideChar(CP_ACP, in UnicodeDupFromAnsi()
85 if (ReturnValue > Length) in UnicodeDupFromAnsi()
88 Length = ReturnValue; in UnicodeDupFromAnsi()
94 else if (ReturnValue > 0) in UnicodeDupFromAnsi()
H A Dwsautil.c227 INT ReturnValue; in MapUnicodeProtocolInfoToAnsi() local
235 ReturnValue = WideCharToMultiByte(CP_ACP, in MapUnicodeProtocolInfoToAnsi()
243 if (!ReturnValue) return WSASYSCALLFAILURE; in MapUnicodeProtocolInfoToAnsi()
H A Ddthread.c98 INT ErrorCode, ReturnValue; in WsThreadCancelBlockingCall() local
107 ReturnValue = Thread->CancelBlockingCall(&ErrorCode); in WsThreadCancelBlockingCall()
108 if (ReturnValue != ERROR_SUCCESS) return ErrorCode; in WsThreadCancelBlockingCall()
/reactos/sdk/lib/rtl/i386/
H A Dexcept.c233 IN PVOID ReturnValue) in RtlUnwind() argument
285 sizeof(ReturnValue); in RtlUnwind()
288 Context->Eax = (ULONG)ReturnValue; in RtlUnwind()
/reactos/ntoskrnl/include/internal/arm/
H A Dke.h43 #define KeSetContextReturnRegister(Context, ReturnValue) \ argument
44 ((Context)->R0 = (ReturnValue))
/reactos/drivers/bus/acpi/acpica/dispatcher/
H A Ddsinit.c62 void **ReturnValue);
90 void **ReturnValue) in AcpiDsInitOneObject() argument
/reactos/sdk/lib/rtl/amd64/
H A Dunwind.c669 _In_ PVOID ReturnValue, in RtlpUnwindInternal() argument
774 UnwindContext.Rax = (ULONG64)ReturnValue; in RtlpUnwindInternal()
863 ContextRecord->Rax = (ULONG64)ReturnValue; in RtlpUnwindInternal()
879 _In_ PVOID ReturnValue, in RtlUnwindEx() argument
910 ReturnValue, in RtlUnwindEx()
922 _In_ PVOID ReturnValue) in RtlUnwind() argument
929 ReturnValue, in RtlUnwind()
/reactos/drivers/bus/acpi/acpica/include/
H A Dacnamesp.h106 void **ReturnValue);
133 void **ReturnValue);
288 void **ReturnValue);
/reactos/sdk/include/reactos/subsys/sm/
H A Dsmmsg.h106 NTSTATUS ReturnValue; member
239 NTSTATUS ReturnValue; member
/reactos/drivers/bus/acpi/acpica/events/
H A Devgpe.c863 UINT32 ReturnValue; in AcpiEvGpeDispatch() local
919 ReturnValue = GpeEventInfo->Dispatch.Handler->Address ( in AcpiEvGpeDispatch()
925 if (ReturnValue & ACPI_REENABLE_GPE) in AcpiEvGpeDispatch()
H A Devhandler.c61 void **ReturnValue);
224 void **ReturnValue) in AcpiEvInstallHandler() argument

123