Home | History | Annotate | Download | only in gold

Lines Matching refs:pv

3184 script_string_sort_list_add(String_sort_list_ptr pv,
3187 if (pv == NULL)
3191 pv->push_back(*string_sort);
3192 return pv;
3209 script_string_list_push_back(String_list_ptr pv, const char* str, size_t len)
3211 if (pv == NULL)
3215 pv->push_back(std::string(str, len));
3216 return pv;