Searched refs:oid (Results 1 - 25 of 102) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DOIDName.java43 private ObjectIdentifier oid; field in class:OIDName
52 oid = derValue.getOID();
60 public OIDName(ObjectIdentifier oid) { argument
61 this.oid = oid;
72 oid = new ObjectIdentifier(name);
92 out.putOID(oid);
99 return ("OIDName: " + oid.toString());
106 return oid;
123 return oid
[all...]
H A DOtherName.java52 private ObjectIdentifier oid; field in class:OtherName
64 * @param oid ObjectIdentifier of this OtherName object
68 public OtherName(ObjectIdentifier oid, byte[] value) throws IOException { argument
69 if (oid == null || value == null) {
72 this.oid = oid;
74 gni = getGNI(oid, value);
78 name = "Unrecognized ObjectIdentifier: " + oid.toString();
91 oid = in.getOID();
94 gni = getGNI(oid, nameValu
120 getGNI(ObjectIdentifier oid, byte[] nameValue) argument
[all...]
H A DOIDMap.java109 /** Map ObjectIdentifier(oid) -> OIDInfo(info) */
174 private static void addInternal(String name, ObjectIdentifier oid, argument
176 OIDInfo info = new OIDInfo(name, oid, className);
177 oidMap.put(oid, info);
186 final ObjectIdentifier oid; field in class:OIDMap.OIDInfo
191 OIDInfo(String name, ObjectIdentifier oid, String className) { argument
193 this.oid = oid;
197 OIDInfo(String name, ObjectIdentifier oid, Class clazz) { argument
199 this.oid
231 addAttribute(String name, String oid, Class clazz) argument
257 getName(ObjectIdentifier oid) argument
291 getClass(ObjectIdentifier oid) argument
[all...]
/openjdk7/jdk/test/sun/security/util/Oid/
H A DS11N.java71 for (String oid: SMALL) {
73 check(out(oid), oid);
75 check(out6(oid), oid);
77 for (String oid: HUGE) {
79 check(out(oid), oid);
82 for (String oid: SMALL) {
84 check(out(oid), oi
114 out6(String oid) argument
119 out7(String oid) argument
124 out(String oid) argument
131 check(byte[] in, String oid) argument
[all...]
H A DOidFormat.java125 ObjectIdentifier oid = new ObjectIdentifier(ints);
127 os.putOID(oid);
130 if (!oid.equals((Object)oid2)) {
131 throw new Exception("Test DER I/O fails: " + oid + " and " + oid2);
137 ObjectIdentifier oid = new ObjectIdentifier(s);
138 if (!oid.toString().equals(s)) {
142 os.putOID(oid);
145 if (!oid.equals((Object)oid2)) {
146 throw new Exception("Test DER I/O fails: " + oid + " and " + oid2);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpEntryOid.java40 * @param oid The original OID array
44 public SnmpEntryOid(long[] oid, int start) { argument
45 final int subLength = oid.length - start;
47 java.lang.System.arraycopy(oid, start, subOid, 0, subLength) ;
H A DSnmpMibGroup.java296 long[] oid = new long[1];
297 oid[0] = arc;
298 super.registerNode(oid,0,null);
310 * @param oid The oid of the node being registered.
311 * @param cursor The position reached in the oid.
315 void registerNode(long[] oid, int cursor ,SnmpMibNode node) argument
317 super.registerNode(oid,cursor,node);
319 if (cursor >= oid.length) return;
322 registerNestedArc(oid[curso
328 findHandlingNode(SnmpVarBind varbind, long[] oid, int depth, SnmpRequestTree handlers) argument
387 findNextHandlingNode(SnmpVarBind varbind, long[] oid, int pos, int depth, SnmpRequestTree handlers, AcmChecker checker) argument
[all...]
H A DSnmpMibOid.java147 long[] oid, int depth,
152 final int length = oid.length;
159 // Nothing is left... the oid is not valid
163 // The oid is not complete...
170 final SnmpMibNode child= getChild(oid[depth]);
184 child.findHandlingNode(varbind,oid,depth+1,handlers);
195 long[] oid, int pos, int depth,
201 final int length = oid.length;
222 // search the element specified in the oid
225 long index= oid[po
146 findHandlingNode(SnmpVarBind varbind, long[] oid, int depth, SnmpRequestTree handlers) argument
194 findNextHandlingNode(SnmpVarBind varbind, long[] oid, int pos, int depth, SnmpRequestTree handlers, AcmChecker checker) argument
301 registerNode(long[] oid, int cursor ,SnmpMibNode node) argument
[all...]
H A DSnmpMibTable.java232 * <CODE>get(req,oid,depth+1)</CODE> method. </li>
252 * final SnmpOid oid = req.getEntryOid();
253 * get(req,oid,depth+1);
286 final SnmpOid oid = r.getEntryOid();
288 // SnmpIndex index = buildSnmpIndex(oid.longValue(false), 0);
291 get(req,oid,depth+1);
306 * <CODE>check(req,oid,depth+1)</CODE> method. </li>
312 * final SnmpOid oid = req.getEntryOid();
313 * final int action = getRowAction(req,oid,depth+1);
315 * beginRowAction(req,oid,dept
478 addEntry(SnmpOid oid, ObjectName name, Object entry) argument
1606 getNextOid(SnmpOid oid, Object userData) argument
1798 getNextOid(long[] oid, int pos, Object userData) argument
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
2174 validateOid(long[] oid, int pos) argument
2288 contains(SnmpOid oid, Object userData) argument
2303 findObject(SnmpOid oid) argument
2349 getInsertionPoint(SnmpOid oid) argument
2374 getInsertionPoint(SnmpOid oid, boolean fail) argument
2434 insertOid(int pos, SnmpOid oid) argument
[all...]
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DOid.java53 private ObjectIdentifier oid; field in class:Oid
60 * @param strOid the dot separated string representation of the oid.
68 oid = new ObjectIdentifier(strOid);
83 * @param derOid stream containing the DER encoded oid
91 oid = derVal.getOID();
105 * @param data byte array containing the DER encoded oid
113 oid = derVal.getOID();
136 * Returns a string representation of the oid's integer components
142 return oid.toString();
160 return this.oid
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509Extension.java103 * for (String oid : critSet) {
104 * System.out.println(oid);
146 * for (String oid : nonCritSet) {
147 * System.out.println(oid);
161 * (<em>extnValue</em>) identified by the passed-in <code>oid</code>
163 * The <code>oid</code> string is
194 * @param oid the Object Identifier value for the extension.
198 public byte[] getExtensionValue(String oid); argument
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJVM_MANAGEMENT_MIB.java179 final String oid = getGroupOid("JvmOS", "1.3.6.1.4.1.42.2.145.3.163.1.1.6");
182 objname = getGroupObjectName("JvmOS", oid, mibName + ":name=sun.management.snmp.jvmmib.JvmOS");
184 final JvmOSMeta meta = createJvmOSMetaNode("JvmOS", oid, objname, server);
192 final JvmOSMBean group = (JvmOSMBean) createJvmOSMBean("JvmOS", oid, objname, server);
194 registerGroupNode("JvmOS", oid, objname, meta, group, server);
260 final String oid = getGroupOid("JvmCompilation", "1.3.6.1.4.1.42.2.145.3.163.1.1.5");
263 objname = getGroupObjectName("JvmCompilation", oid, mibName + ":name=sun.management.snmp.jvmmib.JvmCompilation");
265 final JvmCompilationMeta meta = createJvmCompilationMetaNode("JvmCompilation", oid, objname, server);
273 final JvmCompilationMBean group = (JvmCompilationMBean) createJvmCompilationMBean("JvmCompilation", oid, objname, server);
275 registerGroupNode("JvmCompilation", oid, objnam
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmThreadInstanceTableMetaImpl.java112 * @param oid The oid to make the id from
115 static long makeId(SnmpOid oid) { argument
117 long[] arcs = oid.longValue(false);
179 SnmpOid oid = makeOid(id[i]);
180 table.put(oid, oid);
215 protected SnmpOid getNextOid(SnmpOid oid, Object userData) argument
217 log.debug("getNextOid", "previous=" + oid);
231 // Get the next oid
251 contains(SnmpOid oid, Object userData) argument
270 getEntry(SnmpOid oid) argument
337 getThreadInfo(SnmpOid oid) argument
341 getJvmThreadInstance(Object userData, SnmpOid oid) argument
[all...]
H A DJvmMemManagerTableMetaImpl.java149 protected SnmpOid getNextOid(SnmpOid oid, Object userData) argument
152 if (dbg) log.debug("getNextOid", "previous=" + oid);
166 // Get the next oid
168 final SnmpOid next = handler.getNext(oid);
181 protected boolean contains(SnmpOid oid, Object userData) { argument
192 return handler.contains(oid);
196 public Object getEntry(SnmpOid oid) argument
199 if (oid == null)
209 final long index = oid.getOidArc(0);
240 final Object data = handler.getData(oid);
[all...]
H A DJvmRTBootClassPathTableMetaImpl.java144 protected SnmpOid getNextOid(SnmpOid oid, Object userData) argument
147 if (dbg) log.debug("getNextOid", "previous=" + oid);
161 // Get the next oid
163 final SnmpOid next = handler.getNext(oid);
176 protected boolean contains(SnmpOid oid, Object userData) { argument
187 return handler.contains(oid);
191 public Object getEntry(SnmpOid oid) argument
194 if (dbg) log.debug("getEntry", "oid [" + oid + "]");
195 if (oid
[all...]
H A DJvmRTClassPathTableMetaImpl.java143 protected SnmpOid getNextOid(SnmpOid oid, Object userData) argument
146 if (dbg) log.debug("getNextOid", "previous=" + oid);
160 // Get the next oid
162 final SnmpOid next = handler.getNext(oid);
175 protected boolean contains(SnmpOid oid, Object userData) { argument
186 return handler.contains(oid);
190 public Object getEntry(SnmpOid oid) argument
193 if (dbg) log.debug("getEntry", "oid [" + oid + "]");
194 if (oid
[all...]
H A DJvmRTInputArgsTableMetaImpl.java140 protected SnmpOid getNextOid(SnmpOid oid, Object userData) argument
143 if (dbg) log.debug("getNextOid", "previous=" + oid);
157 // Get the next oid
159 final SnmpOid next = handler.getNext(oid);
172 protected boolean contains(SnmpOid oid, Object userData) { argument
183 return handler.contains(oid);
187 public Object getEntry(SnmpOid oid) argument
190 if (dbg) log.debug("getEntry", "oid [" + oid + "]");
191 if (oid
[all...]
H A DJvmRTLibraryPathTableMetaImpl.java143 protected SnmpOid getNextOid(SnmpOid oid, Object userData) argument
146 if (dbg) log.debug("getNextOid", "previous=" + oid);
160 // Get the next oid
162 final SnmpOid next = handler.getNext(oid);
175 protected boolean contains(SnmpOid oid, Object userData) { argument
186 return handler.contains(oid);
190 public Object getEntry(SnmpOid oid) argument
193 if (dbg) log.debug("getEntry", "oid [" + oid + "]");
194 if (oid
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS9Attributes.java159 ObjectIdentifier oid;
161 oid = attribs[i].getOID();
162 if (attributes.containsKey(oid))
168 attributes.put(oid, attribs[i]);
198 ObjectIdentifier oid;
214 oid = attrib.getOID();
216 if (attributes.get(oid) != null)
217 throw new IOException("Duplicate PKCS9 attribute: " + oid);
220 !permittedAttributes.containsKey(oid))
221 throw new IOException("Attribute " + oid
264 getAttribute(ObjectIdentifier oid) argument
297 getAttributeValue(ObjectIdentifier oid) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpMibTree.java68 public void register(SnmpMibAgent agent, long[] oid) { argument
69 root.registerNode(oid, 0, agent);
72 public SnmpMibAgent getAgentMib(SnmpOid oid) { argument
73 TreeNode node= root.retrieveMatchingBranch(oid.longValue(), 0);
85 long[] oid = oids[i].longValue();
86 TreeNode node = root.retrieveMatchingBranch(oid, 0);
101 long[] oid= agent.getRootOid();
102 TreeNode node= root.retrieveMatchingBranch(oid, 0);
120 long[] oid= agent.getRootOid();
121 registerNode(oid,
124 retrieveMatchingBranch(long[] oid, int cursor) argument
219 registerNode(long[] oid, int cursor, SnmpMibAgent agent) argument
247 retrieveChild(long[] oid, int current) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DUnsolicitedResponseImpl.java38 private String oid; field in class:UnsolicitedResponseImpl
44 UnsolicitedResponseImpl(String oid, byte[] berVal, Vector ref, argument
46 this.oid = oid;
70 return oid;
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/
H A DIORFactory.java39 IOR makeIOR( ORB orb, String typeid, ObjectId oid ) ;
41 /** Return true iff this.makeIOR(orb,typeid,oid).isEquivalent(
42 * other.makeIOR(orb,typeid,oid) for all orb, typeid, and oid.
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dsecoidt.h72 SECItem oid; member in struct:SECOidDataStr
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/oa/
H A DOAInvocationInfo.java51 private byte[] oid; field in class:OAInvocationInfo
64 this.oid = id;
74 this.oid = info.oid;
82 public byte[] id() { return oid ; }
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DProviderList.java49 * <provider, oid>. When it attempts to instantiate a mechanism
50 * defined by oid o, it steps through the list looking for an entry
51 * with oid=o, or with oid=null. (An entry with oid=null matches all
77 * result of encountering a entryof the form <provider, oid> where
78 * oid is non-null, then the assumption is that the application added
179 * @param mechOid the oid of the desired mechanism
217 * either a null of an explicit oid that matched the oid o
459 private Oid oid; field in class:ProviderList.PreferencesEntry
460 PreferencesEntry(Provider p, Oid oid) argument
533 impliesMechanism(Oid oid) argument
[all...]

Completed in 132 milliseconds

12345