Lines Matching defs:in

9  * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
40 readAndSetFilters(JNIEnv *env, PacketInputStream *in, HandlerNode *node,
50 modifier = inStream_readByte(in);
51 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
58 exprID = inStream_readInt(in);
59 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
68 count = inStream_readInt(in);
69 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
78 thread = inStream_readThreadRef(env, in);
79 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
91 tag = inStream_readByte(in); /* not currently used */
93 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
95 clazz = inStream_readClassRef(env, in);
96 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
98 method = inStream_readMethodID(in);
99 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
101 location = inStream_readLocation(in);
102 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
112 clazz = inStream_readClassRef(env, in);
113 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
115 field = inStream_readFieldID(in);
116 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
125 clazz = inStream_readClassRef(env, in);
126 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
137 exception = inStream_readClassRef(env, in);
138 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
140 caught = inStream_readBoolean(in);
141 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
143 uncaught = inStream_readBoolean(in);
144 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
154 instance = inStream_readObjectRef(env, in);
155 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
164 pattern = inStream_readString(in);
165 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
175 pattern = inStream_readString(in);
176 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
186 thread = inStream_readThreadRef(env, in);
187 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
189 size = inStream_readInt(in);
190 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
192 depth = inStream_readInt(in);
193 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) )
201 sourceNamePattern = inStream_readString(in);
202 if ( (serror = inStream_error(in)) != JDWP_ERROR(NONE) ) {
231 setCommand(PacketInputStream *in, PacketOutputStream *out)
242 eventType = inStream_readByte(in);
243 if (inStream_error(in)) {
246 suspendPolicy = inStream_readByte(in);
247 if (inStream_error(in)) {
250 filterCount = inStream_readInt(in);
251 if (inStream_error(in)) {
264 * for this event. However we need to allocate a requestID to send in
280 serror = readAndSetFilters(getEnv(), in, node, filterCount);
306 clearCommand(PacketInputStream *in, PacketOutputStream *out)
313 eventType = inStream_readByte(in);
314 if (inStream_error(in)) {
317 handlerID = inStream_readInt(in);
318 if (inStream_error(in)) {
338 clearAllBreakpoints(PacketInputStream *in, PacketOutputStream *out)