Lines Matching refs:cond_string
178 char *cond_string, enum bptype bp_kind);
181 char *cond_string,
201 static void create_exception_catchpoint (int tempflag, char *cond_string,
318 #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \ argument
328 #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename,cond_string) \ argument
554 if (b->cond_string != NULL) in condition_command()
555 xfree (b->cond_string); in condition_command()
560 b->cond_string = NULL; in condition_command()
569 b->cond_string = savestring (arg, strlen (arg)); in condition_command()
3534 if (b->pending && b->cond_string) in print_one_breakpoint()
3538 ui_out_field_string (uiout, "cond", b->cond_string); in print_one_breakpoint()
4310 char **cond_string = (char **) NULL; in resolve_pending_breakpoint() local
4517 char *cond_string, enum bptype bp_kind) in solib_load_unload_1() argument
4567 b->cond_string = (cond_string == NULL) ? in solib_load_unload_1()
4568 NULL : savestring (cond_string, strlen (cond_string)); in solib_load_unload_1()
4593 char *dll_pathname, char *cond_string) in create_solib_load_event_breakpoint() argument
4596 cond_string, bp_catch_load); in create_solib_load_event_breakpoint()
4601 char *dll_pathname, char *cond_string) in create_solib_unload_event_breakpoint() argument
4604 cond_string, bp_catch_unload); in create_solib_unload_event_breakpoint()
4608 create_fork_vfork_event_catchpoint (int tempflag, char *cond_string, in create_fork_vfork_event_catchpoint() argument
4624 b->cond_string = (cond_string == NULL) ? in create_fork_vfork_event_catchpoint()
4625 NULL : savestring (cond_string, strlen (cond_string)); in create_fork_vfork_event_catchpoint()
4636 create_fork_event_catchpoint (int tempflag, char *cond_string) in create_fork_event_catchpoint() argument
4638 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork); in create_fork_event_catchpoint()
4642 create_vfork_event_catchpoint (int tempflag, char *cond_string) in create_vfork_event_catchpoint() argument
4644 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork); in create_vfork_event_catchpoint()
4648 create_exec_event_catchpoint (int tempflag, char *cond_string) in create_exec_event_catchpoint() argument
4663 b->cond_string = (cond_string == NULL) ? in create_exec_event_catchpoint()
4664 NULL : savestring (cond_string, strlen (cond_string)); in create_exec_event_catchpoint()
4963 struct expression **cond, char **cond_string, in create_breakpoints() argument
5002 b->cond_string = cond_string[i]; in create_breakpoints()
5013 if (pending_bp->cond_string) in create_breakpoints()
5015 arg = pending_bp->cond_string; in create_breakpoints()
5016 b->cond_string = savestring (arg, strlen (arg)); in create_breakpoints()
5170 char **cond_string = (char **) NULL; in break_command_1() local
5259 cond_string = xcalloc (sals.nelts, sizeof (char **)); in break_command_1()
5260 make_cleanup (xfree, cond_string); in break_command_1()
5314 cond_string[i] = savestring (cond_start, in break_command_1()
5316 make_cleanup (xfree, cond_string[i]); in break_command_1()
5334 create_breakpoints (sals, addr_string, cond, cond_string, in break_command_1()
5358 b->cond_string = *cond_string; in break_command_1()
5404 char **cond_string; in do_captured_breakpoint() local
5434 cond_string = xcalloc (sals.nelts, sizeof (char **)); in do_captured_breakpoint()
5435 make_cleanup (xfree, cond_string); in do_captured_breakpoint()
5472 cond_string[i] = xstrdup (args->condition); in do_captured_breakpoint()
5476 create_breakpoints (sals, addr_string, cond, cond_string, in do_captured_breakpoint()
5951 b->cond_string = savestring (cond_start, cond_end - cond_start); in watch_command_1()
5953 b->cond_string = 0; in watch_command_1()
6277 char *cond_string; in ep_parse_optional_if_clause() local
6288 cond_string = *arg; in ep_parse_optional_if_clause()
6291 (*arg) += strlen (cond_string); in ep_parse_optional_if_clause()
6293 return cond_string; in ep_parse_optional_if_clause()
6345 char *cond_string = NULL; in catch_fork_command_1() local
6354 cond_string = ep_parse_optional_if_clause (&arg); in catch_fork_command_1()
6364 create_fork_event_catchpoint (tempflag, cond_string); in catch_fork_command_1()
6367 create_vfork_event_catchpoint (tempflag, cond_string); in catch_fork_command_1()
6378 char *cond_string = NULL; in catch_exec_command_1() local
6387 cond_string = ep_parse_optional_if_clause (&arg); in catch_exec_command_1()
6394 create_exec_event_catchpoint (tempflag, cond_string); in catch_exec_command_1()
6401 char *cond_string = NULL; in catch_load_command_1() local
6418 cond_string = ep_parse_optional_if_clause (&arg); in catch_load_command_1()
6422 if (cond_string == NULL) in catch_load_command_1()
6426 cond_string = ep_parse_optional_if_clause (&arg); in catch_load_command_1()
6436 dll_pathname, cond_string); in catch_load_command_1()
6443 char *cond_string = NULL; in catch_unload_command_1() local
6460 cond_string = ep_parse_optional_if_clause (&arg); in catch_unload_command_1()
6464 if (cond_string == NULL) in catch_unload_command_1()
6468 cond_string = ep_parse_optional_if_clause (&arg); in catch_unload_command_1()
6478 dll_pathname, cond_string); in catch_unload_command_1()
6487 create_exception_catchpoint (int tempflag, char *cond_string, in create_exception_catchpoint() argument
6514 b->cond_string = (cond_string == NULL) ? in create_exception_catchpoint()
6515 NULL : savestring (cond_string, strlen (cond_string)); in create_exception_catchpoint()
6570 handle_gnu_v3_exceptions (int tempflag, char *cond_string, in handle_gnu_v3_exceptions() argument
6594 b->cond_string = (cond_string == NULL) ? in handle_gnu_v3_exceptions()
6595 NULL : savestring (cond_string, strlen (cond_string)); in handle_gnu_v3_exceptions()
6613 char *cond_string = NULL; in catch_exception_command_1() local
6618 cond_string = ep_parse_optional_if_clause (&arg); in catch_exception_command_1()
6627 if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty)) in catch_exception_command_1()
6638 create_exception_catchpoint (tempflag, cond_string, ex_event, sal); in catch_exception_command_1()
7091 if (bpt->cond_string != NULL) in delete_breakpoint()
7092 xfree (bpt->cond_string); in delete_breakpoint()
7272 if (b->cond_string != NULL) in breakpoint_re_set_one()
7274 s = b->cond_string; in breakpoint_re_set_one()
7371 if (b->cond_string != NULL) in breakpoint_re_set_one()
7373 s = b->cond_string; in breakpoint_re_set_one()