Searched refs:newobj (Results 1 - 25 of 97) sorted by relevance

1234

/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dnamespace.c47 struct using_direct *newobj; local
83 alloc_len = (sizeof(*newobj)
84 + (excludes.size () * sizeof(*newobj->excludes)));
85 newobj = (struct using_direct *) obstack_alloc (obstack, alloc_len);
86 memset (newobj, 0, sizeof (*newobj));
90 newobj->import_src = obstack_strdup (obstack, src);
91 newobj->import_dest = obstack_strdup (obstack, dest);
95 newobj->import_src = src;
96 newobj
[all...]
H A Dcontinuations.c42 struct continuation *newobj = XNEW (struct continuation); local
44 newobj->next = *pmy_chain;
45 newobj->function = function;
46 newobj->free_arg = free_arg;
47 newobj->arg = arg;
48 *pmy_chain = newobj;
H A Dbcache.c194 struct bstring *newobj
198 memcpy (&newobj->d.data, addr, length);
199 newobj->length = length;
200 newobj->next = m_bucket[hash_index];
201 newobj->half_hash = half_hash;
202 m_bucket[hash_index] = newobj;
211 return &newobj->d.data;
192 struct bstring *newobj local
H A Dsolib-darwin.c282 gdb::unique_xmalloc_ptr<struct so_list> newobj (XCNEW (struct so_list));
285 newobj->lm_info = li;
287 strncpy (newobj->so_name, file_path.get (), SO_NAME_MAX_PATH_SIZE - 1);
288 newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
289 strcpy (newobj->so_original_name, newobj->so_name);
293 head = newobj.get ();
295 tail->next = newobj.get ();
296 tail = newobj.release ();
H A Dsolib-svr4.c1110 struct so_list *newobj; local
1112 newobj = XNEW (struct so_list);
1113 memcpy (newobj, src, sizeof (struct so_list));
1116 newobj->lm_info = new lm_info_svr4 (*src_li);
1118 newobj->next = NULL;
1119 *link = newobj;
1120 link = &newobj->next;
1295 struct so_list *newobj; local
1300 newobj = XCNEW (struct so_list);
1302 newobj
[all...]
H A Dmemattr.c128 mem_region newobj (lo, hi, attrib);
132 newobj);
156 newobj.number = ++mem_number;
157 user_mem_region_list.insert (it, newobj);
H A Dmacrotab.c458 struct macro_source_file *newobj;
500 newobj = new_source_file (source->table, included);
501 newobj->included_by = source;
502 newobj->included_at_line = line;
503 newobj->next_included = *link;
504 *link = newobj;
506 return newobj;
454 struct macro_source_file *newobj; local
H A Dminsyms.c684 int newobj; local
756 newobj = (lo + hi) / 2;
757 if ((MSYMBOL_VALUE_RAW_ADDRESS (&msymbol[newobj]) >= pc)
758 || (lo == newobj))
760 hi = newobj;
764 lo = newobj;
1113 struct msym_bunch *newobj;
1141 newobj = XCNEW (struct msym_bunch);
1143 newobj->next = m_msym_bunch;
1144 m_msym_bunch = newobj;
1112 struct msym_bunch *newobj; local
[all...]
H A Dstabsread.c1783 struct type_list *newobj = XALLOCA (struct type_list);
1784 newobj->type = arg_type;
1785 newobj->next = arg_types;
1786 arg_types = newobj;
2936 struct nextfield *newobj;
2952 newobj = OBSTACK_ZALLOC (&fip->obstack, struct nextfield);
2954 newobj->next = fip->list;
2955 fip->list = newobj;
3033 struct nextfield *newobj;
3073 newobj
1779 struct type_list *newobj = XALLOCA (struct type_list); local
2930 struct nextfield *newobj; local
3027 struct nextfield *newobj; local
4254 struct pending *newobj = 0; local
[all...]
H A Dvarobj.c634 std::vector<varobj *> *newobj,
645 if (newobj != NULL)
647 newobj->push_back (child);
718 std::vector<varobj *> *newobj,
779 can_mention ? newobj : NULL,
1528 struct value *newobj;
1555 newobj = value_of_root (varp, &type_changed);
1556 if (update_type_if_necessary (*varp, newobj))
1560 if (install_new_value ((*varp), newobj, type_changed))
1563 if (newobj
630 install_dynamic_child(struct varobj *var, std::vector<varobj *> *changed, std::vector<varobj *> *type_changed, std::vector<varobj *> *newobj, std::vector<varobj *> *unchanged, bool *cchanged, int index, struct varobj_item *item) argument
714 update_dynamic_varobj_children(struct varobj *var, std::vector<varobj *> *changed, std::vector<varobj *> *type_changed, std::vector<varobj *> *newobj, std::vector<varobj *> *unchanged, bool *cchanged, bool update_children, int from, int to) argument
1527 struct value *newobj; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dnamespace.c47 struct using_direct *newobj; local
83 alloc_len = (sizeof(*newobj)
84 + (excludes.size () * sizeof(*newobj->excludes)));
85 newobj = (struct using_direct *) obstack_alloc (obstack, alloc_len);
86 memset (newobj, 0, sizeof (*newobj));
90 newobj->import_src = obstack_strdup (obstack, src);
91 newobj->import_dest = obstack_strdup (obstack, dest);
95 newobj->import_src = src;
96 newobj
[all...]
H A Dbcache.c194 struct bstring *newobj
198 memcpy (&newobj->d.data, addr, length);
199 newobj->length = length;
200 newobj->next = m_bucket[hash_index];
201 newobj->half_hash = half_hash;
202 m_bucket[hash_index] = newobj;
211 return &newobj->d.data;
192 struct bstring *newobj local
H A Dsolib-darwin.c285 gdb::unique_xmalloc_ptr<struct so_list> newobj (XCNEW (struct so_list));
288 newobj->lm_info = li;
290 strncpy (newobj->so_name, file_path.get (), SO_NAME_MAX_PATH_SIZE - 1);
291 newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
292 strcpy (newobj->so_original_name, newobj->so_name);
296 head = newobj.get ();
298 tail->next = newobj.get ();
299 tail = newobj.release ();
H A Dmemattr.c128 mem_region newobj (lo, hi, attrib);
132 newobj);
156 newobj.number = ++mem_number;
157 user_mem_region_list.insert (it, newobj);
H A Dmacrotab.c459 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
H A Dminsyms.c731 int newobj; local
803 newobj = (lo + hi) / 2;
804 if ((msymbol[newobj].value_raw_address () >= pc)
805 || (lo == newobj))
807 hi = newobj;
811 lo = newobj;
1160 struct msym_bunch *newobj;
1187 newobj = XCNEW (struct msym_bunch);
1189 newobj->next = m_msym_bunch;
1190 m_msym_bunch = newobj;
1159 struct msym_bunch *newobj; local
[all...]
H A Dstabsread.c1791 struct type_list *newobj = XALLOCA (struct type_list);
1792 newobj->type = arg_type;
1793 newobj->next = arg_types;
1794 arg_types = newobj;
2939 struct stabs_nextfield *newobj;
2955 newobj = OBSTACK_ZALLOC (&fip->obstack, struct stabs_nextfield);
2957 newobj->next = fip->list;
2958 fip->list = newobj;
3036 struct stabs_nextfield *newobj;
3076 newobj
1787 struct type_list *newobj = XALLOCA (struct type_list); local
2933 struct stabs_nextfield *newobj; local
3030 struct stabs_nextfield *newobj; local
4258 struct pending *newobj = 0; local
[all...]
H A Dsolib-svr4.c1051 struct so_list *newobj; local
1053 newobj = XNEW (struct so_list);
1054 memcpy (newobj, src, sizeof (struct so_list));
1057 newobj->lm_info = new lm_info_svr4 (*src_li);
1059 newobj->next = NULL;
1060 *link = newobj;
1061 link = &newobj->next;
1276 struct so_list *newobj; local
1281 newobj = XCNEW (struct so_list);
1283 newobj
[all...]
H A Dvarobj.c618 std::vector<varobj *> *newobj,
629 if (newobj != NULL)
631 newobj->push_back (child);
693 std::vector<varobj *> *newobj,
742 can_mention ? newobj : NULL,
1485 struct value *newobj;
1512 newobj = value_of_root (varp, &type_changed);
1513 if (update_type_if_necessary (*varp, newobj))
1517 if (install_new_value ((*varp), newobj, type_changed))
1520 if (newobj
614 install_dynamic_child(struct varobj *var, std::vector<varobj *> *changed, std::vector<varobj *> *type_changed, std::vector<varobj *> *newobj, std::vector<varobj *> *unchanged, bool *cchanged, int index, struct varobj_item *item) argument
689 update_dynamic_varobj_children(struct varobj *var, std::vector<varobj *> *changed, std::vector<varobj *> *type_changed, std::vector<varobj *> *newobj, std::vector<varobj *> *unchanged, bool *cchanged, bool update_children, int from, int to) argument
1484 struct value *newobj; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dcleanups.cc78 struct cleanup *newobj = XNEW (struct cleanup); local
81 newobj->next = *pmy_chain;
82 newobj->function = function;
83 newobj->free_arg = free_arg;
84 newobj->arg = arg;
85 *pmy_chain = newobj;
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dcleanups.cc78 struct cleanup *newobj = XNEW (struct cleanup); local
81 newobj->next = *pmy_chain;
82 newobj->function = function;
83 newobj->free_arg = free_arg;
84 newobj->arg = arg;
85 *pmy_chain = newobj;
/netbsd-current/games/hack/
H A Ddef.obj.h108 #define newobj(xl) ((struct obj *) alloc((xl) + sizeof(struct obj))) macro
/netbsd-current/external/gpl3/gdb.old/dist/gdb/cli/
H A Dcli-setshow.c321 char *newobj;
326 newobj = (char *) xmalloc (strlen (arg) + 2);
328 q = newobj;
356 newobj = (char *) xrealloc (newobj, q - newobj);
359 || strcmp (*(char **) c->var, newobj) != 0)
362 *(char **) c->var = newobj;
367 xfree (newobj);
319 char *newobj; local
/netbsd-current/external/gpl3/gdb/dist/gdb/cli/
H A Dcli-setshow.c324 char *newobj;
329 newobj = (char *) xmalloc (strlen (arg) + 2);
331 q = newobj;
359 newobj = (char *) xrealloc (newobj, q - newobj);
361 option_changed = c->var->set<std::string> (std::string (newobj));
362 xfree (newobj);
322 char *newobj; local
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Ddsl_deadlist.c328 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);

Completed in 482 milliseconds

1234