Home
last modified time | relevance | path

Searched refs:running (Results 1 – 25 of 767) sorted by relevance

12345678910>>...31

/freebsd-12-stable/sys/amd64/vmm/intel/
Dvmcs.c194 vmcs_getreg(struct vmcs *vmcs, int running, int ident, uint64_t *retval) in vmcs_getreg() argument
214 if (!running) in vmcs_getreg()
219 if (!running) in vmcs_getreg()
226 vmcs_setreg(struct vmcs *vmcs, int running, int ident, uint64_t val) in vmcs_setreg() argument
241 if (!running) in vmcs_setreg()
246 if (!running) in vmcs_setreg()
253 vmcs_setdesc(struct vmcs *vmcs, int running, int seg, struct seg_desc *desc) in vmcs_setdesc() argument
262 if (!running) in vmcs_setdesc()
275 if (!running) in vmcs_setdesc()
281 vmcs_getdesc(struct vmcs *vmcs, int running, int seg, struct seg_desc *desc) in vmcs_getdesc() argument
[all …]
Dvmcs.h52 int vmcs_getreg(struct vmcs *vmcs, int running, int ident, uint64_t *rv);
53 int vmcs_setreg(struct vmcs *vmcs, int running, int ident, uint64_t val);
54 int vmcs_getdesc(struct vmcs *vmcs, int running, int ident,
56 int vmcs_setdesc(struct vmcs *vmcs, int running, int ident,
Dvmx.c1254 vmx_invvpid(struct vmx *vmx, int vcpu, pmap_t pmap, int running) in vmx_invvpid() argument
1263 if (!running) { in vmx_invvpid()
3282 vmx_get_intr_shadow(struct vmx *vmx, int vcpu, int running, uint64_t *retval) in vmx_get_intr_shadow() argument
3287 error = vmcs_getreg(&vmx->vmcs[vcpu], running, in vmx_get_intr_shadow()
3294 vmx_modify_intr_shadow(struct vmx *vmx, int vcpu, int running, uint64_t val) in vmx_modify_intr_shadow() argument
3310 error = vmcs_getreg(vmcs, running, ident, &gi); in vmx_modify_intr_shadow()
3313 error = vmcs_setreg(vmcs, running, ident, gi); in vmx_modify_intr_shadow()
3345 int running, hostcpu; in vmx_getreg() local
3348 running = vcpu_is_running(vmx->vm, vcpu, &hostcpu); in vmx_getreg()
3349 if (running && hostcpu != curcpu) in vmx_getreg()
[all …]
/freebsd-12-stable/sys/powerpc/mambo/
Dmambo_disk.c52 int running; member
139 sc->running = 1; in mambodisk_attach()
152 sc->running = 0; in mambodisk_detach()
158 while (sc->running != -1) in mambodisk_detach()
209 while (sc->running) { in mambodisk_task()
215 } while (bp == NULL && sc->running); in mambodisk_task()
219 if (!sc->running) in mambodisk_task()
257 sc->running = -1; in mambodisk_task()
/freebsd-12-stable/contrib/tcsh/
Dhost.defs242 comment : Intel Paragon running OSF/1
251 comment : Amiga running Amix 2.02
269 comment : digital vax or alpha running vms posix
279 comment : Hewlett Packard running OSF/1
289 comment : Hewlett Packard running MORE/bsd
302 comment : Hewlett Packard running HP/UX
318 comment : Hewlett Packard apollo running Domain/OS
360 comment : Harris Tahoe running CX/UX
377 comment : RT running IBM AOS4.3 or MACH
387 comment : RT running IBM aix2.x
[all …]
/freebsd-12-stable/contrib/bc/include/
Dlibrary.h53 vm.running = 1; \
65 vm.running = 0; \
79 vm.running = 1; \
91 vm.running = 1; \
100 vm.running = 0; \
/freebsd-12-stable/contrib/bc/src/
Dlibrary.c63 if (vm.sig || !vm.running) return; in bcl_handleSignal()
73 return vm.running != 0; in bcl_running()
118 assert(!vm.running && !vm.sig && !vm.sig_lock); in bcl_init()
171 assert(!vm.running && !vm.sig && !vm.sig_lock); in bcl_free()
222 assert(!vm.running && !vm.sig && !vm.sig_lock); in bcl_ctxt_create()
310 assert(!vm.running && !vm.sig && !vm.sig_lock); in bcl_num_insert()
334 assert(!vm.running && !vm.sig && !vm.sig_lock); in bcl_num_create()
396 assert(!vm.running && !vm.sig && !vm.sig_lock); in bcl_copy()
428 assert(!vm.running && !vm.sig && !vm.sig_lock); in bcl_dup()
518 assert(!vm.running && !vm.sig && !vm.sig_lock); in bcl_num_setScale()
[all …]
/freebsd-12-stable/sys/dev/drm2/
Ddrm_dp_iic_helper.c71 aux_data->running = true; in iic_dp_aux_address()
92 if (aux_data->running) { in iic_dp_aux_stop()
94 aux_data->running = false; in iic_dp_aux_stop()
110 if (!aux_data->running) in iic_dp_aux_put_byte()
129 if (!aux_data->running) in iic_dp_aux_get_byte()
250 data->running = false; in iic_dp_aux_add_bus()
/freebsd-12-stable/sys/dev/sound/macio/
Daoa.c69 int running; member
157 KASSERT(!dma->running, ("dma is running")); in aoa_chan_setblocksize()
216 if (!dma->running) in aoa_chan_getptr()
269 dma->running = 1; in aoa_chan_trigger()
283 dma->running = 0; in aoa_chan_trigger()
324 if (!(dma = sc->sc_intrp) || !dma->running) in aoa_interrupt()
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
Dtst.StateMachine.ksh.out33 before go, running: false
34 consumerStarted, running: true
45 consumerStopped, running: false
46 after stop, running: false
/freebsd-12-stable/sys/kern/
Dsubr_autoconf.c121 static int running; in run_interrupt_driven_config_hooks() local
132 if (running != 0) { in run_interrupt_driven_config_hooks()
136 running = 1; in run_interrupt_driven_config_hooks()
147 running = 0; in run_interrupt_driven_config_hooks()
/freebsd-12-stable/libexec/bootpd/
DProblems6 You are already running something that has bound the
33 running bootpd on the same machine as the DNS server or
34 running a caching DNS server on the host running bootpd.
54 My PC clients running Sun's PC-NFS Pro v1.1 fail to receive
/freebsd-12-stable/sys/dev/nand/
Dnandsim.c202 if (ctrls[ctrl_num].running) { in nandsim_destroy_ctrl()
228 ctrl->running = ctrls[ctrl->num].running; in nandsim_ctrl_status()
281 if (ctrl_conf->running) in nandsim_destroy_chip()
326 if (ctrls[num].running) in nandsim_start_ctrl()
354 ctrls[num].running = 1; in nandsim_start_ctrl()
373 if (!ctrls[num].created || !ctrls[num].running) { in nandsim_stop_ctrl()
390 ctrls[num].running = 0; in nandsim_stop_ctrl()
445 if (!ctrls[error->ctrl_num].created || !ctrls[error->ctrl_num].running) in nandsim_inject_error()
/freebsd-12-stable/usr.sbin/nandsim/
Dnandsim.c353 int chip = 0, ctl = 0, err = 0, fd, running, state; in cmdstart() local
367 err = is_ctrl_running(ctl, &running); in cmdstart()
371 if (running) { in cmdstart()
390 int chip = 0, ctl = 0, err = 0, fd, running; in cmdstop() local
396 err = is_ctrl_running(ctl, &running); in cmdstop()
400 if (!running) { in cmdstop()
1241 printf("\trunning: %s\n", ctrl->running ? "yes" : "no"); in printctrl()
1257 is_ctrl_running(int ctrl_no, int *running) in is_ctrl_running() argument
1272 *running = ctrl.running; in is_ctrl_running()
1325 int created, running; in assert_chip_connected() local
[all …]
/freebsd-12-stable/tools/regression/sysvsem/
DREADME6 in FreeBSD. You can start the test by running ``make regress'', after
7 running ``make''.
/freebsd-12-stable/tools/regression/sysvshm/
DREADME6 in FreeBSD. You can start the test by running ``make regress'', after
7 running ``make''.
/freebsd-12-stable/tools/regression/sysvmsg/
DREADME6 in FreeBSD. You can start the test by running ``make regress'', after
7 running ``make''.
/freebsd-12-stable/usr.sbin/bsdconfig/share/media/
Dnetwork.subr49 # able to successfully initialize the device. If not running as init (basically
61 # If not running as init (and setting up RTSOL connections for
65 # If not running as init (and setting up a static connection for
80 f_dprintf "Not running as init -- calling the deed done."
144 # passed has not been configured. If not running as init (basically from the
161 f_dprintf "Not running as init -- calling the deed done."
/freebsd-12-stable/contrib/gcc/
Dconfig.build26 # running autoconf when modifying build-specific information.
89 # 80386 running SCO Open Server 5
96 # Intel x86 running system V r4
107 # Intel 80386's running VSTa kernel
/freebsd-12-stable/contrib/ntp/html/hints/
Dhpux4 running on hpux 7.0 and later s300. s400, s700, and s800.
32 What to do to get this stuff running ?
34 * If you are running an OS less than 10.0 or do not have a s300/s400
38 -> (change -DSYS_HPUX=? to match whatever you are running [7,8,9])
66 * Ok, make sure adjtimed is running (just start it up for now with
85 which is usually only while running the emulation code on HP-UX.
131 #---adjtimed must be running or xntpd won't work right...
/freebsd-12-stable/contrib/wpa/src/l2_packet/
Dl2_packet_winpcap.c57 int running; member
132 while (l2->running) { in l2_packet_receive_thread()
246 l2->running = 1; in l2_packet_init()
295 l2->running = 0; in l2_packet_deinit()
/freebsd-12-stable/contrib/gdb/gdb/gdbserver/
DREADME17 the GDB running on the host system.
47 On some targets, gdbserver can also attach to running programs. This is
52 PID is the process ID of a currently running process. It isn't necessary
53 to point gdbserver at a binary for the running process.
60 --baud option if the serial line is running at anything except 9600 baud.)
123 should connect to (typically the same as the host running gdb):
/freebsd-12-stable/usr.bin/gprof/
Dgprof.flat6 % the percentage of the total running time of the
9 cumulative a running sum of the number of seconds accounted
/freebsd-12-stable/tools/tools/sortbench/
DREADME10 This files will contain the results of the running of ministat with time required to sort as the da…
15 As the script runs, it is running each of the stdlib sorting algorithms (and wikisort if provided) …
/freebsd-12-stable/contrib/sendmail/contrib/
Dmh.patch15 what version of sendmail you're running. It doesn't matter
16 if you're not running sendmail (but it won't fix anything
32 same system as the sendmail you're sending to is running on.
36 5) If you're running a site with both old and new sendmails, you only

12345678910>>...31