Lines Matching refs:ret

78     voidpf ret=NULL;  in win32_build_iowin()  local
85 ret = malloc(sizeof(WIN32FILE_IOWIN)); in win32_build_iowin()
87 if (ret==NULL) in win32_build_iowin()
90 *((WIN32FILE_IOWIN*)ret) = w32fiow; in win32_build_iowin()
92 return ret; in win32_build_iowin()
199 uLong ret=0; in win32_read_file_func() local
206 if (!ReadFile(hFile, buf, size, &ret, NULL)) in win32_read_file_func()
215 return ret; in win32_read_file_func()
221 uLong ret=0; in win32_write_file_func() local
228 if (!WriteFile(hFile, buf, size, &ret, NULL)) in win32_write_file_func()
237 return ret; in win32_write_file_func()
262 long ret=-1; in win32_tell_file_func() local
275 ret = -1; in win32_tell_file_func()
278 ret=(long)pos.LowPart; in win32_tell_file_func()
280 return ret; in win32_tell_file_func()
285 ZPOS64_T ret= (ZPOS64_T)-1; in win32_tell64_file_func() local
299 ret = (ZPOS64_T)-1; in win32_tell64_file_func()
302 ret=pos.QuadPart; in win32_tell64_file_func()
304 return ret; in win32_tell64_file_func()
313 long ret=-1; in win32_seek_file_func() local
338 ret = -1; in win32_seek_file_func()
341 ret=0; in win32_seek_file_func()
343 return ret; in win32_seek_file_func()
350 long ret=-1; in win32_seek64_file_func() local
377 ret = -1; in win32_seek64_file_func()
380 ret=0; in win32_seek64_file_func()
382 return ret; in win32_seek64_file_func()
387 int ret=-1; in win32_close_file_func() local
396 ret=0; in win32_close_file_func()
400 return ret; in win32_close_file_func()
405 int ret=-1; in win32_error_file_func() local
408 ret = ((WIN32FILE_IOWIN*)stream) -> error; in win32_error_file_func()
410 return ret; in win32_error_file_func()