HomeSort by: relevance | last modified time | path
    Searched defs:newobj (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/external/gpl3/gdb.old/dist/gdb/
namespace.c 47 struct using_direct *newobj; local
86 alloc_len = (sizeof(*newobj)
87 + (excludes.size () * sizeof(*newobj->excludes)));
88 newobj = (struct using_direct *) obstack_alloc (obstack, alloc_len);
89 memset (newobj, 0, sizeof (*newobj));
91 newobj->import_src = src;
92 newobj->import_dest = dest;
93 newobj->alias = alias;
94 newobj->declaration = declaration
    [all...]
bcache.c 193 struct bstring *newobj
197 memcpy (&newobj->d.data, addr, length);
198 newobj->length = length;
199 newobj->next = m_bucket[hash_index];
200 newobj->half_hash = half_hash;
201 m_bucket[hash_index] = newobj;
210 return &newobj->d.data;
191 struct bstring *newobj local
varobj.h 85 std::vector<struct varobj *> newobj; member in struct:varobj_update_result
buildsym.c 1134 struct context_stack *newobj = &m_context_stack.emplace_back ();
1136 newobj->depth = desc;
1137 newobj->locals = m_local_symbols;
1138 newobj->old_blocks = m_pending_blocks;
1139 newobj->start_addr = valu;
1140 newobj->local_using_directives = m_local_using_directives;
1141 newobj->name = NULL;
1146 return newobj;
1131 struct context_stack *newobj = &m_context_stack.emplace_back (); local
solib-darwin.c 275 auto &newobj = sos.emplace_back (); local
279 newobj.so_name = file_path.get ();
280 newobj.so_original_name = newobj.so_name;
283 newobj.lm_info = std::move (li);
macrotab.c 459 struct macro_source_file *newobj;
501 newobj = new_source_file (source->table, included);
502 newobj->included_by = source;
503 newobj->included_at_line = line;
504 newobj->next_included = *link;
505 *link = newobj;
507 return newobj;
455 struct macro_source_file *newobj; local
cp-support.c 378 struct demangle_component newobj; local
381 newobj.type = DEMANGLE_COMPONENT_NAME;
382 newobj.u.s_name.s = obstack_strdup (&info->obstack, buf.string ());
383 newobj.u.s_name.len = buf.size ();
384 if (inspect_type (info, &newobj, finder, data))
395 = cp_comp_to_string (&newobj, 100);
minsyms.c 763 int newobj; local
835 newobj = (lo + hi) / 2;
836 if ((msymbol[newobj].unrelocated_address () >= unrel_pc)
837 || (lo == newobj))
839 hi = newobj;
843 lo = newobj;
1189 struct msym_bunch *newobj;
1218 newobj = XCNEW (struct msym_bunch);
1220 newobj->next = m_msym_bunch;
1221 m_msym_bunch = newobj;
1188 struct msym_bunch *newobj; local
    [all...]
objc-lang.c 426 struct selname *newobj = XNEW (struct selname); local
428 newobj->next = selname_chain;
429 newobj->msglist_len = msglist_len;
430 newobj->msglist_sel = msglist_sel;
434 selname_chain = newobj;
xcoffread.c 948 struct context_stack *newobj;
1294 newobj = push_context (0, fcn_start_addr + off);
1296 newobj->name = define_symbol
1299 if (newobj->name != NULL)
1300 newobj->name->set_section_index (SECT_OFF_TEXT (objfile));
1396 newobj = push_context (depth,
943 struct context_stack *newobj; local
coffread.c 863 struct context_stack *newobj = nullptr;
1145 newobj = push_context (depth, fcn_start_addr);
1147 newobj->name =
1171 if (!outermost_context_p () || newobj == NULL)
2059 struct nextfield *newobj;
2086 newobj = XALLOCA (struct nextfield);
2087 newobj->next = list;
2088 list = newobj;
2103 newobj = XALLOCA (struct nextfield);
2104 newobj->next = list
859 struct context_stack *newobj = nullptr; local
2047 struct nextfield *newobj; local
    [all...]
completer.c 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);
2042 char *newobj; local
2073 char *newobj = make_completion_match_str_1 (match_name, text, word); local
2085 char *newobj = make_completion_match_str_1 (match_name.get (), text, word); local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
namespace.c 47 struct using_direct *newobj; local
86 alloc_len = (sizeof(*newobj)
87 + (excludes.size () * sizeof(*newobj->excludes)));
88 newobj = (struct using_direct *) obstack_alloc (obstack, alloc_len);
89 memset (newobj, 0, sizeof (*newobj));
91 newobj->import_src = src;
92 newobj->import_dest = dest;
93 newobj->alias = alias;
94 newobj->declaration = declaration
    [all...]
bcache.c 193 struct bstring *newobj
197 memcpy (&newobj->d.data, addr, length);
198 newobj->length = length;
199 newobj->next = m_bucket[hash_index];
200 newobj->half_hash = half_hash;
201 m_bucket[hash_index] = newobj;
210 return &newobj->d.data;
191 struct bstring *newobj local
varobj.h 85 std::vector<struct varobj *> newobj; member in struct:varobj_update_result
buildsym.c 1134 struct context_stack *newobj = &m_context_stack.emplace_back ();
1136 newobj->depth = desc;
1137 newobj->locals = m_local_symbols;
1138 newobj->old_blocks = m_pending_blocks;
1139 newobj->start_addr = valu;
1140 newobj->local_using_directives = m_local_using_directives;
1141 newobj->name = NULL;
1146 return newobj;
1131 struct context_stack *newobj = &m_context_stack.emplace_back (); local
solib-darwin.c 272 auto &newobj = sos.emplace_back (*this); local
276 newobj.name = file_path.get ();
277 newobj.original_name = newobj.name;
280 newobj.lm_info = std::move (li);
macrotab.c 459 struct macro_source_file *newobj;
501 newobj = new_source_file (source->table, included);
502 newobj->included_by = source;
503 newobj->included_at_line = line;
504 newobj->next_included = *link;
505 *link = newobj;
507 return newobj;
455 struct macro_source_file *newobj; local
cp-support.c 378 struct demangle_component newobj; local
381 cplus_demangle_fill_name (&newobj,
385 if (inspect_type (info, &newobj, finder, data))
396 = cp_comp_to_string (&newobj, 100);
minsyms.c 763 int newobj; local
835 newobj = (lo + hi) / 2;
836 if ((msymbol[newobj].unrelocated_address () >= unrel_pc)
837 || (lo == newobj))
839 hi = newobj;
843 lo = newobj;
1189 struct msym_bunch *newobj;
1218 newobj = XCNEW (struct msym_bunch);
1220 newobj->next = m_msym_bunch;
1221 m_msym_bunch = newobj;
1188 struct msym_bunch *newobj; local
    [all...]
objc-lang.c 426 struct selname *newobj = XNEW (struct selname); local
428 newobj->next = selname_chain;
429 newobj->msglist_len = msglist_len;
430 newobj->msglist_sel = msglist_sel;
434 selname_chain = newobj;
  /src/games/hack/
def.obj.h 108 #define newobj(xl) ((struct obj *) alloc((xl) + sizeof(struct obj))) macro
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dsl_deadlist.c 328 uint64_t newobj; local
330 newobj = dsl_deadlist_alloc(dl->dl_os, tx);
333 dsl_deadlist_regenerate(dl->dl_os, newobj, mrs_obj, tx);
334 return (newobj);
347 VERIFY3U(0, ==, zap_add_int_key(dl->dl_os, newobj,
350 return (newobj);
  /src/external/gpl3/gdb.old/dist/gdb/cli/
cli-setshow.c 344 std::string newobj;
348 newobj.reserve (strlen (arg));
367 newobj.push_back (ch);
370 newobj.push_back (ch);
372 newobj.shrink_to_fit ();
374 option_changed = c->var->set<std::string> (std::move (newobj));
342 std::string newobj; local
  /src/external/gpl3/gdb/dist/gdb/cli/
cli-setshow.c 349 std::string newobj;
353 newobj.reserve (strlen (arg));
372 newobj.push_back (ch);
375 newobj.push_back (ch);
377 newobj.shrink_to_fit ();
379 option_changed = c->var->set<std::string> (std::move (newobj));
347 std::string newobj; local

Completed in 62 milliseconds

1 2