Searched refs:stats (Results 1 - 25 of 325) sorted by relevance

1234567891011>>

/macosx-10.9.5/IOGraphics-471.92.1/tools/
H A Dhibstat.c16 hibernate_statistics_t stats; local
17 size_t len = sizeof(stats);
30 if (sysctlbyname(kIOSysctlHibernateStatistics, &stats, &len, NULL, 0) < 0)
36 printf("image1Size 0x%qx\n", stats.image1Size);
37 printf("imageSize 0x%qx\n", stats.imageSize);
38 printf("image1Pages %d\n", stats.image1Pages);
39 printf("imagePages %d\n", stats.imagePages);
40 printf("booterStart %d ms\n", stats.booterStart);
41 printf("smcStart %d ms\n", stats.smcStart);
42 printf("booterDuration0 %d ms\n", stats
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dstats.c32 #include <isc/stats.h>
77 * of the stats structure so that the dump operation won't fail due
89 isc_stats_t *stats; local
94 stats = isc_mem_get(mctx, sizeof(*stats));
95 if (stats == NULL)
98 result = isc_mutex_init(&stats->lock);
102 stats->counters = isc_mem_get(mctx, sizeof(isc_stat_t) * ncounters);
103 if (stats->counters == NULL) {
107 stats
150 isc_stats_attach(isc_stats_t *stats, isc_stats_t **statsp) argument
163 isc_stats_t *stats; local
188 isc_stats_ncounters(isc_stats_t *stats) argument
195 incrementcounter(isc_stats_t *stats, int counter) argument
233 decrementcounter(isc_stats_t *stats, int counter) argument
259 copy_counters(isc_stats_t *stats) argument
295 isc_stats_increment(isc_stats_t *stats, isc_statscounter_t counter) argument
303 isc_stats_decrement(isc_stats_t *stats, isc_statscounter_t counter) argument
311 isc_stats_dump(isc_stats_t *stats, isc_stats_dumper_t dump_fn, void *arg, unsigned int options) argument
[all...]
/macosx-10.9.5/ntp-88/lib/isc/
H A Dstats.c17 /* $Id: stats.c,v 1.3.6.2 2009/01/29 23:47:44 tbox Exp $ */
32 #include <isc/stats.h>
77 * of the stats structure so that the dump operation won't fail due
89 isc_stats_t *stats; local
94 stats = isc_mem_get(mctx, sizeof(*stats));
95 if (stats == NULL)
98 result = isc_mutex_init(&stats->lock);
102 stats->counters = isc_mem_get(mctx, sizeof(isc_stat_t) * ncounters);
103 if (stats
150 isc_stats_attach(isc_stats_t *stats, isc_stats_t **statsp) argument
163 isc_stats_t *stats; local
188 isc_stats_ncounters(isc_stats_t *stats) argument
195 incrementcounter(isc_stats_t *stats, int counter) argument
233 decrementcounter(isc_stats_t *stats, int counter) argument
259 copy_counters(isc_stats_t *stats) argument
295 isc_stats_increment(isc_stats_t *stats, isc_statscounter_t counter) argument
303 isc_stats_decrement(isc_stats_t *stats, isc_statscounter_t counter) argument
311 isc_stats_dump(isc_stats_t *stats, isc_stats_dumper_t dump_fn, void *arg, unsigned int options) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DMemoryStatistics.cpp37 GlobalMemoryStatistics stats; local
39 stats.stackBytes = JSStack::committedByteCount();
41 stats.JITBytes = ExecutableAllocator::committedByteCount();
43 stats.JITBytes = 0;
45 return stats;
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/
H A Dstats.c18 /* $Id: stats.c,v 1.18 2009/01/27 23:47:54 tbox Exp $ */
26 #include <isc/stats.h>
31 #include <dns/stats.h>
87 dns_stats_attach(dns_stats_t *stats, dns_stats_t **statsp) { argument
88 REQUIRE(DNS_STATS_VALID(stats));
91 LOCK(&stats->lock);
92 stats->references++;
93 UNLOCK(&stats->lock);
95 *statsp = stats;
100 dns_stats_t *stats; local
125 dns_stats_t *stats; local
193 dns_generalstats_increment(dns_stats_t *stats, isc_statscounter_t counter) argument
200 dns_rdatatypestats_increment(dns_stats_t *stats, dns_rdatatype_t type) argument
216 update_rdatasetstats(dns_stats_t *stats, dns_rdatastatstype_t rrsettype, isc_boolean_t increment) argument
246 dns_rdatasetstats_increment(dns_stats_t *stats, dns_rdatastatstype_t rrsettype) argument
255 dns_rdatasetstats_decrement(dns_stats_t *stats, dns_rdatastatstype_t rrsettype) argument
263 dns_opcodestats_increment(dns_stats_t *stats, dns_opcode_t code) argument
273 dns_generalstats_dump(dns_stats_t *stats, dns_generalstats_dumper_t dump_fn, void *arg, unsigned int options) argument
310 dns_rdatatypestats_dump(dns_stats_t *stats, dns_rdatatypestats_dumper_t dump_fn, void *arg0, unsigned int options) argument
339 dns_rdatasetstats_dump(dns_stats_t *stats, dns_rdatatypestats_dumper_t dump_fn, void *arg0, unsigned int options) argument
360 dns_opcodestats_dump(dns_stats_t *stats, dns_opcodestats_dumper_t dump_fn, void *arg0, unsigned int options) argument
[all...]
/macosx-10.9.5/IOPCIFamily-224.92.1/tools/
H A Dvtstat.c35 vtd_space_stats_t * stats; local
40 statsData = IORegistryEntryCreateCFProperty(vtd, CFSTR("stats"),
44 stats = (vtd_space_stats_t *) CFDataGetBytePtr(statsData);
46 printf("vsize 0x%x\n", stats->vsize);
47 printf("tables 0x%x\n", stats->tables);
48 printf("bused 0x%x\n", stats->bused);
49 printf("rused 0x%x\n", stats->rused);
50 printf("largest_paging 0x%x\n", stats->largest_paging);
51 printf("largest_32b 0x%x\n", stats->largest_32b);
52 printf("max_binval 0x%x\n", stats
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/persist/evolve/
H A DEvolveEvent.java20 private EvolveStats stats; field in class:EvolveEvent
24 this.stats = new EvolveStats();
35 return stats;
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dlchown.c37 struct stat stats; local
39 if (lstat (file, &stats) == 0 && S_ISLNK (stats.st_mode))
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/include/isc/
H A Dstats.h22 /*! \file isc/stats.h */
56 isc_stats_attach(isc_stats_t *stats, isc_stats_t **statsp);
61 *\li 'stats' is a valid isc_stats_t.
76 isc_stats_ncounters(isc_stats_t *stats);
78 * Returns the number of counters contained in stats.
81 *\li 'stats' is a valid isc_stats_t.
86 isc_stats_increment(isc_stats_t *stats, isc_statscounter_t counter);
88 * Increment the counter-th counter of stats.
91 *\li 'stats' is a valid isc_stats_t.
93 *\li counter is less than the maximum available ID for the stats specifie
[all...]
/macosx-10.9.5/ntp-88/lib/isc/include/isc/
H A Dstats.h17 /* $Id: stats.h,v 1.4.2.2 2009/01/29 23:47:44 tbox Exp $ */
22 /*! \file isc/stats.h */
56 isc_stats_attach(isc_stats_t *stats, isc_stats_t **statsp);
61 *\li 'stats' is a valid isc_stats_t.
76 isc_stats_ncounters(isc_stats_t *stats);
78 * Returns the number of counters contained in stats.
81 *\li 'stats' is a valid isc_stats_t.
86 isc_stats_increment(isc_stats_t *stats, isc_statscounter_t counter);
88 * Increment the counter-th counter of stats.
91 *\li 'stats' i
[all...]
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dlog_adhoc.c9 /* void log_adhoc(id, stats, recipient, relay, dsn, status)
11 /* MSG_STATS *stats;
26 /* .IP stats
85 void log_adhoc(const char *id, MSG_STATS *stats, RECIPIENT *recipient, argument
114 if (stats->reuse_count > 0)
115 vstring_sprintf_append(buf, ", conn_use=%d", stats->reuse_count + 1);
160 if (TIME_STAMPED(stats->deliver_done))
161 now = stats->deliver_done;
165 DELTA(delay, now, stats->incoming_arrival);
169 if (TIME_STAMPED(stats
[all...]
H A Dmsg_stats_scan.c19 /* ... ATTR_SCAN_FUNC, msg_stats_scan, (void *) &stats, ...
59 MSG_STATS *stats = (MSG_STATS *) ptr; local
76 if (LEN(buf) == sizeof(*stats)) {
77 memcpy((char *) stats, STR(buf), sizeof(*stats));
80 (unsigned) LEN(buf), (unsigned) sizeof(*stats));
/macosx-10.9.5/Security-55471.14.18/include/security_asn1/
H A Dplarena.c72 #define COUNT(pool,what) (pool)->stats.what++
95 memset(&pool->stats, 0, sizeof pool->stats);
96 pool->stats.name = strdup(name);
97 pool->stats.next = arena_stats_list;
98 arena_stats_list = &pool->stats;
288 PLArenaStats *stats, **statsp; local
290 if (pool->stats.name)
291 PR_DELETE(pool->stats.name);
292 for (statsp = &arena_stats_list; (stats
354 PLArenaStats *stats; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_asn1/Security/
H A Dplarena.c72 #define COUNT(pool,what) (pool)->stats.what++
95 memset(&pool->stats, 0, sizeof pool->stats);
96 pool->stats.name = strdup(name);
97 pool->stats.next = arena_stats_list;
98 arena_stats_list = &pool->stats;
288 PLArenaStats *stats, **statsp; local
290 if (pool->stats.name)
291 PR_DELETE(pool->stats.name);
292 for (statsp = &arena_stats_list; (stats
354 PLArenaStats *stats; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_asn1/lib/
H A Dplarena.c72 #define COUNT(pool,what) (pool)->stats.what++
95 memset(&pool->stats, 0, sizeof pool->stats);
96 pool->stats.name = strdup(name);
97 pool->stats.next = arena_stats_list;
98 arena_stats_list = &pool->stats;
288 PLArenaStats *stats, **statsp; local
290 if (pool->stats.name)
291 PR_DELETE(pool->stats.name);
292 for (statsp = &arena_stats_list; (stats
354 PLArenaStats *stats; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_asn1/security_asn1/
H A Dplarena.c72 #define COUNT(pool,what) (pool)->stats.what++
95 memset(&pool->stats, 0, sizeof pool->stats);
96 pool->stats.name = strdup(name);
97 pool->stats.next = arena_stats_list;
98 arena_stats_list = &pool->stats;
288 PLArenaStats *stats, **statsp; local
290 if (pool->stats.name)
291 PR_DELETE(pool->stats.name);
292 for (statsp = &arena_stats_list; (stats
354 PLArenaStats *stats; local
[all...]
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/racoon/
H A DipsecSessionTracer.c223 bzero(&session->stats, sizeof(session->stats));
255 session->stats.counters[eventCode]++;
344 if (session->stats.counters[IPSECSESSIONEVENTCODE_IKE_PACKET_TX_FAIL]) {
347 get_percentage((double)session->stats.counters[IPSECSESSIONEVENTCODE_IKE_PACKET_TX_FAIL], (double)session->stats.counters[IPSECSESSIONEVENTCODE_IKE_PACKET_TX_SUCC]));
349 if (session->stats.counters[IPSECSESSIONEVENTCODE_IKE_PACKET_RX_FAIL]) {
352 get_percentage((double)session->stats.counters[IPSECSESSIONEVENTCODE_IKE_PACKET_RX_FAIL], (double)session->stats.counters[IPSECSESSIONEVENTCODE_IKE_PACKET_RX_SUCC]));
355 if (session->stats
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/pthreads/
H A Dmutex.c83 static isc_mutexstats_t stats[ISC_MUTEX_PROFTABLESIZE]; variable
113 mp->stats = &stats[stats_next++];
117 mp->stats->file = file;
118 mp->stats->line = line;
119 mp->stats->count = 0;
120 timevalclear(&mp->stats->locked_total);
121 timevalclear(&mp->stats->wait_total);
123 mp->stats->lockers[i].file = NULL;
124 mp->stats
[all...]
/macosx-10.9.5/ntp-88/lib/isc/pthreads/
H A Dmutex.c83 static isc_mutexstats_t stats[ISC_MUTEX_PROFTABLESIZE]; variable
113 mp->stats = &stats[stats_next++];
117 mp->stats->file = file;
118 mp->stats->line = line;
119 mp->stats->count = 0;
120 timevalclear(&mp->stats->locked_total);
121 timevalclear(&mp->stats->wait_total);
123 mp->stats->lockers[i].file = NULL;
124 mp->stats
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rake/
H A Dtest_thread_history_display.rb9 @stats = []
10 @display = Rake::ThreadHistoryDisplay.new(@stats)
21 @stats << event(:item_queued, :item_id => 123)
29 @stats << event(:item_dequeued, :item_id => 123)
37 @stats << event(:item_queued, :item_id => 123)
38 @stats << event(:item_queued, :item_id => 124)
47 @stats << event(:waiting, :item_id => 123)
55 @stats << event(:continue, :item_id => 123)
63 @stats << event(:thread_deleted, :deleted_thread => 123456, :thread_count => 12)
71 @stats << even
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/regex/
H A Dregstat.c35 p->env->stats.re_flags = p->env->flags;
36 p->env->stats.re_info = 0;
40 p->env->stats.re_record = p->env->rex->re.bm.size;
44 p->env->stats.re_record = 0;
50 p->env->stats.re_info |= REG_LITERAL;
51 p->env->stats.re_record = (p && p->env && p->env->rex->type == REX_BM) ? p->env->rex->re.bm.size : -1;
52 return &p->env->stats;
/macosx-10.9.5/libauto-185.5/tests/
H A Dauto_realloc_test.m62 malloc_statistics_t stats;
63 malloc_zone_statistics((malloc_zone_t *)NSDefaultMallocZone(), &stats);
64 if (stats.blocks_in_use > max_blocks_in_use) {
65 max_blocks_in_use = stats.blocks_in_use;
H A Dtest_introspection.c46 malloc_statistics_t stats; local
65 malloc_zone_statistics(zone, &stats);
67 assert(stats.blocks_in_use == context.blocks_in_use);
68 assert(stats.size_in_use == context.size_in_use);
71 assert(stats.blocks_in_use >= context.blocks_in_use);
72 assert(stats.size_in_use >= context.size_in_use);
/macosx-10.9.5/postfix-252/postfix/src/oqmgr/
H A Dqmgr_bounce.c60 MSG_STATS stats; local
64 QMGR_MSG_STATS(&stats, message), recipient,
/macosx-10.9.5/postfix-252/postfix/src/qmgr/
H A Dqmgr_bounce.c60 MSG_STATS stats; local
64 QMGR_MSG_STATS(&stats, message), recipient,

Completed in 302 milliseconds

1234567891011>>