Searched defs:obj (Results 326 - 350 of 1383) sorted by relevance

<<11121314151617181920>>

/external/apache-http/src/org/apache/http/impl/
H A DHttpConnectionMetricsImpl.java132 public void setMetric(final String metricName, Object obj) { argument
136 this.metricsCache.put(metricName, obj);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DXUnresolvedVariable.java68 * @param obj Must be a non-null reference to an ElemVariable.
77 public XUnresolvedVariable(ElemVariable obj, int sourceNode, argument
82 super(obj);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DArg.java228 * @param obj the reference object with which to compare.
229 * @return <code>true</code> if this object is the same as the obj
232 public boolean equals(Object obj) argument
234 if(obj instanceof QName)
236 return m_qname.equals(obj);
239 return super.equals(obj);
/external/bluetooth/bluedroid/osi/src/
H A Dreactor.c100 void reactor_register(reactor_t *reactor, reactor_object_t *obj) { argument
102 assert(obj != NULL);
104 list_append(reactor->objects, obj);
107 void reactor_unregister(reactor_t *reactor, reactor_object_t *obj) { argument
109 assert(obj != NULL);
111 list_remove(reactor->objects, obj);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1OutputStream.java123 ASN1Encodable obj)
126 if (obj != null)
128 obj.toASN1Primitive().encode(this);
136 void writeImplicitObject(ASN1Primitive obj) argument
139 if (obj != null)
141 obj.encode(new ImplicitOutputStream(os));
122 writeObject( ASN1Encodable obj) argument
H A DASN1Sequence.java15 * @param obj the object we want converted.
19 Object obj)
21 if (obj == null || obj instanceof ASN1Sequence)
23 return (ASN1Sequence)obj;
25 else if (obj instanceof ASN1SequenceParser)
27 return ASN1Sequence.getInstance(((ASN1SequenceParser)obj).toASN1Primitive());
29 else if (obj instanceof byte[])
33 return ASN1Sequence.getInstance(fromByteArray((byte[])obj));
40 else if (obj instanceo
18 getInstance( Object obj) argument
69 getInstance( ASN1TaggedObject obj, boolean explicit) argument
122 ASN1Sequence( ASN1Encodable obj) argument
[all...]
H A DASN1TaggedObject.java17 ASN1Encodable obj = null; field in class:ASN1TaggedObject
20 ASN1TaggedObject obj,
25 return (ASN1TaggedObject)obj.getObject();
32 Object obj)
34 if (obj == null || obj instanceof ASN1TaggedObject)
36 return (ASN1TaggedObject)obj;
38 else if (obj instanceof byte[])
42 return ASN1TaggedObject.getInstance(fromByteArray((byte[])obj));
50 throw new IllegalArgumentException("unknown object in getInstance: " + obj
19 getInstance( ASN1TaggedObject obj, boolean explicit) argument
31 getInstance( Object obj) argument
63 ASN1TaggedObject( boolean explicit, int tagNo, ASN1Encodable obj) argument
[all...]
H A DDERApplicationSpecific.java89 public static DERApplicationSpecific getInstance(Object obj) argument
91 if (obj == null || obj instanceof DERApplicationSpecific)
93 return (DERApplicationSpecific)obj;
95 else if (obj instanceof byte[])
99 return DERApplicationSpecific.getInstance(ASN1Primitive.fromByteArray((byte[])obj));
106 else if (obj instanceof ASN1Encodable)
108 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive();
116 throw new IllegalArgumentException("unknown object in getInstance: " + obj.getClass().getName());
H A DDERBoolean.java27 Object obj)
29 if (obj == null || obj instanceof ASN1Boolean)
31 return (ASN1Boolean)obj;
34 if (obj instanceof DERBoolean)
36 return ((DERBoolean)obj).isTrue() ? DERBoolean.TRUE : DERBoolean.FALSE;
39 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
74 * @param obj the tagged object holding the object we want
81 ASN1TaggedObject obj,
84 ASN1Primitive o = obj
26 getInstance( Object obj) argument
80 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]
H A DDERGeneralizedTime.java27 Object obj)
29 if (obj == null || obj instanceof ASN1GeneralizedTime)
31 return (ASN1GeneralizedTime)obj;
34 if (obj instanceof DERGeneralizedTime)
36 return new ASN1GeneralizedTime(((DERGeneralizedTime)obj).time);
39 if (obj instanceof byte[])
43 return (ASN1GeneralizedTime)fromByteArray((byte[])obj);
51 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
57 * @param obj th
26 getInstance( Object obj) argument
63 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]
H A DDERIA5String.java23 Object obj)
25 if (obj == null || obj instanceof DERIA5String)
27 return (DERIA5String)obj;
30 if (obj instanceof byte[])
34 return (DERIA5String)fromByteArray((byte[])obj);
42 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
48 * @param obj the tagged object holding the object we want
55 ASN1TaggedObject obj,
58 ASN1Primitive o = obj
22 getInstance( Object obj) argument
54 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]
H A DDERNumericString.java23 Object obj)
25 if (obj == null || obj instanceof DERNumericString)
27 return (DERNumericString)obj;
30 if (obj instanceof byte[])
34 return (DERNumericString)fromByteArray((byte[])obj);
42 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
48 * @param obj the tagged object holding the object we want
55 ASN1TaggedObject obj,
58 ASN1Primitive o = obj
22 getInstance( Object obj) argument
54 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]
H A DDERPrintableString.java25 Object obj)
27 if (obj == null || obj instanceof DERPrintableString)
29 return (DERPrintableString)obj;
32 if (obj instanceof byte[])
36 return (DERPrintableString)fromByteArray((byte[])obj);
44 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
50 * @param obj the tagged object holding the object we want
57 ASN1TaggedObject obj,
60 ASN1Primitive o = obj
24 getInstance( Object obj) argument
56 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DRSASSAPSSparams.java31 Object obj)
33 if (obj instanceof RSASSAPSSparams)
35 return (RSASSAPSSparams)obj;
37 else if (obj != null)
39 return new RSASSAPSSparams(ASN1Sequence.getInstance(obj));
30 getInstance( Object obj) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/
H A DASN1Dump.java46 * @param obj the ASN1Primitive to be dumped out.
51 ASN1Primitive obj,
55 if (obj instanceof ASN1Sequence)
57 Enumeration e = ((ASN1Sequence)obj).getObjects();
61 if (obj instanceof BERSequence)
65 else if (obj instanceof DERSequence)
96 else if (obj instanceof ASN1TaggedObject)
101 if (obj instanceof BERTaggedObject)
110 ASN1TaggedObject o = (ASN1TaggedObject)obj;
133 else if (obj instanceo
48 _dumpAsString( String indent, boolean verbose, ASN1Primitive obj, StringBuffer buf) argument
288 outputApplicationSpecific(String type, String indent, boolean verbose, ASN1Primitive obj, String nl) argument
320 dumpAsString( Object obj) argument
333 dumpAsString( Object obj, boolean verbose) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
H A DX500Name.java50 * @param obj tag object holding name.
55 ASN1TaggedObject obj,
59 return getInstance(ASN1Sequence.getInstance(obj, true));
63 Object obj)
65 if (obj instanceof X500Name)
67 return (X500Name)obj;
69 else if (obj != null)
71 return new X500Name(ASN1Sequence.getInstance(obj));
79 Object obj)
81 if (obj instanceo
54 getInstance( ASN1TaggedObject obj, boolean explicit) argument
62 getInstance( Object obj) argument
77 getInstance( X500NameStyle style, Object obj) argument
268 equals(Object obj) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DAttributeCertificateInfo.java27 ASN1TaggedObject obj,
30 return getInstance(ASN1Sequence.getInstance(obj, explicit));
34 Object obj)
36 if (obj instanceof AttributeCertificateInfo)
38 return (AttributeCertificateInfo)obj;
40 else if (obj != null)
42 return new AttributeCertificateInfo(ASN1Sequence.getInstance(obj));
77 ASN1Encodable obj = seq.getObjectAt(i);
79 if (obj instanceof DERBitString)
83 else if (obj instanceo
26 getInstance( ASN1TaggedObject obj, boolean explicit) argument
33 getInstance( Object obj) argument
[all...]
H A DAuthorityKeyIdentifier.java43 ASN1TaggedObject obj,
46 return getInstance(ASN1Sequence.getInstance(obj, explicit));
50 Object obj)
52 if (obj instanceof AuthorityKeyIdentifier)
54 return (AuthorityKeyIdentifier)obj;
56 if (obj != null)
58 return new AuthorityKeyIdentifier(ASN1Sequence.getInstance(obj));
42 getInstance( ASN1TaggedObject obj, boolean explicit) argument
49 getInstance( Object obj) argument
H A DCertificate.java30 ASN1TaggedObject obj,
33 return getInstance(ASN1Sequence.getInstance(obj, explicit));
37 Object obj)
39 if (obj instanceof Certificate)
41 return (Certificate)obj;
43 else if (obj != null)
45 return new Certificate(ASN1Sequence.getInstance(obj));
29 getInstance( ASN1TaggedObject obj, boolean explicit) argument
36 getInstance( Object obj) argument
H A DCertificateList.java38 ASN1TaggedObject obj,
41 return getInstance(ASN1Sequence.getInstance(obj, explicit));
45 Object obj)
47 if (obj instanceof CertificateList)
49 return (CertificateList)obj;
51 else if (obj != null)
53 return new CertificateList(ASN1Sequence.getInstance(obj));
37 getInstance( ASN1TaggedObject obj, boolean explicit) argument
44 getInstance( Object obj) argument
H A DDistributionPoint.java30 ASN1TaggedObject obj,
33 return getInstance(ASN1Sequence.getInstance(obj, explicit));
37 Object obj)
39 if(obj == null || obj instanceof DistributionPoint)
41 return (DistributionPoint)obj;
44 if(obj instanceof ASN1Sequence)
46 return new DistributionPoint((ASN1Sequence)obj);
49 throw new IllegalArgumentException("Invalid DistributionPoint: " + obj.getClass().getName());
29 getInstance( ASN1TaggedObject obj, boolean explicit) argument
36 getInstance( Object obj) argument
H A DExtensions.java23 ASN1TaggedObject obj,
26 return getInstance(ASN1Sequence.getInstance(obj, explicit));
30 Object obj)
32 if (obj instanceof Extensions)
34 return (Extensions)obj;
36 else if (obj != null)
38 return new Extensions(ASN1Sequence.getInstance(obj));
22 getInstance( ASN1TaggedObject obj, boolean explicit) argument
29 getInstance( Object obj) argument
H A DIssuingDistributionPoint.java41 ASN1TaggedObject obj,
44 return getInstance(ASN1Sequence.getInstance(obj, explicit));
48 Object obj)
50 if (obj instanceof IssuingDistributionPoint)
52 return (IssuingDistributionPoint)obj;
54 else if (obj != null)
56 return new IssuingDistributionPoint(ASN1Sequence.getInstance(obj));
40 getInstance( ASN1TaggedObject obj, boolean explicit) argument
47 getInstance( Object obj) argument
H A DKeyUsage.java39 public static KeyUsage getInstance(Object obj) // needs to be DERBitString for other VMs argument
41 if (obj instanceof KeyUsage)
43 return (KeyUsage)obj;
45 else if (obj != null)
47 return new KeyUsage(DERBitString.getInstance(obj));
H A DObjectDigestInfo.java60 Object obj)
62 if (obj instanceof ObjectDigestInfo)
64 return (ObjectDigestInfo)obj;
67 if (obj != null)
69 return new ObjectDigestInfo(ASN1Sequence.getInstance(obj));
76 ASN1TaggedObject obj,
79 return getInstance(ASN1Sequence.getInstance(obj, explicit));
59 getInstance( Object obj) argument
75 getInstance( ASN1TaggedObject obj, boolean explicit) argument

Completed in 181 milliseconds

<<11121314151617181920>>