Lines Matching refs:strptr
22 copy_data(str.strptr); in custom_string()
30 strptr = str.strptr; in custom_string()
31 str.strptr = NULL; in custom_string()
40 copy_data(str.strptr); in operator =()
50 strptr = str.strptr; in operator =()
51 str.strptr = NULL; in operator =()
57 custom_string() : strptr(NULL), len(0) {} in custom_string()
60 if (strptr != NULL) { in ~custom_string()
61 delete (strptr); in ~custom_string()
69 char * strptr; member in custom_string
77 strptr = new char[len + 1]; in copy_data()
78 memcpy(strptr, s, len); in copy_data()
79 strptr[len] = '\0'; in copy_data()