Searched defs:errtext (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c733 char *errtext = NULL; local
738 NULL, errval, 0, (LPTSTR)&errtext, 0, NULL);
739 if (errtext == NULL || n == 0) { /* Paranoia check */
740 errtext = "";
745 if (errtext[n - 1] == '\n') n--;
746 if (errtext[n - 1] == '\r') n--;
747 errtext[n] = '\0';
751 errtext = strerror(save_errno);
757 size = strlen(format) + strlen(string) + strlen(errtext);
759 sprintf(message, (const char *)format, string, errtext);
[all...]
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c598 char *errtext = NULL; local
605 NULL, errval, 0, (LPTSTR)&errtext, 0, NULL);
606 if (errtext == NULL || n == 0) { /* Paranoia check */
607 errtext = "";
612 if (errtext[n - 1] == '\n') n--;
613 if (errtext[n - 1] == '\r') n--;
614 errtext[n] = '\0';
618 errtext = strerror(save_errno);
627 mlen += (int)JLI_StrLen(errtext);
635 JLI_StrCat(message, errtext);
[all...]

Completed in 34 milliseconds