Searched defs:getParams (Results 1 - 25 of 75) sorted by relevance

123

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECKeySpec.java22 public ECParameterSpec getParams() method in class:ECKeySpec
/external/apache-http/src/org/apache/http/client/
H A DHttpClient.java76 HttpParams getParams() method in interface:HttpClient
/external/javassist/src/main/javassist/compiler/ast/
H A DMethodDecl.java36 public ASTList getParams() { return (ASTList)sublist(2).head(); } method in class:MethodDecl
/external/javassist/src/main/javassist/runtime/
H A DDesc.java66 public static Class[] getParams(String desc) { method in class:Desc
/external/skia/include/gpu/
H A DGrTextureAccess.h52 const GrTextureParams& getParams() const { return fParams; } function in class:GrTextureAccess
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
H A DDHPrivateKeyTest.java77 public DHParameterSpec getParams() { method in class:DHPrivateKeyTest.checkDHPrivateKey
H A DDHPublicKeyTest.java80 public DHParameterSpec getParams() { method in class:DHPublicKeyTest.checkDHPublicKey
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/
H A DDSAPrivateKeyTest.java76 public DSAParams getParams() { method in class:DSAPrivateKeyTest.checkDSAPrivateKey
H A DDSAPublicKeyTest.java76 public DSAParams getParams() { method in class:DSAPublicKeyTest.checkDSAPublicKey
H A DECPrivateKeyTest.java72 public ECParameterSpec getParams() { method in class:ECPrivateKeyTest.checkECPrivateKey
H A DECPublicKeyTest.java72 public ECParameterSpec getParams() { method in class:ECPublicKeyTest.checkECPublicKey
/external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
H A DOkApacheClient.java148 @Override public HttpParams getParams() { method in class:OkApacheClient
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAndroidHttpClient.java41 public HttpParams getParams() { method in class:ShadowAndroidHttpClient
42 return httpClient.getParams();
/external/apache-http/src/org/apache/http/
H A DHttpMessage.java188 HttpParams getParams(); method in interface:HttpMessage
/external/apache-http/src/org/apache/http/message/
H A DAbstractHttpMessage.java157 public HttpParams getParams() { method in class:AbstractHttpMessage
/external/apache-http/src/org/apache/http/protocol/
H A DHttpService.java122 public HttpParams getParams() { method in class:HttpService
142 new DefaultedHttpParams(request.getParams(), this.params));
157 new DefaultedHttpParams(response.getParams(), this.params));
166 new DefaultedHttpParams(response.getParams(), this.params));
186 new DefaultedHttpParams(response.getParams(), this.params));
208 new DefaultedHttpParams(response.getParams(), this.params));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DBCDHPublicKey.java46 this.dhSpec = key.getParams();
130 public DHParameterSpec getParams() method in class:BCDHPublicKey
165 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
166 ^ this.getParams().getP().hashCode() ^ this.getParams().getL();
180 && this.getParams().getG().equals(other.getParams().getG())
181 && this.getParams().getP().equals(other.getParams().getP())
182 && this.getParams()
[all...]
H A DBCDHPrivateKey.java50 this.dhSpec = key.getParams();
143 public DHParameterSpec getParams() method in class:BCDHPrivateKey
164 && this.getParams().getG().equals(other.getParams().getG())
165 && this.getParams().getP().equals(other.getParams().getP())
166 && this.getParams().getL() == other.getParams().getL();
171 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
172 ^ this.getParams()
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEDHPrivateKey.java48 this.dhSpec = key.getParams();
141 public DHParameterSpec getParams() method in class:JCEDHPrivateKey
H A DJCEDHPublicKey.java44 this.dhSpec = key.getParams();
128 public DHParameterSpec getParams() method in class:JCEDHPublicKey
H A DJDKDSAPublicKey.java42 this.dsaSpec = key.getParams();
117 public DSAParams getParams() method in class:JDKDSAPublicKey
140 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
141 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
155 && this.getParams().getG().equals(other.getParams().getG())
156 && this.getParams().getP().equals(other.getParams().getP())
157 && this.getParams()
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLECPublicKey.java53 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
66 .getInstance(ecPublicKey.getParams());
93 public ECParameterSpec getParams() { method in class:OpenSSLECPublicKey
134 final ECParameterSpec spec = getParams();
135 final ECParameterSpec otherSpec = other.getParams();
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.h52 const std::vector<MVT> &getParams() const { return Params; } function in class:llvm::final
/external/autotest/frontend/client/src/autotest/common/table/
H A DDataSource.java56 public JSONObject getParams(); method in interface:DataSource.Query
88 public JSONObject getParams() { method in class:DataSource.DefaultQuery
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPrivateKey.java43 this.dsaSpec = key.getParams();
97 public DSAParams getParams() method in class:BCDSAPrivateKey
118 && this.getParams().getG().equals(other.getParams().getG())
119 && this.getParams().getP().equals(other.getParams().getP())
120 && this.getParams().getQ().equals(other.getParams().getQ());
125 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
126 ^ this.getParams()
[all...]

Completed in 905 milliseconds

123