Searched defs:msgId (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpScopedPduPacket.java60 public int msgId = 0; field in class:SnmpScopedPduPacket
H A DSnmpV3Message.java101 public int msgId = 0; field in class:SnmpV3Message
183 msgId = bdec.fetchInteger();
212 .append("msgId : ").append(msgId)
243 int msgId = 0;
249 msgId = bdec.fetchInteger();
259 return msgId;
300 .append("msgId : ").append(pdu.msgId)
319 msgId
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapRequest.java36 int msgId; // read-only field in class:LdapRequest
45 LdapRequest(int msgId, boolean pause) { argument
46 this(msgId, pause, -1);
49 LdapRequest(int msgId, boolean pause, int replyQueueCapacity) { argument
50 this.msgId = msgId;
105 throw new CommunicationException("Request: " + msgId +
H A DLdapResult.java36 int msgId; field in class:LdapResult
H A DConnection.java398 LdapRequest writeRequest(BerEncoder ber, int msgId) throws IOException { argument
399 return writeRequest(ber, msgId, false /* pauseAfterReceipt */, -1);
402 LdapRequest writeRequest(BerEncoder ber, int msgId, argument
404 return writeRequest(ber, msgId, pauseAfterReceipt, -1);
407 LdapRequest writeRequest(BerEncoder ber, int msgId, argument
411 new LdapRequest(msgId, pauseAfterReceipt, replyQueueCapacity);
509 synchronized LdapRequest findRequest(int msgId) { argument
513 if (ldr.msgId == msgId) {
555 ber.encodeInt(ldr.msgId, LdapClien
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLScanner.java1386 protected void reportFatalError(String msgId, Object[] args) argument
1389 msgId, args,
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParseException.java414 private static ParseException arg0 (String msgId, Scanner scanner) argument
418 return new ParseException (Util.getMessage ("ParseException." + msgId, parameters));
421 private static ParseException arg1 (String msgId, Scanner scanner, String arg1) argument
425 return new ParseException (Util.getMessage ("ParseException." + msgId, parameters));
429 private static ParseException arg1Warning (String msgId, Scanner scanner, String arg1) argument
433 return new ParseException (Util.getMessage ("ParseException." + msgId, parameters), true);
436 private static ParseException arg2 (String msgId, Scanner scanner, String arg1, String arg2) argument
440 return new ParseException (Util.getMessage ("ParseException." + msgId, parameters));
443 private static ParseException arg3 (String msgId, Scanner scanner, String arg1, String arg2, String arg3) argument
447 return new ParseException (Util.getMessage ("ParseException." + msgId, parameter
[all...]

Completed in 39 milliseconds