Searched refs:statistics (Results 26 - 50 of 88) sorted by relevance

1234

/macosx-10.9.5/IOStorageFamily-172/
H A DIOBlockStorageDriver.cpp167 OSDictionary * statistics = OSDictionary::withCapacity(kStatisticsCount);
169 if (statistics == 0) return false;
171 statistics->setObject( kIOBlockStorageDriverStatisticsBytesReadKey,
173 statistics->setObject( kIOBlockStorageDriverStatisticsBytesWrittenKey,
175 statistics->setObject( kIOBlockStorageDriverStatisticsReadErrorsKey,
177 statistics->setObject( kIOBlockStorageDriverStatisticsWriteErrorsKey,
179 statistics->setObject( kIOBlockStorageDriverStatisticsLatentReadTimeKey,
181 statistics->setObject( kIOBlockStorageDriverStatisticsLatentWriteTimeKey,
183 statistics->setObject( kIOBlockStorageDriverStatisticsReadsKey,
185 statistics
591 getStatistics(UInt64 * statistics, UInt32 statisticsMaxCount) const argument
[all...]
H A DIOBlockStorageDriver.h47 * operating statistics.
50 * operating statistics. The table is an OSDictionary, where each entry
267 * creation and tear-down, and statistics gathering and reporting.
304 * Indices for the different statistics that getStatistics() can report.
554 * and the total latency time -- used for statistics.
575 * Update the total error count -- used for statistics.
587 * Update the total retry count -- used for statistics.
1040 * Ask the driver to report its operating statistics.
1042 * The statistics are each indexed by IOBlockStorageDriver::Statistics
1044 * count specified if the real number of statistics woul
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebCoreStatistics.mm54 + (NSArray *)statistics
56 return [WebCache statistics];
H A DWebCache.mm50 + (NSArray *)statistics
/macosx-10.9.5/ruby-104/ruby/lib/rake/
H A Dthread_pool.rb82 # Return a hash of always collected statistics for the thread pool.
83 def statistics # :nodoc: method in class:Rake.ThreadPool
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/Storage/
H A DStatistics.pm19 statistics on its actions. Using this class alone merely prints the SQL
24 for collecting the statistics as discussed in L<DBIx::Class::Manual::Cookbook>.
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DNativeMemoryGraph.js152 var statistics = this._counters;
167 statistics.push(new WebInspector.NativeMemoryGraph.Counter(
H A DTimelinePresentationModel.js1313 * @param {WebInspector.FrameStatistics} statistics
1315 WebInspector.TimelinePresentationModel.generatePopupContentForFrameStatistics = function(statistics)
1328 Number.secondsToString(statistics.startOffset, true), Number.secondsToString(statistics.endOffset, true), statistics.frameCount));
1329 contentHelper.appendTextRow(WebInspector.UIString("Minimum Time"), formatTimeAndFPS(statistics.minDuration));
1330 contentHelper.appendTextRow(WebInspector.UIString("Average Time"), formatTimeAndFPS(statistics.average));
1331 contentHelper.appendTextRow(WebInspector.UIString("Maximum Time"), formatTimeAndFPS(statistics.maxDuration));
1332 contentHelper.appendTextRow(WebInspector.UIString("Standard Deviation"), Number.secondsToString(statistics.stddev, true));
1334 WebInspector.TimelinePresentationModel._generateAggregatedInfo(statistics
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/
H A DpkgIndex.tcl16 # statistics depends on linearalgebra (for multi-variate linear regression).
17 package ifneeded math::statistics 0.6.3 [list source [file join $dir statistics.tcl]]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_cspdl/lib/
H A DSSCSPSession.h137 void GetOperationalStatistics(CSPOperationalStatistics &statistics);
H A DSSCSPSession.cpp434 SSCSPSession::GetOperationalStatistics(CSPOperationalStatistics &statistics) argument
/macosx-10.9.5/Security-55471.14.18/libsecurity_sd_cspdl/lib/
H A DSDCSPSession.h142 void GetOperationalStatistics(CSPOperationalStatistics &statistics);
/macosx-10.9.5/libauto-185.5/
H A DThreadLocalCollector.cpp322 _zone->statistics().add_local_collected(_tlcBufferCount);
349 tlc->_zone->statistics().add_recycled(garbage_count);
372 tlc->_zone->statistics().add_global_freed(garbage_count);
389 tlc->_zone->statistics().add_global_freed(garbage_count);
H A Dauto_zone.cpp103 Statistics &zone_stats = zone->statistics();
155 WallClockTimer &idle_timer = zone->statistics().idle_timer();
159 b2s(zone->statistics().bytes_scanned(), bytes, sizeof(bytes));
162 zone->statistics().blocks_scanned(), bytes, timer.scan_timer().time_string());
168 b2s(zone->statistics().size(), in_use, sizeof(in_use));
173 zone->statistics().count(), in_use);
176 zone->statistics().print_tlc_stats();
254 Statistics &stats = zone->statistics();
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dnamed.vim97 syn keyword namedOption contained mem-statistics-file statistics-file
103 syn keyword namedOption contained has-old-clients host-statistics
131 syn keyword namedOption contained cleaning-interval interface-interval statistics-interval heartbeat-interval
/macosx-10.9.5/ppp-727.90.1/Controller/
H A Dscnc_mach_server.c384 xmlDataOut_t * statistics,
409 *statistics = reply;
416 *statistics = 0;
383 _pppcontroller_copystatistics(mach_port_t session, xmlDataOut_t * statistics, mach_msg_type_number_t * statistics_len, int * result) argument
/macosx-10.9.5/ntp-88/ntpdc/
H A Dntpdc-opts.def117 Extensive state and statistics information is available
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_plugin/
H A DCSPsession.cpp914 void CSPFullPluginSession::GetOperationalStatistics(CSPOperationalStatistics &statistics) argument
916 memset(&statistics, 0, sizeof(statistics));
917 statistics.UserAuthenticated = loggedIn();
920 //@@@ collect token statistics (dynamic) - dynamic accounting call-downs?
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_plugin/lib/
H A DCSPsession.cpp914 void CSPFullPluginSession::GetOperationalStatistics(CSPOperationalStatistics &statistics) argument
916 memset(&statistics, 0, sizeof(statistics));
917 statistics.UserAuthenticated = loggedIn();
920 //@@@ collect token statistics (dynamic) - dynamic accounting call-downs?
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebCache.cpp89 HRESULT STDMETHODCALLTYPE WebCache::statistics( function in class:WebCache
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKContext.h199 typedef void (*WKContextGetStatisticsFunction)(WKDictionaryRef statistics, WKErrorRef error, void* functionContext);
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/
H A Dnamed.conf53 statistics-file "named.stats"; // _PATH_STATS
72 host-statistics no;
185 statistics-interval 1003;
518 * statistics
/macosx-10.9.5/emacs-92/emacs/src/
H A Dgetloadavg.c444 # include <inq_stats/statistics.h>
450 # include <sys/statistics.h>
/macosx-10.9.5/top-89.1.2/
H A Dlibtop.c131 * memory usage statistics are tallied on the fly, but this can only be
134 * optimistically updates the statistics, changes have to be backed out
170 * statistics, as well as the total number of memory objects. Rather than
329 * Get ports and services for drive statistics.
337 /* Initialize the load statistics. */
794 /* Sample framework memory statistics (if fw is TRUE). */
954 // Check whether we got purgeable memory statistics
983 /* Sample general VM statistics. */
987 /* Get VM statistics. */
1025 * cause the statistics t
1125 CFDictionaryRef properties, statistics; local
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebContext.cpp798 WebContext::Statistics& WebContext::statistics() function in class:WebKit::WebContext
800 static Statistics statistics = Statistics(); local
802 return statistics;
1141 // FIXME (Multi-WebProcess) <rdar://problem/13200059>: Make getting statistics from multiple WebProcesses work.
1155 LOG_ERROR("Attempt to get NetworkProcess statistics but the NetworkProcess is unavailable");
1178 LOG_ERROR("Cannot report networking statistics.");

Completed in 282 milliseconds

1234