Home
last modified time | relevance | path

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

/freebsd-14-stable/usr.sbin/jail/
HDjailp.h60 #define JF_STOP 0x0004 /* -r */ macro
72 #define JF_OP_MASK (JF_START | JF_SET | JF_STOP)
73 #define JF_RESTART (JF_START | JF_STOP)
75 #define JF_SET_RESTART (JF_SET | JF_STOP)
76 #define JF_START_SET_RESTART (JF_START | JF_SET | JF_STOP)
77 #define JF_DO_STOP(js) (((js) & (JF_SET | JF_STOP)) == JF_STOP)
HDstate.c203 else if (dj->flags & JF_STOP) in dep_check()
206 case JF_STOP: in dep_check()
208 if (!(dj->flags & JF_STOP)) in dep_check()
210 dj->flags |= JF_STOP; in dep_check()
309 if (!target || (!docf && state != JF_STOP) || in start_state()
368 if (j == NULL && state == JF_STOP) { in start_state()
HDjail.c204 op |= JF_STOP; in main()
207 op |= JF_STOP; in main()
285 } else if (op == JF_STOP || op == JF_SHOW) { in main()
355 if (op == JF_STOP) { in main()
477 case JF_STOP: in main()
501 j->flags &= ~JF_STOP; in main()
HDcommand.c117 create_failed = (j->flags & (JF_STOP | JF_FAILED)) == JF_FAILED; in next_command()
118 stopping = (j->flags & JF_STOP) != 0; in next_command()
309 down = j->flags & (JF_STOP | JF_FAILED); in run_command()
321 if (verbose > 0 || (verbose == 0 && (j->flags & JF_STOP in run_command()
325 if (j->flags & JF_STOP) in run_command()
HDconfig.c574 if (((j->flags & JF_OP_MASK) != JF_STOP || in check_intparams()