/external/chromium-trace/trace-viewer/third_party/Paste/tests/ |
D | test_config.py | 8 test_key = 'test key' variable 19 lines = ['Variable is: %s\n' % CONFIG[test_key], 20 'Variable is (in environ): %s' % environ['paste.config'][test_key]] 32 supplement = ['Nesting variable is: %s' % CONFIG[test_key], 34 environ['paste.config'][test_key]] 42 config = {test_key: 'test value'} 52 config = {test_key: 'test value'} 54 config = {test_key: 'nesting value'} 67 process_config = {test_key: 'bar', 'process_var': 'foo'} 70 assert CONFIG[test_key] == 'bar' [all …]
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_mac_test.cc | 188 void *TSDAllocWorker(void *test_key) { in TSDAllocWorker() argument 189 if (test_key) { in TSDAllocWorker() 191 pthread_setspecific(*(pthread_key_t*)test_key, mem); in TSDAllocWorker() 198 pthread_key_t test_key; in TEST() local 199 pthread_key_create(&test_key, CallFreeOnWorkqueue); in TEST() 200 PTHREAD_CREATE(&th, NULL, TSDAllocWorker, &test_key); in TEST() 202 pthread_key_delete(test_key); in TEST()
|
D | asan_test.cc | 144 void *TSDWorker(void *test_key) { in TSDWorker() argument 145 if (test_key) { in TSDWorker() 146 pthread_setspecific(*(pthread_key_t*)test_key, (void*)0xfeedface); in TSDWorker() 167 pthread_key_t test_key; in TEST() local 168 pthread_key_create(&test_key, TSDDestructor); in TEST() 169 PTHREAD_CREATE(&th, NULL, TSDWorker, &test_key); in TEST() 171 pthread_key_delete(test_key); in TEST()
|
/external/srtp/googlepatches/ |
D | vidyo-4-srtp-rtx.patch | 99 policy.key = test_key; 147 policy.key = test_key; 155 test_key, 163 test_key, 171 test_key, 179 test_key, 187 test_key, 195 test_key, 203 test_key, 211 test_key,
|
D | vidyo-3-srtp-ws.patch | 821 policy.key = test_key; 868 policy.key = test_key; 876 test_key, 884 test_key, 892 test_key, 900 test_key, 908 test_key, 916 test_key, 924 test_key, 933 test_key,
|
/external/srtp/test/ |
D | srtp_driver.c | 101 extern uint8_t test_key[30]; 323 policy.key = test_key; in main() 1146 unsigned char test_key[30] = { in srtp_validate() local 1185 policy.key = test_key; in srtp_validate() 1317 unsigned char test_key[30] = { variable 1343 test_key, 1368 test_key, 1393 test_key, 1418 test_key, 1443 test_key, [all …]
|
/external/libvpx/libvpx/test/ |
D | vp9_decrypt_test.cc | 24 const uint8_t test_key[16] = { variable 32 dst[i] = src[i] ^ test_key[(offset + i) & 15]; in encrypt_buffer()
|
D | vp8_decrypt_test.cc | 24 const uint8_t test_key[16] = { variable 32 dst[i] = src[i] ^ test_key[(offset + i) & 15]; in encrypt_buffer()
|
/external/v8/tools/testrunner/server/ |
D | local_handler.py | 82 test_key = data[1] 86 self.server.daemon.AddPerfData(test_key, test_duration, arch, mode)
|
D | main.py | 232 def AddPerfData(self, test_key, duration, arch, mode): argument 234 data_store.RawUpdatePerfData(str(test_key), duration)
|
/external/srtp/crypto/test/ |
D | cipher_driver.c | 123 unsigned char test_key[20] = { in main() local 206 status = cipher_init(c, test_key, direction_encrypt); in main()
|
/external/selinux/libsepol/cil/test/unit/ |
D | test_cil_copy_ast.c | 278 char *test_key = test_tree->root->cl_head->cl_head->next->data; in test_cil_copy_classcommon() local 285 …cil_symtab_insert(&test_db->symtab[CIL_SYM_CLASSES], (hashtab_key_t)test_key, (struct cil_symtab_d… in test_cil_copy_classcommon()
|
D | test_cil_build_ast.c | 786 char *test_key = test_tree->root->cl_head->cl_head->next->data; in test_cil_gen_perm_nodes() local 793 …cil_symtab_insert(&test_db->symtab[CIL_SYM_CLASSES], (hashtab_key_t)test_key, (struct cil_symtab_d… in test_cil_gen_perm_nodes() 814 char *test_key = test_tree->root->cl_head->cl_head->next->data; in test_cil_gen_perm_nodes_failgen_neg() local 823 …cil_symtab_insert(&test_db->symtab[CIL_SYM_CLASSES], (hashtab_key_t)test_key, (struct cil_symtab_d… in test_cil_gen_perm_nodes_failgen_neg() 844 char *test_key = test_tree->root->cl_head->cl_head->next->data; in test_cil_gen_perm_nodes_inval_perm_neg() local 851 …cil_symtab_insert(&test_db->symtab[CIL_SYM_CLASSES], (hashtab_key_t)test_key, (struct cil_symtab_d… in test_cil_gen_perm_nodes_inval_perm_neg() 10590 char *test_key = test_tree->root->cl_head->cl_head->next->data; in test_cil_gen_classcommon() local 10597 …cil_symtab_insert(&test_db->symtab[CIL_SYM_CLASSES], (hashtab_key_t)test_key, (struct cil_symtab_d… in test_cil_gen_classcommon() 10680 char *test_key = test_tree->root->cl_head->cl_head->next->data; in test_cil_gen_classcommon_noperms_neg() local 10687 …cil_symtab_insert(&test_db->symtab[CIL_SYM_CLASSES], (hashtab_key_t)test_key, (struct cil_symtab_d… in test_cil_gen_classcommon_noperms_neg() [all …]
|