Home
last modified time | relevance | path

Searched refs:MAX_BREAKPOINTS (Results 1 – 1 of 1) sorted by relevance

/xnu-11417.121.6/osfmk/kdp/
H A Dkdp.c102 #define MAX_BREAKPOINTS 100 macro
118 static kdp_breakpoint_record_t breakpoint_list[MAX_BREAKPOINTS];
940 for (i = 0; (i < MAX_BREAKPOINTS); breakpoint_list[i].address = 0, i++) { in kdp_set_breakpoint_internal()
954 for (i = 0; (i < MAX_BREAKPOINTS) && (breakpoint_list[i].address != 0); i++) { in kdp_set_breakpoint_internal()
958 if (i == MAX_BREAKPOINTS) { in kdp_set_breakpoint_internal()
979 for (i = 0; (i < MAX_BREAKPOINTS) && (breakpoint_list[i].address != address); i++) { in kdp_remove_breakpoint_internal()
983 if (i == MAX_BREAKPOINTS) { in kdp_remove_breakpoint_internal()
1000 for (i = 0; i < MAX_BREAKPOINTS; i++) { in kdp_remove_all_breakpoints()