Searched refs:kernel (Results 1 - 25 of 91) sorted by relevance

1234

/vbox/src/VBox/Installer/freebsd/
H A Dpostdeinstall.sh19 echo "Removing kernel modules, please wait..."
24 rm /boot/kernel/vboxnetflt.ko
25 rm /boot/kernel/vboxnetadp.ko
26 rm /boot/kernel/vboxdrv.ko
H A Dpostinstall.sh31 echo "Compiling kernel modules, please wait..."
45 echo "Compiling kernel modules failed."
51 # Copy the modules to /boot/kernel
52 echo "Installing kernel modules to /boot/kernel, please wait..."
53 cp $PATH_TMP_MODS/vboxdrv.ko /boot/kernel
54 cp $PATH_TMP_MODS/vboxnetflt.ko /boot/kernel
55 cp $PATH_TMP_MODS/vboxnetadp.ko /boot/kernel
62 echo "Loading kernel modules failed"
/vbox/src/VBox/Additions/haiku/
H A Dunload.sh5 rm -f $basedir/kernel/drivers/bin/vboxdev
6 rm -f $basedir/kernel/drivers/dev/misc/vboxdev
7 rm -f $basedir/kernel/file_systems/vboxsf
8 rm -f $basedir/kernel/generic/vboxguest
H A Dload.sh8 mkdir -p ~/config/add-ons/kernel/generic/
9 cp $outdir/vboxguest ~/config/add-ons/kernel/generic/
12 mkdir -p ~/config/add-ons/kernel/drivers/dev/misc/
13 cp $outdir/vboxdev ~/config/add-ons/kernel/drivers/bin/
14 ln -sf ../../bin/vboxdev ~/config/add-ons/kernel/drivers/dev/misc
/vbox/src/VBox/Main/src-server/os2/
H A DPerformanceOs2.cpp27 virtual int getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle);
30 virtual int getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel);
40 int CollectorOS2::getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle) argument
55 int CollectorOS2::getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel) argument
/vbox/src/VBox/Installer/linux/
H A DVBoxSysInfo.sh95 kernel=`uname -v`
96 echo "Kernel: $kernel"
102 kernel=`uname -v`
103 echo "Machine: $machine | Kernel: $kernel"
108 kernel=`uname -v`
109 echo "Kernel: $kernel"
H A DVBox.sh39 WARNING: The vboxdrv kernel module is not loaded. Either there is no module
40 available for the current kernel (`uname -r`) or it failed to
41 load. Please recompile the kernel module and install it by
61 WARNING: The compilation of the vboxdrv.ko kernel module failed during the
/vbox/src/VBox/Runtime/testcase/
H A DtstRTThreadExecutionTime.cpp49 uint64_t kernel, kernelStart, user, userStart; local
53 RTThreadGetExecutionTimeMilli(&kernel, &user);
54 RTPrintf("kernel = %4lldms, user = %4lldms\n", kernel - kernelStart, user - userStart);
55 ASMAtomicAddU64(&g_kernel, kernel);
78 RTPrintf("sum kernel = %lldms, sum user = %lldms\n", g_kernel, g_user);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/
H A Dbtime.c39 #include <kernel/OS.h>
/vbox/src/VBox/Main/src-server/win/
H A DPerformanceWin.cpp58 virtual int getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle);
61 virtual int getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel);
64 virtual int getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle);
65 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
130 uint64_t user, kernel, idle, total; local
131 int rc = getRawHostCpuLoad(&user, &kernel, &idle);
134 total = user + kernel + idle;
194 int CollectorWin::getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle) argument
208 int CollectorWin::getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle) argument
225 *kernel
312 getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel) argument
317 getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total) argument
[all...]
/vbox/src/VBox/Main/src-server/darwin/
H A DPerformanceDarwin.cpp63 virtual int getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle);
65 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
94 int CollectorDarwin::getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle) argument
111 *kernel = (uint64_t)info.cpu_ticks[CPU_STATE_SYSTEM];
148 int CollectorDarwin::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total) argument
156 * Adjust user and kernel values so 100% is when ALL cores are fully
160 *kernel = tinfo.pti_total_system / nCpus;
/vbox/src/VBox/Main/src-server/freebsd/
H A DPerformanceFreeBSD.cpp27 virtual int getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle);
30 virtual int getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel);
40 int CollectorFreeBSD::getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle) argument
102 int CollectorFreeBSD::getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel) argument
/vbox/src/VBox/HostDrivers/Support/solaris/
H A Dload.sh72 # Note! We have to copy the driver and config files to somewhere the kernel can
75 # /platform/i86pc/kernel /kernel /usr/kernel
82 "/platform/i86pc/kernel/drv/${DRVNAME}.conf" \
83 "/platform/i86pc/kernel/drv/${DRVNAME}" \
84 "/platform/i86pc/kernel/drv/amd64/${DRVNAME}"
86 $SUDO cp "${DRVFILE}" /platform/i86pc/kernel/drv/amd64/
87 $SUDO cp "${DRVFILE}.conf" /platform/i86pc/kernel/drv/
93 if $SUDO modload "/platform/i86pc/kernel/dr
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/bthreads/
H A Dbtsem.c38 #include <kernel/OS.h>
/vbox/src/VBox/Main/src-server/solaris/
H A DPerformanceSolaris.cpp74 virtual int getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle);
77 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
192 int CollectorSolaris::getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle) argument
227 if (kernel) *kernel = tmpKernel;
233 int CollectorSolaris::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total) argument
249 //Log(("user=%u kernel=%u total=%u\n", prusage.pr_utime.tv_sec, prusage.pr_stime.tv_sec, prusage.pr_tstamp.tv_sec));
258 *kernel = ((uint64_t)prusage.pr_stime.tv_sec * 1000000000 + prusage.pr_stime.tv_nsec) / mCpus;
261 *user = *kernel = 0;
263 //Log(("user=%llu kernel
[all...]
/vbox/src/VBox/Additions/common/VBoxGuest/solaris/
H A Ddeps.asm3 ; Solaris kernel module dependency
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_dummy.c33 * kernel land.
38 #include <sys/kernel.h>
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dthe-haiku-kernel.h3 * IPRT - Include all necessary headers for the Haiku kernel.
46 /* headers/private/kernel/smp.h */
51 /* headers/private/kernel/vm/vm.h */
55 uint32 mapping, area_id sourceArea, bool kernel);
57 /* headers/private/kernel/thread_type.h */
82 /* headers/private/kernel/thread.h */
92 * Convert from Haiku kernel return code to IPRT status code.
/vbox/src/VBox/HostDrivers/VBoxNetAdp/linux/
H A DMakefile83 # kernel base directory
85 # build for the current kernel, version check
90 $(error Error: unable to find the sources of your current Linux kernel. \
94 Linux kernel. If this is not correct, specify \
109 kernel. Specify KERN_INCL=<directory> and run Make again)
112 # module install dir, only for current kernel
177 # By default we use remap_pfn_range() kernel API to make kernel pages
182 # for vm_insert_page() kernel API, allowing to export kernel page
[all...]
/vbox/src/VBox/HostDrivers/VBoxPci/linux/
H A DMakefile87 # kernel base directory
89 # build for the current kernel, version check
94 $(error Error: unable to find the sources of your current Linux kernel. \
98 Linux kernel. If this is not correct, specify \
113 kernel. Specify KERN_INCL=<directory> and run Make again)
116 # module install dir, only for current kernel
180 # By default we use remap_pfn_range() kernel API to make kernel pages
185 # for vm_insert_page() kernel API, allowing to export kernel page
[all...]
/vbox/src/VBox/Main/include/
H A DPerformance.h368 virtual int getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle);
378 virtual int getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel);
383 virtual int getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle);
389 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
451 HostCpuLoad(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *user, SubMetric *kernel, SubMetric *idle) argument
452 : BaseMetric(hal, "CPU/Load", object), mUser(user), mKernel(kernel), mIdle(idle) {};
472 HostCpuLoadRaw(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *user, SubMetric *kernel, SubMetric *idle) argument
473 : HostCpuLoad(hal, object, user, kernel, idle), mUserPrev(0), mKernelPrev(0), mIdlePrev(0) {};
670 MachineCpuLoad(CollectorHAL *hal, ComPtr<IUnknown> object, RTPROCESS process, SubMetric *user, SubMetric *kernel) argument
671 : BaseMetric(hal, "CPU/Load", object), mProcess(process), mUser(user), mKernel(kernel) {};
689 MachineCpuLoadRaw(CollectorHAL *hal, ComPtr<IUnknown> object, RTPROCESS process, SubMetric *user, SubMetric *kernel) argument
770 GuestCpuLoad(CollectorGuest *cguest, ComPtr<IUnknown> object, SubMetric *user, SubMetric *kernel, SubMetric *idle) argument
[all...]
/vbox/src/VBox/Main/src-server/linux/
H A DPerformanceLinux.cpp56 virtual int getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle);
59 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
99 LogRel(("CollectorLinux failed to obtain HZ from kernel, assuming 100.\n"));
189 int CollectorLinux::getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle) argument
192 *kernel = mKernel;
197 int CollectorLinux::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total) argument
207 *kernel = it->second.cpuKernel;
/vbox/src/VBox/HostDrivers/VBoxNetFlt/linux/
H A DMakefile87 # kernel base directory
89 # build for the current kernel, version check
94 $(error Error: unable to find the sources of your current Linux kernel. \
98 Linux kernel. If this is not correct, specify \
113 kernel. Specify KERN_INCL=<directory> and run Make again)
116 # module install dir, only for current kernel
181 # By default we use remap_pfn_range() kernel API to make kernel pages
186 # for vm_insert_page() kernel API, allowing to export kernel page
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dglthread.h161 #include <kernel/OS.h>
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dglthread.h161 #include <kernel/OS.h>

Completed in 102 milliseconds

1234