/external/chromium/net/socket/ |
ssl_client_socket_pool_unittest.cc | 133 HttpNetworkSession::Params params; local 134 params.host_resolver = &host_resolver_; 135 params.cert_verifier = &cert_verifier_; 136 params.proxy_service = proxy_service_; 137 params.client_socket_factory = &socket_factory_; 138 params.ssl_config_service = ssl_config_service_; 139 params.http_auth_handler_factory = http_auth_handler_factory_.get(); 140 return new HttpNetworkSession(params); 176 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT local 193 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT, local 218 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT, local 237 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT, local 260 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT, local 283 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT, local 309 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT, local 336 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT, local 362 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT, local 394 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT, local 423 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_SOCKS5, local 442 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_SOCKS5, local 467 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_SOCKS5, local 486 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_SOCKS5, local 508 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_HTTP, local 527 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_HTTP, local 564 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_HTTP, local 594 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_HTTP, local 629 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_HTTP, local 693 scoped_refptr<SSLSocketParams> params = SSLParams(ProxyServer::SCHEME_DIRECT, local [all...] |
/external/javassist/sample/evolve/ |
VersionManager.java | 53 public static Class initialVersion(String[] params) {
55 return getUpdatedClass(params[0]);
58 throw new RuntimeException("cannot initialize " + params[0]);
|
/external/replicaisland/src/com/replica/replicaisland/ |
RenderComponent.java | 60 ContextParameters params = sSystemRegistry.contextParameters; local 62 + (params.gameWidth / 2)); 64 + (params.gameHeight / 2));
|
DebugSystem.java | 59 ContextParameters params = sSystemRegistry.contextParameters; local 62 + (params.gameWidth / 2)); 64 + (params.gameHeight / 2)); 66 if (mWorkVector.x + width >= 0.0f && mWorkVector.x < params.gameWidth 67 && mWorkVector.y + height >= 0.0f && mWorkVector.y < params.gameHeight) {
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/ |
SoftAVC.h | 39 OMX_INDEXTYPE index, OMX_PTR params); 42 OMX_INDEXTYPE index, const OMX_PTR params); 44 virtual OMX_ERRORTYPE getConfig(OMX_INDEXTYPE index, OMX_PTR params);
|
/frameworks/av/media/libstagefright/omx/ |
SoftOMXComponent.cpp | 127 OMX_PTR params) { 132 return me->getParameter(index, params); 139 OMX_PTR params) { 144 return me->setParameter(index, params); 151 OMX_PTR params) { 156 return me->getConfig(index, params); 163 OMX_PTR params) { 168 return me->setConfig(index, params); 265 OMX_INDEXTYPE index, OMX_PTR params) { 270 OMX_INDEXTYPE index, const OMX_PTR params) { [all...] |
/frameworks/av/media/libstagefright/wifi-display/ |
Parameters.cpp | 25 sp<Parameters> params = new Parameters; local 26 status_t err = params->parse(data, size); 32 return params;
|
/frameworks/ex/carousel/java/com/android/ex/carousel/ |
CarouselViewHelper.java | 115 TextureParameters params = getTextureParameters(id); local 116 if (params != null) { 118 params.matrix.getArray()).sendToTarget(); 151 DetailTextureParameters params = getDetailTextureParameters(id); local 152 float x = params != null ? params.textureOffsetX : 0.0f; 153 float y = params != null ? params.textureOffsetY : 0.0f; 154 float lx = params != null ? params.lineOffsetX : 0.0f [all...] |
/frameworks/rs/ |
rsProgram.cpp | 24 const uint32_t * params, size_t paramLength) 29 if (params[ct] == RS_PROGRAM_PARAM_INPUT) { 32 if (params[ct] == RS_PROGRAM_PARAM_CONSTANT) { 35 if (params[ct] == RS_PROGRAM_PARAM_TEXTURE_TYPE) { 60 if (params[ct] == RS_PROGRAM_PARAM_INPUT) { 61 mInputElements[input].set(reinterpret_cast<Element *>(params[ct+1])); 62 mHal.state.inputElements[input++] = reinterpret_cast<Element *>(params[ct+1]); 64 if (params[ct] == RS_PROGRAM_PARAM_CONSTANT) { 65 mConstantTypes[constant].set(reinterpret_cast<Type *>(params[ct+1])); 66 mHal.state.constantTypes[constant++] = reinterpret_cast<Type *>(params[ct+1]) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLRSAKeyPairGenerator.java | 59 public void initialize(AlgorithmParameterSpec params, SecureRandom random) 61 if (!(params instanceof RSAKeyGenParameterSpec)) { 65 RSAKeyGenParameterSpec spec = (RSAKeyGenParameterSpec) params;
|
OpenSSLRSAPrivateKey.java | 44 OpenSSLRSAPrivateKey(OpenSSLKey key, byte[][] params) { 46 readParams(params); 85 byte[][] params = NativeCrypto.get_RSA_private_params(key.getPkeyContext()); 86 if (params[1] != null) { 87 return new OpenSSLRSAPrivateCrtKey(key, params); 89 return new OpenSSLRSAPrivateKey(key, params); 125 void readParams(byte[][] params) { 126 if (params[0] == null) { 128 } else if (params[2] == null && !key.isEngineBased()) { 132 modulus = new BigInteger(params[0]) [all...] |
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/interfaces/ |
DSAKeyPairGeneratorImpl.java | 46 public void initialize(DSAParams params, SecureRandom random) 51 if (params == null) { 52 throw new InvalidParameterException("Incorrect params"); 55 dsaParams = params;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
WeakAsyncTask.java | 23 public abstract class WeakAsyncTask<Params, Progress, Result, WeakTarget> extends 24 AsyncTask<Params, Progress, Result> { 42 protected final Result doInBackground(Params... params) { 45 return this.doInBackground(target, params); 64 protected abstract Result doInBackground(WeakTarget target, Params... params);
|
/frameworks/base/core/jni/ |
android_opengl_GLES11Ext.cpp | 151 * is incomplete and the app may crash if it passed the wrong number params. 231 CTYPE *params = (CTYPE *) 0; local 237 _exceptionMessage = "params == null"; 259 params = params_base + offset; 263 (CTYPE *)params 287 CTYPE *params = (CTYPE *) 0; local 290 params = (CTYPE *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); 301 if (params == NULL) { 303 params = (CTYPE *) (_paramsBase + _bufferOffset); 307 (CTYPE *)params 923 GLfixed *params = (GLfixed *) 0; local 964 GLfixed *params = (GLfixed *) 0; local 1089 GLfixed *params = (GLfixed *) 0; local 1130 GLfixed *params = (GLfixed *) 0; local 1155 GLfixed *params = (GLfixed *) 0; local 1197 GLfixed *params = (GLfixed *) 0; local 1223 GLfixed *params = (GLfixed *) 0; local 1265 GLfixed *params = (GLfixed *) 0; local 1291 GLfixed *params = (GLfixed *) 0; local 1333 GLfixed *params = (GLfixed *) 0; local 1359 GLfixed *params = (GLfixed *) 0; local 1401 GLfixed *params = (GLfixed *) 0; local 1437 GLfixed *params = (GLfixed *) 0; local 1478 GLfixed *params = (GLfixed *) 0; local 1514 GLfixed *params = (GLfixed *) 0; local 1556 GLfixed *params = (GLfixed *) 0; local 1666 GLfixed *params = (GLfixed *) 0; local 1708 GLfixed *params = (GLfixed *) 0; local 1846 GLfixed *params = (GLfixed *) 0; local 1887 GLfixed *params = (GLfixed *) 0; local 1975 GLfixed *params = (GLfixed *) 0; local 2017 GLfixed *params = (GLfixed *) 0; local 2054 GLfixed *params = (GLfixed *) 0; local 2096 GLfixed *params = (GLfixed *) 0; local 2338 GLint *params = (GLint *) 0; local 2389 GLint *params = (GLint *) 0; local 2655 GLint *params = (GLint *) 0; local 2707 GLint *params = (GLint *) 0; local 3028 GLfloat *params = (GLfloat *) 0; local 3070 GLfloat *params = (GLfloat *) 0; local 3107 GLint *params = (GLint *) 0; local 3149 GLint *params = (GLint *) 0; local 3186 GLfixed *params = (GLfixed *) 0; local 3228 GLfixed *params = (GLfixed *) 0; local 3254 GLfloat *params = (GLfloat *) 0; local 3296 GLfloat *params = (GLfloat *) 0; local 3322 GLint *params = (GLint *) 0; local 3364 GLint *params = (GLint *) 0; local 3390 GLfixed *params = (GLfixed *) 0; local 3432 GLfixed *params = (GLfixed *) 0; local [all...] |
com_google_android_gles_jni_GLImpl.cpp | 773 /* void glFogfv ( GLenum pname, const GLfloat *params ) */ 782 GLfloat *params = (GLfloat *) 0; local 787 _exceptionMessage = "params == null"; 830 params = params_base + offset; 834 (GLfloat *)params 847 /* void glFogfv ( GLenum pname, const GLfloat *params ) */ 857 GLfloat *params = (GLfloat *) 0; local 859 params = (GLfloat *)getPointer(_env, params_buf, &_array, &_remaining, &_bufferOffset); 891 if (params == NULL) { 893 params = (GLfloat *) (_paramsBase + _bufferOffset) 928 GLfixed *params = (GLfixed *) 0; local 1003 GLfixed *params = (GLfixed *) 0; local 1196 GLint *params = (GLint *) 0; local 1577 GLint *params = (GLint *) 0; local 1969 GLfloat *params = (GLfloat *) 0; local 2035 GLfloat *params = (GLfloat *) 0; local 2097 GLfixed *params = (GLfixed *) 0; local 2163 GLfixed *params = (GLfixed *) 0; local 2226 GLfloat *params = (GLfloat *) 0; local 2319 GLfloat *params = (GLfloat *) 0; local 2409 GLfixed *params = (GLfixed *) 0; local 2502 GLfixed *params = (GLfixed *) 0; local 2754 GLfloat *params = (GLfloat *) 0; local 2833 GLfloat *params = (GLfloat *) 0; local 2909 GLfixed *params = (GLfixed *) 0; local 2988 GLfixed *params = (GLfixed *) 0; local 3532 GLfloat *params = (GLfloat *) 0; local 3605 GLfloat *params = (GLfloat *) 0; local 3675 GLfixed *params = (GLfixed *) 0; local 3748 GLfixed *params = (GLfixed *) 0; local 4565 GLboolean *params = (GLboolean *) 0; local 4606 GLboolean *params = (GLboolean *) 0; local 4779 GLfixed *params = (GLfixed *) 0; local 4820 GLfixed *params = (GLfixed *) 0; local 4845 GLfloat *params = (GLfloat *) 0; local 4886 GLfloat *params = (GLfloat *) 0; local 4911 GLfloat *params = (GLfloat *) 0; local 5004 GLfloat *params = (GLfloat *) 0; local 5083 GLfixed *params = (GLfixed *) 0; local 5176 GLfixed *params = (GLfixed *) 0; local 5255 GLfloat *params = (GLfloat *) 0; local 5334 GLfloat *params = (GLfloat *) 0; local 5399 GLfixed *params = (GLfixed *) 0; local 5478 GLfixed *params = (GLfixed *) 0; local 5543 GLint *params = (GLint *) 0; local 5616 GLint *params = (GLint *) 0; local 5675 GLfixed *params = (GLfixed *) 0; local 5748 GLfixed *params = (GLfixed *) 0; local 5807 GLfloat *params = (GLfloat *) 0; local 5858 GLfloat *params = (GLfloat *) 0; local 5895 GLint *params = (GLint *) 0; local 5946 GLint *params = (GLint *) 0; local 5983 GLfixed *params = (GLfixed *) 0; local 6034 GLfixed *params = (GLfixed *) 0; local 6125 GLfloat *params = (GLfloat *) 0; local 6175 GLfloat *params = (GLfloat *) 0; local 6221 GLfixed *params = (GLfixed *) 0; local 6271 GLfixed *params = (GLfixed *) 0; local 6353 GLint *params = (GLint *) 0; local 6426 GLint *params = (GLint *) 0; local 6485 GLfloat *params = (GLfloat *) 0; local 6536 GLfloat *params = (GLfloat *) 0; local 6584 GLint *params = (GLint *) 0; local 6635 GLint *params = (GLint *) 0; local 6672 GLfixed *params = (GLfixed *) 0; local 6723 GLfixed *params = (GLfixed *) 0; local 7778 GLint *params = (GLint *) 0; local 7826 GLint *params = (GLint *) 0; local 7858 GLint *params = (GLint *) 0; local 7905 GLint *params = (GLint *) 0; local 7936 GLfloat *params = (GLfloat *) 0; local 7983 GLfloat *params = (GLfloat *) 0; local 8014 GLint *params = (GLint *) 0; local 8061 GLint *params = (GLint *) 0; local 8092 GLint *params = (GLint *) 0; local 8139 GLint *params = (GLint *) 0; local 8235 GLfloat *params = (GLfloat *) 0; local 8282 GLfloat *params = (GLfloat *) 0; local 8329 GLint *params = (GLint *) 0; local 8376 GLint *params = (GLint *) 0; local 8423 GLint *params = (GLint *) 0; local 8470 GLint *params = (GLint *) 0; local [all...] |
/external/chromium/chrome/browser/ui/views/ |
shell_dialogs_win.cc | 550 void* params); 565 void* params) 573 params(params) { 588 void* params; member in struct:SelectFileDialogImpl::ExecuteSelectParams 593 void ExecuteSelectFile(const ExecuteSelectParams& params); 597 void* params, RunState run_state); 600 void MultiFilesSelected(const std::vector<FilePath>& paths, void* params, 605 void FileNotSelected(void* params, RunState run_state); 655 void* params) { [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/dec/ |
SoftAMR.cpp | 31 static void InitOMXParams(T *params) { 32 params->nSize = sizeof(T); 33 params->nVersion.s.nVersionMajor = 1; 34 params->nVersion.s.nVersionMinor = 0; 35 params->nVersion.s.nRevision = 0; 36 params->nVersion.s.nStep = 0; 144 OMX_INDEXTYPE index, OMX_PTR params) { 149 (OMX_AUDIO_PARAM_AMRTYPE *)params; 175 (OMX_AUDIO_PARAM_PCMMODETYPE *)params; 198 return SimpleSoftOMXComponent::internalGetParameter(index, params); [all...] |
/external/apache-http/src/org/apache/http/conn/ |
MultihomePlainSocketFactory.java | 46 import org.apache.http.params.HttpConnectionParams; 47 import org.apache.http.params.HttpParams; 95 * @param params HTTP parameters 102 HttpParams params) 108 if (params == null) { 126 int timeout = HttpConnectionParams.getConnectionTimeout(params);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
RC4Engine.java | 6 import org.bouncycastle.crypto.params.KeyParameter; 26 * @param params the parameters required to set up the cipher. 27 * @exception IllegalArgumentException if the params argument is 32 CipherParameters params 35 if (params instanceof KeyParameter) 42 workingKey = ((KeyParameter)params).getKey(); 48 throw new IllegalArgumentException("invalid parameter passed to RC4 init - " + params.getClass().getName());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
BCECPublicKey.java | 27 import org.bouncycastle.crypto.params.ECDomainParameters; 28 import org.bouncycastle.crypto.params.ECPublicKeyParameters; 101 ECPublicKeyParameters params, 105 ECDomainParameters dp = params.getParameters(); 108 this.q = params.getQ(); 126 ECPublicKeyParameters params, 130 ECDomainParameters dp = params.getParameters(); 133 this.q = params.getQ(); 156 ECPublicKeyParameters params, 160 this.q = params.getQ() 197 X962Parameters params = new X962Parameters((ASN1Primitive)info.getAlgorithm().getParameters()); local 280 ASN1Encodable params; local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
JCEECPublicKey.java | 33 import org.bouncycastle.crypto.params.ECDomainParameters; 34 import org.bouncycastle.crypto.params.ECPublicKeyParameters; 109 ECPublicKeyParameters params, 112 ECDomainParameters dp = params.getParameters(); 115 this.q = params.getQ(); 131 ECPublicKeyParameters params, 134 ECDomainParameters dp = params.getParameters(); 137 this.q = params.getQ(); 158 ECPublicKeyParameters params) 161 this.q = params.getQ() 243 X962Parameters params = new X962Parameters((ASN1Primitive)info.getAlgorithmId().getParameters()); local 327 ASN1Encodable params; local [all...] |
/external/chromium/chrome/browser/autocomplete/ |
history_url_provider.h | 80 // immediately and calls back to the main thread. (We don't delete the params 167 HistoryURLProviderParams* params); 173 HistoryURLProviderParams* params); 209 const HistoryURLProviderParams& params, 257 bool PromoteMatchForInlineAutocomplete(HistoryURLProviderParams* params, 288 HistoryURLProviderParams* params, 296 // Params for the current query. The provider should not free this directly;
|
/external/chromium/chrome/browser/net/ |
load_timing_observer.h | 72 net::NetLog::EventParameters* params); 89 net::NetLog::EventParameters* params); 95 net::NetLog::EventParameters* params); 101 net::NetLog::EventParameters* params); 107 net::NetLog::EventParameters* params);
|
/external/llvm/include/llvm/IR/ |
TypeBuilder.h | 256 Type *params[] = { local 260 params, false); 267 Type *params[] = { local 272 params, false); 279 Type *params[] = { local 285 params, false); 294 Type *params[] = { local 301 params, false); 310 Type *params[] = { local 318 params, false) 332 Type *params[] = { local 342 Type *params[] = { local 354 Type *params[] = { local 369 Type *params[] = { local 385 Type *params[] = { local [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAsyncTask.java | 18 public class ShadowAsyncTask<Params, Progress, Result> { 20 @RealObject private AsyncTask<Params, Progress, Result> realAsyncTask; 76 public AsyncTask<Params, Progress, Result> execute(final Params... params) { 80 worker.params = params; 112 private ShadowAsyncTaskBridge<Params, Progress, Result> getBridge() { 113 return new ShadowAsyncTaskBridge<Params, Progress, Result>(realAsyncTask); 117 Params[] params field in class:ShadowAsyncTask.BackgroundWorker [all...] |