/external/valgrind/main/memcheck/tests/linux/ |
H A D | stack_changes.c | 15 mycontext ctx1, ctx2, oldc; variable 58 int c2 = init_context(&ctx2); 60 makecontext(&ctx1, (void (*)()) hello, 1, &ctx2); 61 makecontext(&ctx2, (void (*)()) hello, 1, &ctx1); 68 //free(ctx2.uc_stack.ss_sp);
|
/external/chromium_org/crypto/ |
H A D | secure_hash_unittest.cc | 52 scoped_ptr<crypto::SecureHash> ctx2(crypto::SecureHash::Create( 66 EXPECT_TRUE(ctx2->Deserialize(&data_iterator)); 67 ctx2->Update(input4.data(), input4.size()); 68 ctx2->Update(input5.data(), input5.size()); 70 ctx2->Finish(output2, sizeof(output2));
|
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
H A D | SSLSocketFunctionalTest.java | 69 SSLContext ctx1, ctx2; 72 ctx2 = ctx_other; 84 SSLSocket csocket = (SSLSocket) ctx2 103 SSLContext ctx1, ctx2; 112 ctx2 = (((k & 2) >> 1) > 0) ? context : ctx_other; 122 SSLSocket csocket = (SSLSocket) ctx2
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
H A D | s_server.c | 282 static SSL_CTX *ctx2=NULL; variable 438 ctx2=NULL; 744 if (ctx2) 747 SSL_set_SSL_CTX(s,ctx2); 1588 ctx2=SSL_CTX_new(meth); 1589 if (ctx2 == NULL) 1596 if (ctx2) 1608 if(!SSL_CTX_set_generate_session_id(ctx2, generate_session_id)) 1616 SSL_CTX_set_quiet_shutdown(ctx2,1); 1617 if (bugs) SSL_CTX_set_options(ctx2,SSL_OP_AL [all...] |
H A D | x509.c | 531 X509V3_CTX ctx2; local 554 X509V3_set_ctx_test(&ctx2); 555 X509V3_set_nconf(&ctx2, extconf); 556 if (!X509V3_EXT_add_nconf(extconf, &ctx2, extsect, NULL)) 1204 X509V3_CTX ctx2; local 1206 X509V3_set_ctx(&ctx2, xca, x, NULL, NULL, 0); 1207 X509V3_set_nconf(&ctx2, conf); 1208 if (!X509V3_EXT_add_nconf(conf, &ctx2, section, x)) goto end;
|
/external/libsepol/src/ |
H A D | mls.c | 656 context_struct_t *ctx1 = NULL, *ctx2 = NULL; local 658 ctx2 = malloc(sizeof(context_struct_t)); 659 if (ctx1 == NULL || ctx2 == NULL) 662 context_init(ctx2); 667 if (mls_from_string(handle, &policydb->p, mls2, ctx2) < 0) 670 *response = mls_range_contains(ctx1->range, ctx2->range); 672 context_destroy(ctx2); 674 free(ctx2); 684 context_destroy(ctx2); 686 free(ctx2); [all...] |
/external/openssl/apps/ |
H A D | s_server.c | 282 static SSL_CTX *ctx2=NULL; variable 438 ctx2=NULL; 744 if (ctx2) 747 SSL_set_SSL_CTX(s,ctx2); 1588 ctx2=SSL_CTX_new(meth); 1589 if (ctx2 == NULL) 1596 if (ctx2) 1608 if(!SSL_CTX_set_generate_session_id(ctx2, generate_session_id)) 1616 SSL_CTX_set_quiet_shutdown(ctx2,1); 1617 if (bugs) SSL_CTX_set_options(ctx2,SSL_OP_AL [all...] |
H A D | x509.c | 531 X509V3_CTX ctx2; local 554 X509V3_set_ctx_test(&ctx2); 555 X509V3_set_nconf(&ctx2, extconf); 556 if (!X509V3_EXT_add_nconf(extconf, &ctx2, extsect, NULL)) 1204 X509V3_CTX ctx2; local 1206 X509V3_set_ctx(&ctx2, xca, x, NULL, NULL, 0); 1207 X509V3_set_nconf(&ctx2, conf); 1208 if (!X509V3_EXT_add_nconf(conf, &ctx2, section, x)) goto end;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/ |
H A D | stw_context.c | 98 struct stw_context *ctx2; local 107 ctx2 = stw_lookup_context_locked( dhglrc2 ); 109 if (ctx1 && ctx2 && ctx2->st->share) 110 ret = ctx2->st->share(ctx2->st, ctx1->st);
|
/external/mesa3d/src/gallium/state_trackers/wgl/ |
H A D | stw_context.c | 98 struct stw_context *ctx2; local 107 ctx2 = stw_lookup_context_locked( dhglrc2 ); 109 if (ctx1 && ctx2 && ctx2->st->share) 110 ret = ctx2->st->share(ctx2->st, ctx1->st);
|
/external/chromium_org/v8/test/cctest/ |
H A D | test-heap.cc | 1789 v8::Local<v8::Context> ctx2 = v8::Local<v8::Context>::New(isolate, ctx2p); local 1791 ctx2->Enter(); 1792 ctx2->Global()->Set(v8_str("o"), v); 1799 ctx2->Global()->Set(v8_str("o"), v8::Int32::New(isolate, 0)); 1800 ctx2->Exit(); 1835 v8::Local<v8::Context> ctx2 = v8::Local<v8::Context>::New(isolate, ctx2p); local 1837 ctx2->Enter(); 1838 ctx2->Global()->Set(v8_str("o"), v); 1845 ctx2->Global()->Set(v8_str("o"), v8::Int32::New(isolate, 0)); 1846 ctx2 1879 v8::Local<v8::Context> ctx2 = v8::Local<v8::Context>::New(isolate, ctx2p); local 1923 v8::Local<v8::Context> ctx2 = v8::Local<v8::Context>::New(isolate, ctx2p); local [all...] |
H A D | test-api.cc | 15594 v8::Local<v8::Context> ctx2 = v8::Context::New(isolate); local 15601 ctx2->Enter(); 15602 ctx2->Global()->Set(v8_str("o"), foo); 15609 ctx2->Exit(); 15613 ctx2->Enter(); 15623 ctx2->Exit();
|
/external/conscrypt/src/main/java/org/conscrypt/ |
H A D | NativeCrypto.java | 231 public static native boolean EC_GROUP_cmp(long ctx1, long ctx2); argument 482 public static native int X509_check_issued(long ctx, long ctx2); argument
|