Lines Matching defs:error
344 static void dirent_set_errno (int error);
461 * as entry will be set to NULL in case of error.
591 DWORD error;
609 /* Set error code */
610 error = GetLastError ();
611 switch (error) {
657 /* The very last entry has been processed or an error occurred */
694 int error;
699 error = dirent_mbstowcs_s(
701 if (error) {
740 * as entry will be set to NULL in case of error.
766 int error;
769 error = dirent_wcstombs_s(
782 if (error && datap->cAlternateFileName[0] != '\0') {
783 error = dirent_wcstombs_s(
788 if (!error) {
996 /* Release allocated memory on error */
1043 int error;
1048 error = mbstowcs_s (pReturnValue, wcstr, sizeInWords, mbstr, count);
1073 error = 0;
1078 error = 1;
1083 return error;
1095 int error;
1100 error = wcstombs_s (pReturnValue, mbstr, sizeInBytes, wcstr, count);
1125 error = 0;
1130 error = 1;
1135 return error;
1141 int error)
1146 _set_errno (error);
1151 errno = error;