HomeSort by relevance Sort by last modified time
    Searched refs:test_key (Results 1 - 13 of 13) sorted by null

  /external/compiler-rt/lib/asan/tests/
asan_mac_test.cc 188 void *TSDAllocWorker(void *test_key) {
189 if (test_key) {
191 pthread_setspecific(*(pthread_key_t*)test_key, mem);
198 pthread_key_t test_key; local
199 pthread_key_create(&test_key, CallFreeOnWorkqueue);
200 PTHREAD_CREATE(&th, NULL, TSDAllocWorker, &test_key);
202 pthread_key_delete(test_key);
asan_test.cc 144 void *TSDWorker(void *test_key) {
145 if (test_key) {
146 pthread_setspecific(*(pthread_key_t*)test_key, (void*)0xfeedface);
167 pthread_key_t test_key; local
168 pthread_key_create(&test_key, TSDDestructor);
169 PTHREAD_CREATE(&th, NULL, TSDWorker, &test_key);
171 pthread_key_delete(test_key);
    [all...]
  /external/libvpx/libvpx/test/
vp8_decrypt_test.cc 24 const uint8_t test_key[16] = { 0x01, 0x12, 0x23, 0x34, 0x45, 0x56, 0x67, 0x78, member in namespace:__anon26051
30 dst[i] = src[i] ^ test_key[(offset + i) & 15];
vp9_decrypt_test.cc 24 const uint8_t test_key[16] = { 0x01, 0x12, 0x23, 0x34, 0x45, 0x56, 0x67, 0x78, member in namespace:__anon26060
30 dst[i] = src[i] ^ test_key[(offset + i) & 15];
  /external/toolchain-utils/crosperf/
results_organizer.py 191 for test_key in benchmark_run.result.keyvals:
192 if show_all_results or test_key in summary_list:
193 cur_dict[test_key] = benchmark_run.result.keyvals[test_key]
results_report.py 374 test_key = cur_row_data[0].string_value
375 title = '{0}: {1}'.format(item, test_key.replace('/', ''))
  /system/iot/attestation/atap/test/
atap_command_unittest.cpp 51 std::string test_key; local
55 &test_key));
56 fake_ops_.SetEcdhKeyForTesting(test_key.data(), test_key.length());
  /external/v8/tools/testrunner/server/
local_handler.py 82 test_key = data[1]
86 self.server.daemon.AddPerfData(test_key, test_duration, arch, mode)
main.py 232 def AddPerfData(self, test_key, duration, arch, mode):
234 data_store.RawUpdatePerfData(str(test_key), duration)
  /external/lisa/libs/utils/
test.py 236 test_key = (experiment.wload_name, experiment.conf['tag'])
237 failures[test_key] = failures.get(test_key, []) + [msg]
  /cts/tests/tests/networksecurityconfig/networksecurityconfig-downloadmanager/src/android/security/net/config/cts/
DownloadManagerTest.java 69 SSLServerSocket serverSocket = bindTLSServer(R.raw.valid_chain, R.raw.test_key);
75 SSLServerSocket serverSocket = bindTLSServer(R.raw.invalid_chain, R.raw.test_key);
  /external/selinux/libsepol/cil/test/unit/
test_cil_build_ast.c 786 char *test_key = test_tree->root->cl_head->cl_head->next->data; local
793 cil_symtab_insert(&test_db->symtab[CIL_SYM_CLASSES], (hashtab_key_t)test_key, (struct cil_symtab_datum*)test_cls, test_ast_node);
814 char *test_key = test_tree->root->cl_head->cl_head->next->data; local
823 cil_symtab_insert(&test_db->symtab[CIL_SYM_CLASSES], (hashtab_key_t)test_key, (struct cil_symtab_datum*)test_cls, test_ast_node);
844 char *test_key = test_tree->root->cl_head->cl_head->next->data; local
851 cil_symtab_insert(&test_db->symtab[CIL_SYM_CLASSES], (hashtab_key_t)test_key, (struct cil_symtab_datum*)test_cls, test_ast_node);
10590 char *test_key = test_tree->root->cl_head->cl_head->next->data; local
10680 char *test_key = test_tree->root->cl_head->cl_head->next->data; local
10708 char *test_key = test_tree->root->cl_head->cl_head->next->data; local
    [all...]
test_cil_copy_ast.c 278 char *test_key = test_tree->root->cl_head->cl_head->next->data; local
285 cil_symtab_insert(&test_db->symtab[CIL_SYM_CLASSES], (hashtab_key_t)test_key, (struct cil_symtab_datum*)test_cls, test_ast_node);
    [all...]

Completed in 391 milliseconds