act               952 src/dps8/threadz.c     struct sigaction act;
act               953 src/dps8/threadz.c     (void)memset (& act, 0, sizeof (act));
act               954 src/dps8/threadz.c     act.sa_handler = int_handler;
act               955 src/dps8/threadz.c     act.sa_flags = 0;
act               956 src/dps8/threadz.c     sigaction (SIGINT, & act, NULL);
act               957 src/dps8/threadz.c     sigaction (SIGTERM, & act, NULL);
act               338 src/simh/scp.c t_stat sim_brk_set (t_addr loc, int32 sw, int32 ncnt, CONST char *act);
act              9238 src/simh/scp.c             FREE (bp->act);
act              9347 src/simh/scp.c bp->act = NULL;
act              9355 src/simh/scp.c t_stat sim_brk_set (t_addr loc, int32 sw, int32 ncnt, CONST char *act)
act              9366 src/simh/scp.c if ((sw & BRK_TYP_DYN_ALL) && act)                      /* can't specify an action with a dynamic breakpoint */
act              9381 src/simh/scp.c     (bp->act != NULL) && (act != NULL)) {               /* replace old action? */
act              9382 src/simh/scp.c     FREE (bp->act);                                     /* deallocate */
act              9383 src/simh/scp.c     bp->act = NULL;                                     /* now no action */
act              9385 src/simh/scp.c if ((act != NULL) && (*act != 0)) {                     /* new action? */
act              9389 src/simh/scp.c     strncpy (newp, act, CBUFSIZE);                      /* copy action */
act              9390 src/simh/scp.c     bp->act = newp;                                     /* set pointer */
act              9412 src/simh/scp.c         FREE (bp->act);                                 /* deallocate action */
act              9519 src/simh/scp.c if (bp->act != NULL) {
act              9521 src/simh/scp.c         (void)fprintf (st, "; %s", bp->act); } }
act              9607 src/simh/scp.c     sim_brk_setact (bp->act);                           /* set up actions */
act              9855 src/simh/scp.c FREE (ep->act);                                         /* deallocate action */
act              9888 src/simh/scp.c     FREE (exp->rules[i].act);                           /* deallocate action */
act              9902 src/simh/scp.c t_stat sim_exp_set (EXPECT *exp, const char *match, int32 cnt, uint32 after, int32 switches, const char *act)
act              9988 src/simh/scp.c if (ep->act) {                                          /* replace old action? */
act              9989 src/simh/scp.c     FREE (ep->act);                                     /* deallocate */
act              9990 src/simh/scp.c     ep->act = NULL;                                     /* now no action */
act              9992 src/simh/scp.c if (act) while (sim_isspace(*act)) ++act;                   /* skip leading spaces in action string */
act              9993 src/simh/scp.c if ((act != NULL) && (*act != 0)) {                     /* new action? */
act              9994 src/simh/scp.c     char *newp = (char *) calloc (strlen (act)+1, sizeof (*act)); /* alloc buf */
act              9997 src/simh/scp.c     strcpy (newp, act);                                 /* copy action */
act              9998 src/simh/scp.c     ep->act = newp;                                     /* set pointer */
act              10029 src/simh/scp.c if (ep->act)
act              10030 src/simh/scp.c     (void)fprintf (st, " %s", ep->act);
act              10172 src/simh/scp.c         if (ep->act && *ep->act) {
act              10173 src/simh/scp.c             sim_debug (exp->dbit, exp->dptr, "Initiating actions: %s\r\n", ep->act);
act              10178 src/simh/scp.c         sim_brk_setact (ep->act);                       /* set up actions */
act               189 src/simh/scp.h t_stat sim_exp_set (EXPECT *exp, const char *match, int32 cnt, uint32 after, int32 switches, const char *act);
act               610 src/simh/sim_defs.h     char                *act;                            /* action string */
act               636 src/simh/sim_defs.h     char                *act;                            /* action string */
act               701 src/simh/sim_defs.h # define UDATA(act,fl,cap) NULL,act,NULL,NULL,NULL,0,0,(fl),0,(cap),0,NULL,0,0