Searched refs:root_p (Results 1 – 2 of 2) sorted by relevance
33 def clean_recursive(root_p): argument34 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): argument47 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 …]
2381 StrongCacheNode *root_p = *root; in move_strong_cache_node_to_front() local2382 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()