Lines Matching defs:fbsd_core_ops

63 static struct target_ops fbsd_core_ops;
1461 fbsd_core_ops.to_shortname = "FreeBSD-core";
1462 fbsd_core_ops.to_longname = "FreeBSD multithreaded core dump file";
1463 fbsd_core_ops.to_doc =
1465 fbsd_core_ops.to_open = fbsd_core_open;
1466 fbsd_core_ops.to_close = fbsd_core_close;
1467 fbsd_core_ops.to_attach = 0;
1468 fbsd_core_ops.to_post_attach = 0;
1469 fbsd_core_ops.to_detach = fbsd_core_detach;
1470 /* fbsd_core_ops.to_resume = 0; */
1471 /* fbsd_core_ops.to_wait = 0; */
1472 fbsd_core_ops.to_fetch_registers = fbsd_thread_fetch_registers;
1473 /* fbsd_core_ops.to_store_registers = 0; */
1474 /* fbsd_core_ops.to_prepare_to_store = 0; */
1475 fbsd_core_ops.to_xfer_memory = fbsd_thread_xfer_memory;
1476 fbsd_core_ops.to_files_info = fbsd_core_files_info;
1477 fbsd_core_ops.to_insert_breakpoint = ignore;
1478 fbsd_core_ops.to_remove_breakpoint = ignore;
1479 /* fbsd_core_ops.to_lookup_symbol = 0; */
1480 fbsd_core_ops.to_create_inferior = fbsd_thread_create_inferior;
1481 fbsd_core_ops.to_stratum = core_stratum;
1482 fbsd_core_ops.to_has_all_memory = 0;
1483 fbsd_core_ops.to_has_memory = 1;
1484 fbsd_core_ops.to_has_stack = 1;
1485 fbsd_core_ops.to_has_registers = 1;
1486 fbsd_core_ops.to_has_execution = 0;
1487 fbsd_core_ops.to_has_thread_control = tc_none;
1488 fbsd_core_ops.to_thread_alive = fbsd_thread_alive;
1489 fbsd_core_ops.to_pid_to_str = fbsd_thread_pid_to_str;
1490 fbsd_core_ops.to_find_new_threads = fbsd_thread_find_new_threads;
1491 fbsd_core_ops.to_sections = 0;
1492 fbsd_core_ops.to_sections_end = 0;
1493 fbsd_core_ops.to_magic = OPS_MAGIC;
1623 memcpy (&core_ops, &fbsd_core_ops, sizeof (struct target_ops));