Home
last modified time | relevance | path

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

/freebsd/usr.sbin/jail/
H A Djailp.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)
H A Dstate.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_OP_MASK) != JF_STOP) || in start_state()
368 if (j == NULL && (state & JF_OP_MASK) == JF_STOP) { in start_state()
H A Djail.c239 op |= JF_STOP; in main()
242 op |= JF_STOP; in main()
329 } else if (op == JF_STOP) { in main()
395 if ((op & JF_OP_MASK) == JF_STOP) { in main()
492 j->flags |= JF_STOP; in main()
501 if (j->flags & JF_STOP) in main()
529 case JF_STOP: in main()
557 j->flags &= ~(JF_STOP | JF_CLEANUP); in main()
H A Dcommand.c116 create_failed = (j->flags & (JF_STOP | JF_FAILED)) == JF_FAILED; in next_command()
117 stopping = (j->flags & JF_STOP) != 0; in next_command()
308 down = j->flags & (JF_STOP | JF_FAILED); in run_command()
320 if (verbose > 0 || (verbose == 0 && (j->flags & JF_STOP in run_command()
324 if (j->flags & JF_STOP) in run_command()
H A Dconfig.c574 if (((j->flags & JF_OP_MASK) != JF_STOP || in check_intparams()