Home
last modified time | relevance | path

Searched refs:XMALLOC (Results 1 – 25 of 55) sorted by relevance

123

/NextBSD/contrib/gdb/gdb/
HDgdb-events.c263 struct event *event = XMALLOC (struct event); in queue_breakpoint_create()
272 struct event *event = XMALLOC (struct event); in queue_breakpoint_delete()
281 struct event *event = XMALLOC (struct event); in queue_breakpoint_modify()
290 struct event *event = XMALLOC (struct event); in queue_tracepoint_create()
299 struct event *event = XMALLOC (struct event); in queue_tracepoint_delete()
308 struct event *event = XMALLOC (struct event); in queue_tracepoint_modify()
317 struct event *event = XMALLOC (struct event); in queue_architecture_changed()
325 struct event *event = XMALLOC (struct event); in queue_target_changed()
333 struct event *event = XMALLOC (struct event); in queue_selected_frame_level_changed()
342 struct event *event = XMALLOC (struct event); in queue_selected_thread_changed()
HDreggroups.c43 struct reggroup *group = XMALLOC (struct reggroup); in reggroup_new()
274 add_group (&default_groups, general_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup()
275 add_group (&default_groups, float_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup()
276 add_group (&default_groups, system_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup()
277 add_group (&default_groups, vector_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup()
278 add_group (&default_groups, all_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup()
279 add_group (&default_groups, save_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup()
280 add_group (&default_groups, restore_reggroup, XMALLOC (struct reggroup_el)); in _initialize_reggroup()
HDobserver.c83 struct observer_list *node = XMALLOC (struct observer_list); in xalloc_observer_list_node()
84 node->observer = XMALLOC (struct observer); in xalloc_observer_list_node()
HDser-pipe.c108 state = XMALLOC (struct pipe_state); in pipe_open()
140 struct serial_ops *ops = XMALLOC (struct serial_ops); in _initialize_ser_pipe()
HDsparc64nbsd-tdep.c229 tdep->gregset = XMALLOC (struct regset); in sparc64nbsd_init_abi()
234 tdep->fpregset = XMALLOC (struct regset); in sparc64nbsd_init_abi()
HDcomplaints.c118 (*c) = XMALLOC (struct complaints); in get_complaints()
146 complaint = XMALLOC (struct complain); in find_complaint()
HDsparc64fbsd-tdep.c227 tdep->gregset = XMALLOC (struct regset); in sparc64fbsd_init_abi()
232 tdep->fpregset = XMALLOC (struct regset); in sparc64fbsd_init_abi()
HDsparcnbsd-tdep.c277 tdep->gregset = XMALLOC (struct regset); in sparc32nbsd_init_abi()
282 tdep->fpregset = XMALLOC (struct regset); in sparc32nbsd_init_abi()
HDui-out.c433 end_cleanup_data = XMALLOC (struct ui_out_end_cleanup_data); in make_cleanup_ui_out_end()
603 tempbuf = XMALLOC (struct ui_stream); in ui_out_stream_new()
1028 temphdr = XMALLOC (struct ui_out_hdr); in append_header_to_list()
1143 struct ui_out *uiout = XMALLOC (struct ui_out); in ui_out_new()
HDamd64obsd-tdep.c65 tdep->gregset = XMALLOC (struct regset); in amd64obsd_regset_from_core_section()
HDsparc64obsd-tdep.c187 tdep->gregset = XMALLOC (struct regset); in sparc64obsd_init_abi()
HDi386nbsd-tdep.c88 tdep->gregset = XMALLOC (struct regset); in i386nbsd_aout_regset_from_core_section()
HDi386obsd-tdep.c163 tdep->gregset = XMALLOC (struct regset); in i386obsd_aout_regset_from_core_section()
HDserial.c202 scb = XMALLOC (struct serial); in serial_open()
254 scb = XMALLOC (struct serial); in serial_fdopen()
HDuser-regs.c83 XMALLOC (struct user_reg)); in user_reg_add_builtin()
HDser-tcp.c210 struct serial_ops *ops = XMALLOC (struct serial_ops); in _initialize_ser_tcp()
HDobjfiles.c852 *curr = XMALLOC (struct objfile_data_registration); in register_objfile_data()
854 (*curr)->data = XMALLOC (struct objfile_data); in register_objfile_data()
HDgdbarch.sh1446 struct obstack *obstack = XMALLOC (struct obstack);
1842 (*curr) = XMALLOC (struct gdbarch_data_registration);
1844 (*curr)->data = XMALLOC (struct gdbarch_data);
2083 (*curr) = XMALLOC (struct gdbarch_registration);
/NextBSD/gnu/usr.bin/grep/
HDxalloc.h64 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items))) macro
70 # define NEW(Type, Var) Type *(Var) = XMALLOC (Type, 1)
/NextBSD/usr.bin/fmt/
HDfmt.c253 #define XMALLOC(x) xrealloc(0,x) macro
280 tmp = XMALLOC((len + 1) * sizeof(wchar_t)); in main()
357 output_buffer = XMALLOC((max_length+1) * sizeof(wchar_t)); in main()
643 if (buf==NULL) { length=100; buf=XMALLOC(length * sizeof(wchar_t)); } in get_line()
/NextBSD/contrib/diff/lib/
HDxalloc.h83 # define XMALLOC(type, n) xnmalloc (n, sizeof (type)) macro
/NextBSD/contrib/gdb/gdb/cli/
HDcli-dump.c36 #define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE))) macro
416 d = XMALLOC (struct dump_context); in add_dump_command()
424 d = XMALLOC (struct dump_context); in add_dump_command()
/NextBSD/contrib/gdb/gdb/mi/
HDmi-console.c50 struct mi_console_file *mi_console = XMALLOC (struct mi_console_file); in mi_console_file_new()
HDmi-parse.c153 struct mi_parse *parse = XMALLOC (struct mi_parse); in mi_parse()
HDmi-interp.c71 struct mi_interp *mi = XMALLOC (struct mi_interp); in mi_interpreter_init()

123