Searched defs:ret (Results 1 - 8 of 8) sorted by relevance

/glassfish-3.1.2/tests/quicklook/utils/src/com/sun/appserv/test/
H A DAdminBaseDevTest.java123 public boolean report(String step, AsadminReturn ret) { argument
124 report(step, ret.returnValue);
125 return ret.returnValue;
149 AsadminReturn ret = asadminWithOutput("list-clusters");
150 String s = (ret.out == null) ? "" : ret.out.trim();
159 AsadminReturn ret = asadminWithOutput("list-instances");
160 String s = (ret.out == null) ? "" : ret.out.trim();
228 AsadminReturn ret
[all...]
H A DBaseDevTest.java84 public boolean report(String step, AsadminReturn ret) { argument
85 return ret.returnValue;
111 AsadminReturn ret = new AsadminReturn();
134 ret.out = pm.getStdout();
135 ret.err = pm.getStderr();
136 ret.outAndErr = ret.out + ret.err;
137 ret.returnValue = exit == 0 && validResults(ret
228 evalXPath(String expr, File f, QName ret) argument
263 evalXPath(String expr, QName ret) argument
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/modules/
H A DMbeansDescriptorsIntrospectionSource.java177 * @param ret The class to check
180 private boolean supportedType(Class<?> ret) { argument
182 if (ret == supportedTypes[i]) {
186 if (isBeanCompatible(ret)) {
264 Class<?> ret = methods[j].getReturnType();
265 if( ! supportedType( ret ) ) {
276 Class<?> ret = methods[j].getReturnType();
277 if( Boolean.TYPE != ret ) {
279 log.fine("Unsupported type " + methods[j] + " " + ret );
/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Dsetup.h174 char *ret = NULL; local
175 ret = (char *)MemAlloc(sizeof(MESSAGE_KEY_PREFIX) + strlen(key) + 2);
176 sprintf(ret, MESSAGE_KEY_PREFIX "_%s", key);
177 return ret;
H A Duninstall.h185 char *ret = NULL; local
186 ret = (char *)MemAlloc(sizeof(MESSAGE_KEY_PREFIX) + strlen(key) + 2);
187 sprintf(ret, MESSAGE_KEY_PREFIX "_%s", key);
188 return ret;
H A Djava.c105 int ret; local
218 if (!ParseArguments(&argc, &argv, &javahome, &tmpdir, &showconsole, &useAnswerFileOption, &answerFile, &useAlternateRootOption, &alternateRoot, &storeAnswerFile, &answerFileLocation, &logLevelOption, &useLogsLocation, &logsLocation, &ret))
219 return ret;
310 ret = 0;
316 ret = 1;
331 ret = 1;
336 if (ret)
372 ret = 0;
394 ret = 1;
420 if (!javahome && ret
894 int ret; local
1389 jboolean ret = JNI_FALSE; local
1426 jboolean ret = JNI_FALSE; local
[all...]
H A Djava_md.winnt.c177 char *ret = NULL; local
220 ret = (char *)MemAlloc(size);
221 if ((size = WideCharToMultiByte(GetACP() ? CP_ACP : CP_UTF8, 0, value, -1, ret, size, NULL, NULL)) < 0)
224 return ret;
234 if (ret)
235 free(ret);
236 ret = (char *)MemAlloc(1);
237 ret[0] = '\0';
238 return ret;
248 int ret; local
389 INT_PTR ret = FALSE; local
533 int ret; local
611 int ret; local
966 int ret; local
981 int ret; local
1003 int ret; local
1349 jboolean ret = JNI_FALSE; local
1485 int ret = 1; local
1707 int ret = 1; local
[all...]
H A Djava_md.unix.c201 char *ret = NULL; local
246 ret = (char *)MemAlloc(size + 1);
251 char *outbuf = ret;
257 ret[size - outleft] = '\0';
266 free(ret);
267 ret = (char *)MemAlloc(size + 1);
280 ret = StrDup(value);
282 return ret;
292 if (ret)
293 free(ret);
635 int ret; local
763 int ret; local
1229 int ret; local
1244 int ret; local
1266 int ret; local
1920 int ret = 1; local
2085 int ret = -1; local
[all...]

Completed in 39 milliseconds