Home
last modified time | relevance | path

Searched refs:rslp (Results 1 – 3 of 3) sorted by relevance

/third_party/gettext/gettext-tools/src/
Drc-str-list.h39 add_reference (refcounted_string_list_ty *rslp) in add_reference() argument
41 if (rslp != NULL) in add_reference()
42 rslp->refcount++; in add_reference()
43 return rslp; in add_reference()
47 drop_reference (refcounted_string_list_ty *rslp) in drop_reference() argument
49 if (rslp != NULL) in drop_reference()
51 if (rslp->refcount > 1) in drop_reference()
52 rslp->refcount--; in drop_reference()
55 string_list_destroy (&rslp->contents); in drop_reference()
56 free (rslp); in drop_reference()
Dxgettext.h91 savable_comment_to_xgettext_comment (refcounted_string_list_ty *rslp);
Dxgettext.c1715 savable_comment_to_xgettext_comment (refcounted_string_list_ty *rslp) in savable_comment_to_xgettext_comment() argument
1718 if (rslp != NULL) in savable_comment_to_xgettext_comment()
1722 for (i = 0; i < rslp->contents.nitems; i++) in savable_comment_to_xgettext_comment()
1723 xgettext_comment_add (rslp->contents.item[i]); in savable_comment_to_xgettext_comment()