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

/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c1044 char *un = (char*)JLI_MemAlloc(strlen(s) + 1); /* Ptr to unquoted string */
1045 char *pun = un; /* Pointer to the tail of the unquoted string */
1170 char *unquoted; local
1199 unquoted = unquote(p);
1200 if (*unquoted == '-') { /* Looks like an option */
1201 if (strcmp(unquoted, "-classpath") == 0 ||
1202 strcmp(unquoted, "-cp") == 0) { /* Unique cp syntax */
1207 } else if (strncmp(unquoted, "-version:", 9) != 0 &&
1208 strcmp(unquoted, "-jre-restrict-search") != 0 &&
1209 strcmp(unquoted, "
[all...]
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c880 char *un = (char*)JLI_MemAlloc(JLI_StrLen(s) + 1); /* Ptr to unquoted string */
881 char *pun = un; /* Pointer to the tail of the unquoted string */
983 char *unquoted; local
1012 unquoted = unquote(p);
1013 if (*unquoted == '-') { /* Looks like an option */
1014 if (JLI_StrCmp(unquoted, "-classpath") == 0 ||
1015 JLI_StrCmp(unquoted, "-cp") == 0) { /* Unique cp syntax */
1020 } else if (JLI_StrNCmp(unquoted, "-version:", 9) != 0 &&
1021 JLI_StrCmp(unquoted, "-jre-restrict-search") != 0 &&
1022 JLI_StrCmp(unquoted, "
[all...]

Completed in 35 milliseconds