Home
last modified time | relevance | path

Searched refs:dest_size (Results 1 – 4 of 4) sorted by relevance

/external/bluetooth/glib/glib/
Dgstrfuncs.c1568 gsize dest_size) in g_strlcpy() argument
1573 return strlcpy (dest, src, dest_size); in g_strlcpy()
1579 gsize dest_size) in g_strlcat() argument
1584 return strlcat (dest, src, dest_size); in g_strlcat()
1614 gsize dest_size) in g_strlcpy() argument
1618 register gsize n = dest_size; in g_strlcpy()
1638 if (dest_size != 0) in g_strlcpy()
1676 gsize dest_size) in g_strlcat() argument
1680 register gsize bytes_left = dest_size; in g_strlcat()
1690 bytes_left = dest_size - dlength; in g_strlcat()
Dgstrfuncs.h110 gsize dest_size);
113 gsize dest_size);
/external/qemu/
Dblock.c89 void path_combine(char *dest, int dest_size, in path_combine() argument
96 if (dest_size <= 0) in path_combine()
99 pstrcpy(dest, dest_size, filename); in path_combine()
122 if (len > dest_size - 1) in path_combine()
123 len = dest_size - 1; in path_combine()
126 pstrcat(dest, dest_size, filename); in path_combine()
Dblock.h159 void path_combine(char *dest, int dest_size,