Searched defs:serror (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/back/
H A DClassTypeImpl.c61 jdwpError serror = JDWP_ERROR(NONE); local
112 serror = JDWP_ERROR(INTERNAL);
115 return serror;
145 jdwpError serror; local
157 serror = readStaticFieldValue(env, in, clazz, field, signature);
161 if ( serror != JDWP_ERROR(NONE) ) {
H A DArrayTypeImpl.c46 jdwpError serror; local
49 serror = JDWP_ERROR(NONE);
58 serror = map2jdwpError(error);
70 serror = map2jdwpError(error);
97 if (serror == JDWP_ERROR(NONE) && componentClass == NULL) {
101 serror = JDWP_ERROR(NOT_FOUND);
104 return serror;
116 jdwpError serror; local
118 serror = getComponentClass(env, arrayClass,
120 if (serror !
[all...]
H A DStackFrameImpl.c37 jdwpError serror; local
42 serror = validateFrameID(thread, frame);
44 serror = JDWP_ERROR(THREAD_NOT_SUSPENDED);
47 serror = map2jdwpError(error);
49 return serror;
222 jdwpError serror; local
245 serror = validateThreadFrame(thread, frame);
246 if (serror != JDWP_ERROR(NONE)) {
247 outStream_setError(out, serror);
265 serror
280 jdwpError serror; local
341 jdwpError serror; local
421 jdwpError serror; local
[all...]
H A DEventRequestImpl.c44 jdwpError serror = JDWP_ERROR(NONE); local
51 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
59 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
61 serror = map2jdwpError(
69 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
71 serror = map2jdwpError(
79 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
81 serror = map2jdwpError(
93 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
96 if ( (serror
233 jdwpError serror; local
[all...]
H A DThreadReferenceImpl.c658 jdwpError serror = map2jdwpError(error); local
659 if (serror != JDWP_ERROR(NONE)) {
660 outStream_setError(out, serror);
H A Derror_messages.c250 jdwpErrorText(jdwpError serror) argument
252 switch ( serror ) {
H A DArrayReferenceImpl.c479 jdwpError serror = JDWP_ERROR(NONE); local
527 serror = readObjectComponents(env, in, array, index, length);
531 serror = readByteComponents(env, in, array, index, length);
535 serror = readCharComponents(env, in, array, index, length);
539 serror = readFloatComponents(env, in, array, index, length);
543 serror = readDoubleComponents(env, in, array, index, length);
547 serror = readIntComponents(env, in, array, index, length);
551 serror = readLongComponents(env, in, array, index, length);
555 serror = readShortComponents(env, in, array, index, length);
559 serror
[all...]
H A Dtransport.c417 jdwpError serror; local
430 serror = loadTransport(name, &trans);
431 if (serror != JDWP_ERROR(NONE)) {
432 return serror;
454 serror = JDWP_ERROR(OUT_OF_MEMORY);
461 serror = JDWP_ERROR(OUT_OF_MEMORY);
471 serror = JDWP_ERROR(TRANSPORT_INIT);
493 serror = map2jdwpError(error);
499 serror = launch(launchCommand, name, retAddress);
500 if (serror !
[all...]
H A DdebugInit.c583 jdwpError serror; local
586 serror = transport_startTransport(enumArg->isServer, transport->name,
588 if (serror != JDWP_ERROR(NONE)) {
590 transport->name, jdwpErrorText(serror), serror));
591 enumArg->error = serror;

Completed in 148 milliseconds