Searched defs:ctx1 (Results 1 - 4 of 4) sorted by relevance

/external/valgrind/main/memcheck/tests/linux/
H A Dstack_changes.c15 mycontext ctx1, ctx2, oldc; variable
57 int c1 = init_context(&ctx1);
60 makecontext(&ctx1, (void (*)()) hello, 1, &ctx2);
61 makecontext(&ctx2, (void (*)()) hello, 1, &ctx1);
63 swapcontext(&oldc, &ctx1);
66 //free(ctx1.uc_stack.ss_sp);
/external/openssh/
H A Dmd5crypt.c57 MD5_CTX ctx, ctx1; local
92 MD5_Init(&ctx1);
93 MD5_Update(&ctx1, pw, strlen(pw));
94 MD5_Update(&ctx1, sp, sl);
95 MD5_Update(&ctx1, pw, strlen(pw));
96 MD5_Final(final, &ctx1);
122 MD5_Init(&ctx1);
124 MD5_Update(&ctx1, pw, strlen(pw));
126 MD5_Update(&ctx1, final, 16);
129 MD5_Update(&ctx1, s
[all...]
/external/libsepol/src/
H A Dmls.c656 context_struct_t *ctx1 = NULL, *ctx2 = NULL; local
657 ctx1 = malloc(sizeof(context_struct_t));
659 if (ctx1 == NULL || ctx2 == NULL)
661 context_init(ctx1);
664 if (mls_from_string(handle, &policydb->p, mls1, ctx1) < 0)
670 *response = mls_range_contains(ctx1->range, ctx2->range);
671 context_destroy(ctx1);
673 free(ctx1);
683 context_destroy(ctx1);
685 free(ctx1);
[all...]
/external/v8/test/cctest/
H A Dtest-heap.cc1347 v8::Persistent<v8::Context> ctx1 = v8::Context::New(); local
1349 ctx1->Enter();
1357 v8::Local<v8::Value> v = ctx1->Global()->Get(v8_str("v"));
1368 ctx1->Exit();
1369 ctx1.Dispose();
1384 v8::Persistent<v8::Context> ctx1 = v8::Context::New(); local
1386 ctx1->Enter();
1394 v8::Local<v8::Value> v = ctx1->Global()->Get(v8_str("v"));
1405 ctx1->Exit();
1406 ctx1
1419 v8::Persistent<v8::Context> ctx1 = v8::Context::New(); local
1454 v8::Persistent<v8::Context> ctx1 = v8::Context::New(); local
[all...]

Completed in 146 milliseconds