Lines Matching refs:Result
38 INT32 Result;
53 Result = Semihost_SYS_OPEN(&OpenBlock);
55 if (Result == -1) {
58 *FileHandle = Result;
70 INT32 Result;
75 Result = Semihost_SYS_SEEK(&SeekBlock);
79 if (Result < 0) {
94 UINT32 Result;
104 Result = Semihost_SYS_READ(&ReadBlock);
106 if ((*Length != 0) && (Result == *Length)) {
109 *Length -= Result;
144 INT32 Result = Semihost_SYS_CLOSE(&FileHandle);
146 if (Result == -1) {
159 INT32 Result;
165 Result = Semihost_SYS_FLEN(&FileHandle);
167 if (Result == -1) {
170 *Length = Result;
196 INT32 Result;
206 Result = Semihost_SYS_TMPNAME (&TmpNameBlock);
208 if (Result != 0) {
221 UINT32 Result;
231 Result = Semihost_SYS_REMOVE(&RemoveBlock);
233 if (Result == 0) {
258 INT32 Result;
269 Result = Semihost_SYS_RENAME (&RenameBlock);
271 if (Result != 0) {