Searched refs:varbind (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibSubRequest.java51 * Return the list of varbind to be handled by the SNMP MIB node.
71 * Return the list of varbind to be handled by the SNMP MIB node.
115 * Return the varbind that holds the RowStatus variable.
116 * It corresponds to the varbind that was identified by
119 * <ul><li>In SMIv2, it is the varbind which contains the columnar
129 * @return a varbind that serves to control the table modification.
130 * <code>null</code> means that no such varbind could be
133 * the RowStatus varbind when processing an
135 * varbind will not be included in the set of varbinds
144 * be raised for a given varbind o
162 registerGetException(SnmpVarBind varbind, SnmpStatusException exception) argument
184 registerSetException(SnmpVarBind varbind, SnmpStatusException exception) argument
206 registerCheckException(SnmpVarBind varbind, SnmpStatusException exception) argument
[all...]
H A DSnmpMibRequest.java48 * Returns the list of varbind to be handled by the SNMP mib node.
56 * Returns the vector of varbind to be handled by the SNMP mib node.
135 * Returns the varbind index that should be embedded in an
136 * SnmpStatusException for this particular varbind.
140 * @param varbind The varbind for which the index value is
141 * querried. Note that this varbind <b>must</b> have
146 * @return The varbind index that should be embedded in an
147 * SnmpStatusException for this particular varbind.
149 public int getVarIndex(SnmpVarBind varbind); argument
158 addVarBind(SnmpVarBind varbind) argument
[all...]
H A DSnmpErrorHandlerAgent.java113 SnmpVarBind varbind = (SnmpVarBind) l.nextElement();
114 varbind.setNoSuchObject();
176 SnmpVarBind varbind = (SnmpVarBind) l.nextElement();
177 varbind.setEndOfMibView();
201 SnmpVarBind varbind = (SnmpVarBind) l.nextElement();
202 varbind.setEndOfMibView();
H A DSnmpMibRequestImpl.java183 public final int getVarIndex(SnmpVarBind varbind) { argument
184 return varbinds.indexOf(varbind);
191 public void addVarBind(SnmpVarBind varbind) { argument
192 varbinds.addElement(varbind);
H A DSnmpMibGroup.java227 * checks between the different values provided in the varbind list.
328 void findHandlingNode(SnmpVarBind varbind, argument
351 super.findHandlingNode(varbind,oid,depth,handlers);
360 table.findHandlingNode(varbind,oid,depth+1,handlers);
380 handlers.add(this,depth,varbind);
387 long[] findNextHandlingNode(SnmpVarBind varbind, argument
411 return super.findNextHandlingNode(varbind,oid,pos,depth,
432 result = table.findNextHandlingNode(varbind,oid,pos+1,
467 handlers.add(this,depth,varbind);
492 result = child.findNextHandlingNode(varbind,oi
[all...]
H A DSnmpRequestTree.java51 * This class is used to register varbinds from a SNMP varbind list with
53 * varbind.
56 * When the involved SnmpMibNode is a group, the sublist of varbind is
65 // tree. It holds the original varbind vector passed
67 // varbind vector is used to retrieve the "real"
68 // position of a varbind in the vector. There is no other easy
95 // in the varbind itself:
117 // in the varbind itself:
133 // in the varbind itself.
280 public void addVarBind(SnmpVarBind varbind) { argument
308 getVarIndex(SnmpVarBind varbind) argument
487 addVarbind(SnmpVarBind varbind) argument
588 addVarbind(SnmpVarBind varbind, SnmpOid entryoid, boolean isnew, SnmpVarBind statusvb) argument
794 add(SnmpMibNode meta, int depth, SnmpVarBind varbind) argument
803 add(SnmpMibNode meta, int depth, SnmpOid entryoid, SnmpVarBind varbind, boolean isnew) argument
814 add(SnmpMibNode meta, int depth, SnmpOid entryoid, SnmpVarBind varbind, boolean isnew, SnmpVarBind statusvb) argument
1007 registerNode(SnmpMibNode meta, int depth, SnmpOid entryoid, SnmpVarBind varbind, boolean isnew, SnmpVarBind statusvb) argument
[all...]
H A DSnmpMibOid.java146 void findHandlingNode(SnmpVarBind varbind, argument
182 handlers.add(this,depth,varbind);
184 child.findHandlingNode(varbind,oid,depth+1,handlers);
194 long[] findNextHandlingNode(SnmpVarBind varbind, argument
217 result = findNextHandlingNode(varbind,newOid,0,depth,handlers,
236 // handlers.add(this,varbind,depth);
241 result = child.findNextHandlingNode(varbind,oid,pos+1,
H A DSnmpMibNode.java137 * Find the node which handles a varbind, and register it in the
141 * @param varbind The varbind to be handled
143 * @param oid The OID array extracted from the varbind
148 * @param handlers The Hashtable in which the varbind will be registered
154 void findHandlingNode(SnmpVarBind varbind, argument
163 * given varbind OID, and register the it in the SnmpRequestTree.
167 * @param varbind The varbind to be handled
169 * @param oid The OID array extracted from the varbind
182 findNextHandlingNode(SnmpVarBind varbind, long[] oid, int pos, int depth, SnmpRequestTree handlers, AcmChecker checker) argument
[all...]
H A DSnmpMibTable.java124 * from the varbind list.
230 * exception for each varbind in the list.
241 * // each varbind involved (nb: this should not happen, since
262 * checks between the different values provided in the varbind list,
276 // each varbind involved (nb: should not happen, the error
325 * checks between the different values provided in the varbind list,
385 * checks between the different values provided in the varbind list,
948 * Map the value of the <code>vbstatus</code> varbind to the
1054 * This method is called only once, after all the varbind have been
1237 * of a SET request, before actual checking on the varbind lis
1843 findHandlingNode(SnmpVarBind varbind, long[] oid, int depth, SnmpRequestTree handlers) argument
1912 findNextHandlingNode(SnmpVarBind varbind, long[] oid, int pos, int depth, SnmpRequestTree handlers, AcmChecker checker) argument
2066 findNextAccessibleOid(SnmpOid entryoid, SnmpVarBind varbind,long[] oid, int depth, SnmpRequestTree handlers, AcmChecker checker, Object data, long var) argument
[all...]

Completed in 513 milliseconds