HomeSort by relevance Sort by last modified time
    Searched refs:RetVal (Results 1 - 25 of 207) sorted by null

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobRx/Windows/
main.c 24 @retval 0 The application exited normally.
25 @retval Other An error occurred.
33 int RetVal;
39 RetVal = WSAStartup ( MAKEWORD ( 2, 2 ), &WsaData );
40 if ( 0 == RetVal ) {
44 RetVal = OobRx ( argc, argv );
55 return RetVal;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobTx/Windows/
main.c 24 @retval 0 The application exited normally.
25 @retval Other An error occurred.
33 int RetVal;
39 RetVal = WSAStartup ( MAKEWORD ( 2, 2 ), &WsaData );
40 if ( 0 == RetVal ) {
44 RetVal = OobTx ( argc, argv );
55 return RetVal;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobRx/
Main.c 24 @retval 0 The application exited normally.
25 @retval Other An error occurred.
33 int RetVal;
38 RetVal = OobRx ( Argc, Argv );
43 return RetVal;
OobRx.c 26 @retval 0 Successfully operation
42 int RetVal;
55 RetVal = GET_ERRNO;
56 printf ( "ERROR - socket error, errno: %d\r\n", RetVal );
72 RetVal = bind ( s,
75 if ( -1 == RetVal ) {
76 RetVal = GET_ERRNO;
77 printf ( "ERROR - bind error, errno: %d\r\n", RetVal );
84 RetVal = listen ( s, 2 );
85 if ( -1 == RetVal ) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobTx/
Main.c 24 @retval 0 The application exited normally.
25 @retval Other An error occurred.
33 int RetVal;
38 RetVal = OobTx ( Argc, Argv );
43 return RetVal;
OobTx.c 26 @retval 0 Successfully operation
43 int RetVal;
54 RetVal = GET_ERRNO;
55 printf ( "ERROR - socket error, errno: %d\r\n", RetVal );
81 RetVal = EINVAL;
93 RetVal = bind ( s,
96 if ( -1 == RetVal ) {
97 RetVal = GET_ERRNO;
98 printf ( "ERROR - bind error, errno: %d\r\n", RetVal );
118 RetVal = connect ( s, (struct sockaddr *)&RemotePort, sizeof ( RemotePort ));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RawIp4Rx/
Main.c 24 @retval 0 The application exited normally.
25 @retval Other An error occurred.
33 int RetVal;
38 RetVal = RawIp4Rx ( Argc, Argv );
43 return RetVal;
RawIp4Rx.c 26 @retval 0 Successfully operation
39 int RetVal;
48 RetVal = GET_ERRNO;
49 printf ( "ERROR - socket error, errno: %d\r\n", RetVal );
64 RetVal = bind ( s,
67 if ( -1 == RetVal ) {
68 RetVal = GET_ERRNO;
69 printf ( "ERROR - bind error, errno: %d\r\n", RetVal );
77 RetVal = getsockname ( s, (struct sockaddr *)&LocalPort, &LocalPortLength );
78 if ( 0 != RetVal ) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RawIp4Tx/
Main.c 24 @retval 0 The application exited normally.
25 @retval Other An error occurred.
33 int RetVal;
38 RetVal = RawIp4Tx ( Argc, Argv );
43 return RetVal;
RawIp4Tx.c 25 @retval 0 Successfully operation
39 int RetVal;
48 RetVal = GET_ERRNO;
49 printf ( "ERROR - socket error, errno: %d\r\n", RetVal );
75 RetVal = EINVAL;
87 RetVal = bind ( s,
90 if ( -1 == RetVal ) {
91 RetVal = GET_ERRNO;
92 printf ( "ERROR - bind error, errno: %d\r\n", RetVal );
126 RetVal = GET_ERRNO;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RawIp4Rx/Windows/
main.c 26 @retval 0 The application exited normally.
27 @retval Other An error occurred.
35 int RetVal;
41 RetVal = WSAStartup ( MAKEWORD ( 2, 2 ), &WsaData );
42 if ( 0 == RetVal ) {
46 RetVal = RawIp4Rx ( argc, argv );
47 if ( WSAEACCES == RetVal ) {
60 return RetVal;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RawIp4Tx/Windows/
main.c 26 @retval 0 The application exited normally.
27 @retval Other An error occurred.
35 int RetVal;
41 RetVal = WSAStartup ( MAKEWORD ( 2, 2 ), &WsaData );
42 if ( 0 == RetVal ) {
47 RetVal = RawIp4Tx ( argc, argv );
48 if ( WSAEACCES == RetVal ) {
61 return RetVal;
  /device/linaro/bootloader/edk2/StdLib/UseSocketDxe/
UseSocketDxe.c 46 int RetVal;
52 RetVal = 0;
68 RetVal = EIO;
74 return RetVal;
106 int RetVal;
137 RetVal = 0;
144 RetVal = ENODEV;
156 RetVal = 0;
161 RetVal = EACCES;
165 RetVal = EHOSTUNREACH;
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getpeername.c 44 int RetVal;
51 RetVal = -1;
66 RetVal = 0;
73 return RetVal;
getsockname.c 44 int RetVal;
51 RetVal = -1;
66 RetVal = 0;
73 return RetVal;
shutdown.c 41 int RetVal;
48 RetVal = -1;
65 RetVal = 0;
72 return RetVal;
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/
TerminalFunctions.c 70 @retval 0 The operation completed successfully.
71 @retval -1 An error occured and errno is set to indicate the error.
81 int RetVal;
85 RetVal = 0;
88 RetVal = -1;
91 return RetVal;
103 @retval 0 The operation completed successfully.
104 @retval -1 An error occured and errno is set to indicate the error.
114 int RetVal;
118 RetVal = 0;
    [all...]
IIOutilities.c 80 wint_t RetVal;
104 RetVal = WEOF;
107 RetVal = (wint_t)InChar;
109 return RetVal;
118 @retval -1 fd is not an IIO output device.
119 @retval 0 Cursor position retrieved, Cursor is Not Visible.
120 @retval 1 Cursor position retrieved, Cursor is Visible.
132 int RetVal;
134 RetVal = -1;
145 RetVal = 1;
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
Unix.h 87 struct timespec RetVal;
88 RetVal.tv_sec = toTimeT(TP);
89 RetVal.tv_nsec = (TP.time_since_epoch() % seconds(1)).count();
90 return RetVal;
97 struct timeval RetVal;
98 RetVal.tv_sec = toTimeT(TP);
99 RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count();
100 return RetVal;
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Malloc.c 87 void *RetVal;
103 RetVal = NULL;
117 RetVal = (void*)Head->Data;
118 DEBUG((DEBUG_POOL, " Head: %p, Returns %p\n", Head, RetVal));
121 return RetVal;
141 void *RetVal;
145 RetVal = NULL;
147 RetVal = malloc(NumSize);
148 if( RetVal != NULL) {
149 (VOID)ZeroMem( RetVal, NumSize);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbSupportString.c 30 UINTN RetVal;
58 RetVal = 0;
66 if (RetVal > MaxVal) {
70 RetVal = (RetVal << 4) | (TempChar - (TempChar >= 'A' ? 'A' - 10 : '0'));
78 return RetVal;
94 UINT64 RetVal;
122 RetVal = 0;
130 if (RetVal > MaxVal) {
134 RetVal = LShiftU64 (RetVal, 4);
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
multibyte_Utf8.c 67 @retval -2 ch is an incomplete but potentially valid character.
68 @retval -1 ch is not valid in this context.
69 @retval 1:4 The length, in bytes, of the character ch just completed.
77 int RetVal = 0;
92 RetVal = -1;
98 RetVal = 1;
102 RetVal = -2; // Incomplete but potentially valid character
118 RetVal = 2;
122 RetVal = -2;
131 RetVal = 3;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiHandleParsingLib/
UefiHandleParsingLib.c 29 @retval A string representation of the type allocated from BS Pool.
36 CHAR16 *RetVal;
37 RetVal = NULL;
40 case EfiReservedMemoryType: StrnCatGrow(&RetVal, NULL, L"EfiReservedMemoryType", 0); break;
41 case EfiLoaderCode: StrnCatGrow(&RetVal, NULL, L"EfiLoaderCode", 0); break;
42 case EfiLoaderData: StrnCatGrow(&RetVal, NULL, L"EfiLoaderData", 0); break;
43 case EfiBootServicesCode: StrnCatGrow(&RetVal, NULL, L"EfiBootServicesCode", 0); break;
44 case EfiBootServicesData: StrnCatGrow(&RetVal, NULL, L"EfiBootServicesData", 0); break;
45 case EfiRuntimeServicesCode: StrnCatGrow(&RetVal, NULL, L"EfiRuntimeServicesCode", 0); break;
46 case EfiRuntimeServicesData: StrnCatGrow(&RetVal, NULL, L"EfiRuntimeServicesData", 0); break;
    [all...]
  /external/llvm/unittests/Transforms/IPO/
WholeProgramDevirt.cpp 82 Targets[0].RetVal = 1;
83 Targets[1].RetVal = 0;
92 Targets[0].RetVal = 0;
93 Targets[1].RetVal = 1;
102 Targets[0].RetVal = 12;
103 Targets[1].RetVal = 34;
112 Targets[0].RetVal = 56;
113 Targets[1].RetVal = 78;
124 Targets[0].RetVal = 1;
125 Targets[1].RetVal = 0
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ReturnUndefChecker.cpp 33 DefinedOrUnknownSVal RetVal) const;
44 SVal RetVal = C.getSVal(RetE);
49 if (RetVal.isUndef()) {
76 checkReference(C, RetE, RetVal.castAs<DefinedOrUnknownSVal>());
104 DefinedOrUnknownSVal RetVal) const {
106 std::tie(StNonNull, StNull) = C.getState()->assume(RetVal);

Completed in 289 milliseconds

1 2 3 4 5 6 7 8 9