Searched refs:current_ptr (Results 1 – 3 of 3) sorted by relevance
/external/libcxxabi/src/ |
D | private_typeinfo.cpp | 726 const void* current_ptr, in process_static_type_above_dst() argument 731 if (current_ptr == info->static_ptr) in process_static_type_above_dst() 772 const void* current_ptr, in process_static_type_below_dst() argument 775 if (current_ptr == info->static_ptr) in process_static_type_below_dst() 839 const void* current_ptr, in search_below_dst() argument 845 process_static_type_below_dst(info, current_ptr, path_below); in search_below_dst() 850 if (current_ptr == info->dst_ptr_leading_to_static_ptr || in search_below_dst() 851 current_ptr == info->dst_ptr_not_leading_to_static_ptr) in search_below_dst() 887 p->search_above_dst(info, current_ptr, current_ptr, public_path, use_strcmp); in search_below_dst() 929 info->dst_ptr_not_leading_to_static_ptr = current_ptr; in search_below_dst() [all …]
|
/external/llvm-project/libcxxabi/src/ |
D | private_typeinfo.cpp | 751 const void* current_ptr, in process_static_type_above_dst() argument 756 if (current_ptr == info->static_ptr) in process_static_type_above_dst() 797 const void* current_ptr, in process_static_type_below_dst() argument 800 if (current_ptr == info->static_ptr) in process_static_type_below_dst() 864 const void* current_ptr, in search_below_dst() argument 870 process_static_type_below_dst(info, current_ptr, path_below); in search_below_dst() 875 if (current_ptr == info->dst_ptr_leading_to_static_ptr || in search_below_dst() 876 current_ptr == info->dst_ptr_not_leading_to_static_ptr) in search_below_dst() 912 p->search_above_dst(info, current_ptr, current_ptr, public_path, use_strcmp); in search_below_dst() 954 info->dst_ptr_not_leading_to_static_ptr = current_ptr; in search_below_dst() [all …]
|
/external/toybox/lib/ |
D | password.c | 157 char *current_ptr = NULL; in update_password() local 162 current_ptr = get_nextcolon(line, 2); //past passwd in update_password() 165 current_ptr = get_nextcolon(current_ptr, 1); in update_password() 166 fprintf(newfp, "%s\n",current_ptr); in update_password() 167 } else fprintf(newfp, "%s\n",current_ptr); in update_password() 172 current_ptr = get_nextcolon(line, 3); //past gid/admin list in update_password() 173 *current_ptr = '\0'; in update_password()
|