Home
last modified time | relevance | path

Searched refs:root_p (Results 1 – 2 of 2) sorted by relevance

/external/libcxx/test/support/
Dfilesystem_dynamic_test_helper.py33 def clean_recursive(root_p): argument
34 if not os.path.islink(root_p):
35 os.chmod(root_p, 0o777)
36 for ent in os.listdir(root_p):
37 p = os.path.join(root_p, ent)
46 def init_test_directory(root_p): argument
47 root_p = sanitize(root_p)
48 assert not os.path.exists(root_p)
49 os.makedirs(root_p)
52 def destroy_test_directory(root_p): argument
[all …]
/external/python/cpython3/Modules/
D_zoneinfo.c2381 StrongCacheNode *root_p = *root; in move_strong_cache_node_to_front() local
2382 if (root_p == node) { in move_strong_cache_node_to_front()
2389 node->next = root_p; in move_strong_cache_node_to_front()
2391 if (root_p != NULL) { in move_strong_cache_node_to_front()
2392 root_p->prev = node; in move_strong_cache_node_to_front()