Lines Matching defs:newobj
2043 char *newobj;
2054 newobj = xstrdup (match_name + (word - text));
2060 newobj = (char *) xmalloc (text - word + len + 1);
2061 memcpy (newobj, word, text - word);
2062 memcpy (newobj + (text - word), match_name, len + 1);
2065 return newobj;
2074 char *newobj = make_completion_match_str_1 (match_name, text, word);
2075 if (newobj == NULL)
2076 newobj = xstrdup (match_name);
2077 return gdb::unique_xmalloc_ptr<char> (newobj);
2086 char *newobj = make_completion_match_str_1 (match_name.get (), text, word);
2087 if (newobj == NULL)
2089 return gdb::unique_xmalloc_ptr<char> (newobj);