/vbox/src/VBox/Main/src-server/os2/ |
H A D | PerformanceOs2.cpp | 12 * available from http://www.virtualbox.org. This file is free software; 29 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 50 int CollectorOS2::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/core/ |
H A D | gdbmach.c | 51 struct hwbp *available = NULL; local 58 available = &hwbps [ i ]; 61 return available;
|
/vbox/src/libs/xpcom18a4/python/test/ |
H A D | test_streams.py | 57 def available( self ): member in class:koTestSimpleStream
|
/vbox/src/VBox/Main/src-server/freebsd/ |
H A D | PerformanceFreeBSD.cpp | 10 * available from http://www.virtualbox.org. This file is free software; 29 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 59 int CollectorFreeBSD::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 94 *available = (cPagesMemFree + cPagesMemInactive + cPagesMemCached ) * (cbPage / _1K);
|
/vbox/src/VBox/Main/src-server/darwin/ |
H A D | PerformanceDarwin.cpp | 10 * available from http://www.virtualbox.org. This file is free software; 64 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 116 int CollectorDarwin::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 124 *available = cb / 1024; 125 *used = *total - *available;
|
/vbox/src/VBox/Main/testcase/ |
H A D | tstCollector.cpp | 12 * available from http://www.virtualbox.org. This file is free software; 211 ULONG total, used, available; local 213 int rc = collector->getHostFilesystemUsage(FSNAME, &total, &used, &available); 225 RTPrintf("tstCollector: host root fs available = %lu mB\n\n", available); 532 ULONG total, used, available, processUsed; local 534 rc = collector->getHostMemoryUsage(&total, &used, &available); 548 RTPrintf("tstCollector: host mem available = %lu kB\n", available);
|
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/ |
H A D | QIAdvancedSlider.cpp | 10 * available from http://www.virtualbox.org. This file is free software; 62 int available = opt.rect.width() - style()->pixelMetric(QStyle::PM_SliderLength, &opt, this); local 63 return QStyle::sliderPositionFromValue(opt.minimum, opt.maximum, val, available); 74 int available = opt.rect.width() - style()->pixelMetric(QStyle::PM_SliderLength, &opt, this); local 84 ticks.setRect((s.width() - available) / 2, s.height() - ticks.y(), available, ticks.height()); 94 ticks.setRect((s.width() - available) / 2, ticks.bottom() + 1, available, s.height() - ticks.bottom() - 1); 101 int posMinOpt = QStyle::sliderPositionFromValue(opt.minimum, opt.maximum, m_minOpt, available); 102 int posMaxOpt = QStyle::sliderPositionFromValue(opt.minimum, opt.maximum, m_maxOpt, available); [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | query.c | 25 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only 27 * a choice of LGPL license versions is made available with the language indicating 337 GLuint available; local 378 GL_EXTCALL(glGetQueryObjectuivARB(query->id, GL_QUERY_RESULT_AVAILABLE_ARB, &available)); 380 TRACE("(%p) : available %d.\n", This, available); 382 if (available)
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
H A D | query.c | 23 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only 25 * a choice of LGPL license versions is made available with the language indicating 318 GLuint available; local 360 GL_EXTCALL(glGetQueryObjectuivARB(oq->id, GL_QUERY_RESULT_AVAILABLE_ARB, &available)); 362 TRACE("available %#x.\n", available); 364 if (available)
|
/vbox/src/VBox/Devices/Network/lwip-new/src/api/ |
H A D | api_msg.c | 239 /* Unlike for UDP or RAW pcbs, don't check for available space 292 /* Did a nonblocking write fail before? Then check available write-space. */ 572 * @param callback a function to call on status changes (RX available, TX'ed) 1235 u16_t len, available; local 1276 available = tcp_sndbuf(conn->pcb.tcp); 1277 if (available < len) { 1279 len = available; 1294 /* if OK or memory error, check available space */
|
/vbox/src/VBox/Main/src-server/win/ |
H A D | PerformanceWin.cpp | 12 * available from http://www.virtualbox.org. This file is free software; 60 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 108 LogRel(("Warning! Neither GetSystemTimes() nor NtQuerySystemInformation() is not available.\n" 229 /* GetSystemTimes is not available, fall back to NtQuerySystemInformation */ 298 int CollectorWin::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 306 *available = (ULONG)(cb / 1024); 307 *used = *total - *available;
|
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/ |
H A D | Print.h | 318 unsigned long available; /* bytes available for retrieval */ member in struct:__anon2324
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsStorageStream.cpp | 414 PRUint32 available = mStorageStream->mLogicalLength - mLogicalCursor; local 415 if (!available) 419 mSegmentEnd = mReadCursor + PR_MIN(mSegmentSize, available); 453 PRUint32 available = mStorageStream->mLogicalLength - mLogicalCursor; local 454 if (!available) 458 mSegmentEnd = mReadCursor + PR_MIN(mSegmentSize, available); 541 PRUint32 available = length - aPosition; local 542 mSegmentEnd = mReadCursor + PR_MIN(mSegmentSize - segmentOffset, available);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | dhcp.c | 1313 /* Shrink len to available bytes (need 2 bytes for OPTION_HOSTNAME 1315 size_t available = DHCP_OPTIONS_LEN - dhcp->options_out_len - 3; local 1316 LWIP_ASSERT("DHCP: hostname is too long!", namelen <= available); 1317 len = LWIP_MIN(namelen, available);
|
/vbox/src/VBox/Main/src-server/linux/ |
H A D | PerformanceLinux.cpp | 12 * available from http://www.virtualbox.org. This file is free software; 51 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 52 virtual int getHostFilesystemUsage(const char *name, ULONG *total, ULONG *used, ULONG *available); 212 int CollectorLinux::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 220 *available = cb / 1024; 221 *used = *total - *available; 226 int CollectorLinux::getHostFilesystemUsage(const char *path, ULONG *total, ULONG *used, ULONG *available) argument 238 *available = (ULONG)(cbBlock * stats.f_bavail / _1M);
|
/vbox/src/libs/xpcom18a4/xpcom/obsolete/ |
H A D | nsIFileStream.cpp | 334 nsInt64 available = PR_Available64(mFileDesc); local 335 nsInt64 fileSize = position + available;
|
/vbox/src/VBox/Main/src-server/ |
H A D | Performance.cpp | 10 * available from http://www.virtualbox.org. This file is free software; 81 int CollectorHAL::getHostMemoryUsage(ULONG * /* total */, ULONG * /* used */, ULONG * /* available */) 87 ULONG * /* available */) 875 ULONG total, used, available; local 876 int rc = mHAL->getHostMemoryUsage(&total, &used, &available); 881 mAvailable->put(available); 900 ULONG total, used, available; local 901 int rc = mHAL->getHostFilesystemUsage(mFsName.c_str(), &total, &used, &available); 906 mAvailable->put(available);
|
/vbox/src/VBox/Main/src-server/solaris/ |
H A D | PerformanceSolaris.cpp | 12 * available from http://www.virtualbox.org. This file is free software; 69 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 70 virtual int getHostFilesystemUsage(const char *name, ULONG *total, ULONG *used, ULONG *available); 281 int CollectorSolaris::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 289 *available = cb / 1024; 290 *used = *total - *available; 525 int CollectorSolaris::getHostFilesystemUsage(const char *path, ULONG *total, ULONG *used, ULONG *available) argument 538 *available = (ULONG)(cbBlock * stats.f_bavail / _1M);
|
/vbox/src/VBox/Main/include/ |
H A D | Performance.h | 10 * available from http://www.virtualbox.org. This file is free software; 372 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 374 virtual int getHostFilesystemUsage(const char *name, ULONG *total, ULONG *used, ULONG *available); 505 HostRamUsage(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *total, SubMetric *used, SubMetric *available) argument 506 : BaseMetric(hal, "RAM/Usage", object), mTotal(total), mUsed(used), mAvailable(available) {}; 573 HostFilesystemUsage(CollectorHAL *hal, ComPtr<IUnknown> object, com::Utf8Str name, com::Utf8Str fsname, SubMetric *total, SubMetric *used, SubMetric *available) argument 574 : BaseMetric(hal, name, object), mFsName(fsname), mTotal(total), mUsed(used), mAvailable(available) {};
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/ |
H A D | prio.h | 466 PRAvailableFN available; /* determine number of bytes available */ member in struct:PRIOMethods 1051 * Determine the amount of data in bytes available for reading 1061 * bytes beyond the current read pointer that is available for
|
/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | http.jar | META-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/net/ com/sun/net/httpserver/ ... |
H A D | saaj-impl.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ... |
H A D | sjsxp.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ... |
H A D | jaxb-xjc.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ... |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | hfa384x.h | 2256 UINT16 available; member in struct:hfa384x_pdr_privacy_option
|