/reactos/modules/rostests/winetests/iphlpapi/ |
H A D | iphlpapi.c | 446 …trace( " dwMsgs: %8u %8u\n", stats.stats.icmpInStats.dwMsgs, stats.stats.icmpOutStats.… in testGetIcmpStatistics() 447 …trace( " dwErrors: %8u %8u\n", stats.stats.icmpInStats.dwErrors, stats.stats.icmpOutStat… in testGetIcmpStatistics() 448 …trace( " dwDestUnreachs: %8u %8u\n", stats.stats.icmpInStats.dwDestUnreachs, stats.stats.icmpO… in testGetIcmpStatistics() 449 …trace( " dwTimeExcds: %8u %8u\n", stats.stats.icmpInStats.dwTimeExcds, stats.stats.icmpOutS… in testGetIcmpStatistics() 450 …trace( " dwParmProbs: %8u %8u\n", stats.stats.icmpInStats.dwParmProbs, stats.stats.icmpOutS… in testGetIcmpStatistics() 451 …trace( " dwSrcQuenchs: %8u %8u\n", stats.stats.icmpInStats.dwSrcQuenchs, stats.stats.icmpOut… in testGetIcmpStatistics() 452 …trace( " dwRedirects: %8u %8u\n", stats.stats.icmpInStats.dwRedirects, stats.stats.icmpOutS… in testGetIcmpStatistics() 453 …trace( " dwEchos: %8u %8u\n", stats.stats.icmpInStats.dwEchos, stats.stats.icmpOutStats… in testGetIcmpStatistics() 454 …trace( " dwEchoReps: %8u %8u\n", stats.stats.icmpInStats.dwEchoReps, stats.stats.icmpOutSt… in testGetIcmpStatistics() 455 …trace( " dwTimestamps: %8u %8u\n", stats.stats.icmpInStats.dwTimestamps, stats.stats.icmpOut… in testGetIcmpStatistics() [all …]
|
/reactos/dll/win32/iphlpapi/ |
H A D | ipstats_reactos.c | 210 if (!stats) in getICMPStats() 231 stats->stats.icmpInStats.dwMsgs = strtoul(ptr, &endPtr, 10); in getICMPStats() 235 stats->stats.icmpInStats.dwErrors = strtoul(ptr, &endPtr, 10); in getICMPStats() 243 stats->stats.icmpInStats.dwTimeExcds = strtoul(ptr, &endPtr, 10); in getICMPStats() 247 stats->stats.icmpInStats.dwParmProbs = strtoul(ptr, &endPtr, 10); in getICMPStats() 259 stats->stats.icmpInStats.dwEchoReps = strtoul(ptr, &endPtr, 10); in getICMPStats() 279 stats->stats.icmpOutStats.dwMsgs = strtoul(ptr, &endPtr, 10); in getICMPStats() 283 stats->stats.icmpOutStats.dwErrors = strtoul(ptr, &endPtr, 10); in getICMPStats() 335 if (!stats) in getIPStats() 346 if (!stats) in getTCPStats() [all …]
|
H A D | ipstats.h | 42 DWORD getICMPStats(MIB_ICMP *stats); 47 DWORD getIPStats(PMIB_IPSTATS stats, DWORD family); 52 DWORD getTCPStats(MIB_TCPSTATS *stats, DWORD family); 57 DWORD getUDPStats(MIB_UDPSTATS *stats, DWORD family);
|
/reactos/base/applications/network/netstat/ |
H A D | netstat.c | 276 IcmpStats.stats.icmpInStats.dwMsgs, IcmpStats.stats.icmpOutStats.dwMsgs); in ShowIcmpStatistics() 278 IcmpStats.stats.icmpInStats.dwErrors, IcmpStats.stats.icmpOutStats.dwErrors); in ShowIcmpStatistics() 280 … IcmpStats.stats.icmpInStats.dwDestUnreachs, IcmpStats.stats.icmpOutStats.dwDestUnreachs); in ShowIcmpStatistics() 282 IcmpStats.stats.icmpInStats.dwTimeExcds, IcmpStats.stats.icmpOutStats.dwTimeExcds); in ShowIcmpStatistics() 284 IcmpStats.stats.icmpInStats.dwParmProbs, IcmpStats.stats.icmpOutStats.dwParmProbs); in ShowIcmpStatistics() 286 IcmpStats.stats.icmpInStats.dwSrcQuenchs, IcmpStats.stats.icmpOutStats.dwSrcQuenchs); in ShowIcmpStatistics() 288 IcmpStats.stats.icmpInStats.dwRedirects, IcmpStats.stats.icmpOutStats.dwRedirects); in ShowIcmpStatistics() 290 IcmpStats.stats.icmpInStats.dwEchos, IcmpStats.stats.icmpOutStats.dwEchos); in ShowIcmpStatistics() 292 IcmpStats.stats.icmpInStats.dwEchoReps, IcmpStats.stats.icmpOutStats.dwEchoReps); in ShowIcmpStatistics() 294 IcmpStats.stats.icmpInStats.dwTimestamps, IcmpStats.stats.icmpOutStats.dwTimestamps); in ShowIcmpStatistics() [all …]
|
/reactos/drivers/network/tcpip/lwip/src/core/ |
H A D | memp.c | 208 desc->stats->avail = desc->num; in memp_init_pool() 213 desc->stats->name = desc->desc; in memp_init_pool() 233 lwip_stats.memp[i] = memp_pools[i]->stats; in memp_init() 283 desc->stats->used++; in do_memp_malloc_pool() 284 if (desc->stats->used > desc->stats->max) { in do_memp_malloc_pool() 285 desc->stats->max = desc->stats->used; in do_memp_malloc_pool() 293 desc->stats->err++; in do_memp_malloc_pool() 377 desc->stats->used--; in do_memp_free_pool()
|
/reactos/modules/rostests/winetests/windowscodecs/ |
H A D | stream.c | 755 STATSTG stats; in test_StreamOnIStream() local 989 ok(stats.pwcsName == NULL, "Unexpected name %p.\n", stats.pwcsName); in test_StreamOnIStream() 990 ok(stats.type == STGTY_STREAM, "Unexpected type %d.\n", stats.type); in test_StreamOnIStream() 992 …ok(stats.mtime.dwHighDateTime == 0 && stats.mtime.dwLowDateTime == 0, "Unexpected mtime (%u;%u).\n… in test_StreamOnIStream() 993 stats.mtime.dwHighDateTime, stats.mtime.dwLowDateTime); in test_StreamOnIStream() 994 …ok(stats.ctime.dwHighDateTime == 0 && stats.ctime.dwLowDateTime == 0, "Unexpected ctime (%u;%u).\n… in test_StreamOnIStream() 995 stats.ctime.dwHighDateTime, stats.ctime.dwLowDateTime); in test_StreamOnIStream() 997 stats.atime.dwHighDateTime, stats.atime.dwLowDateTime); in test_StreamOnIStream() 998 ok(stats.grfMode == 0, "Unexpected mode %d.\n", stats.grfMode); in test_StreamOnIStream() 999 ok(stats.grfLocksSupported == 0, "Unexpected locks support %#x.\n", stats.grfLocksSupported); in test_StreamOnIStream() [all …]
|
/reactos/sdk/lib/inflib/ |
H A D | infhostrtl.c | 91 int stats = 0; in RtlIsTextUnicode() local 95 if (s[i] <= 255) stats++; in RtlIsTextUnicode() 97 if (stats > len / 2) in RtlIsTextUnicode()
|
/reactos/base/applications/cmdutils/fsutil/ |
H A D | fsinfo.c | 225 #define DUMP_VALUE(stats, value) fprintf(stdout, "%s: %lu\n", #value, stats->value) argument 339 #define GET_NEXT(stats, length, iter, type) (type)((ULONG_PTR)stats + (length * iter)) argument 340 #define SUM_VALUE(stats, new, value) stats->value += new->value argument
|
/reactos/dll/win32/wmvcore/ |
H A D | writer.c | 283 …iterAdvanced_GetStatistics(IWMWriterAdvanced3 *iface, WORD stream_num, WM_WRITER_STATISTICS *stats) in WMWriterAdvanced_GetStatistics() argument 286 FIXME("(%p)->(%u %p)\n", This, stream_num, stats); in WMWriterAdvanced_GetStatistics() 321 WM_WRITER_STATISTICS_EX *stats) in WMWriterAdvanced3_GetStatisticsEx() argument 324 FIXME("(%p)->(%u %p)\n", This, stream_num, stats); in WMWriterAdvanced3_GetStatisticsEx()
|
/reactos/drivers/filesystems/ext2/src/ext3/ |
H A D | htree.c | 907 struct stats struct 914 struct stats dx_show_leaf(struct ext2_icb *icb, struct dx_hash_info *hinfo, in dx_show_leaf() argument 917 struct stats rc; in dx_show_leaf() 950 struct stats dx_show_entries(struct ext2_icb *icb, struct dx_hash_info *hinfo, in dx_show_entries() 957 struct stats rc; in dx_show_entries() 965 struct stats stats; in dx_show_entries() local 968 stats = levels? in dx_show_entries() 971 names += stats.names; in dx_show_entries() 972 space += stats.space; in dx_show_entries() 973 bcount += stats.bcount; in dx_show_entries()
|
/reactos/drivers/network/tcpip/lwip/src/include/netif/ppp/ |
H A D | vj.h | 148 struct vjstat stats; member
|
/reactos/drivers/network/tcpip/lwip/src/include/lwip/priv/ |
H A D | memp_priv.h | 115 struct stats_mem *stats; member
|
/reactos/sdk/include/psdk/ |
H A D | ipmib.h | 199 MIBICMPINFO stats; member
|
H A D | commoncontrols.idl | 222 HRESULT GetStatistics([in, out] IMAGELISTSTATS *stats);
|
/reactos/sdk/include/reactos/wine/ |
H A D | dcetypes.idl | 87 unsigned32 stats[1]; /* length_is (count) */
|
/reactos/dll/win32/rpcrt4/ |
H A D | rpc_server.c | 1661 RPC_STATS_VECTOR *stats; in RpcMgmtInqStats() local 1665 if ((stats = HeapAlloc(GetProcessHeap(), 0, sizeof(RPC_STATS_VECTOR)))) in RpcMgmtInqStats() 1667 stats->Count = 1; in RpcMgmtInqStats() 1668 stats->Stats[0] = 0; in RpcMgmtInqStats() 1669 *Statistics = stats; in RpcMgmtInqStats()
|
/reactos/dll/win32/vbscript/ |
H A D | parse.h | 272 statement_t *stats; member
|
H A D | parser.y | 542 if(ctx->stats) { in source_add_statement() 546 ctx->stats = ctx->stats_tail = stat; in source_add_statement() 575 ctx->stats = &stat->stat; in handle_isexpression_script() 1072 ctx->stats = ctx->stats_tail = NULL; in parse_script()
|
/reactos/dll/directx/wine/dmusic/ |
H A D | port.c | 380 …PI SynthPortImpl_IDirectMusicPort_GetRunningStats(LPDIRECTMUSICPORT iface, LPDMUS_SYNTHSTATS stats) in SynthPortImpl_IDirectMusicPort_GetRunningStats() argument 384 FIXME("(%p/%p)->(%p): stub\n", iface, This, stats); in SynthPortImpl_IDirectMusicPort_GetRunningStats() 1025 DMUS_SYNTHSTATS *stats) in midi_IDirectMusicPort_GetRunningStats() argument 1027 FIXME("(%p, %p) stub!\n", iface, stats); in midi_IDirectMusicPort_GetRunningStats()
|
/reactos/drivers/filesystems/btrfs/ |
H A D | btrfsioctl.h | 111 uint64_t stats[5]; member
|
H A D | fsctl.c | 1499 RtlCopyMemory(dev->stats, dev2->stats, sizeof(uint64_t) * 5); in get_devices() 2746 uint64_t* stats; in add_device() local 2968 stats = ExAllocatePoolWithTag(PagedPool, sizeof(uint64_t) * 5, ALLOC_TAG); in add_device() 2969 if (!stats) { in add_device() 2975 RtlZeroMemory(stats, sizeof(uint64_t) * 5); in add_device() 2984 ExFreePool(stats); in add_device() 2992 ExFreePool(stats); in add_device() 2997 …Status = insert_tree_item(Vcb, Vcb->dev_root, 0, TYPE_DEV_STATS, di->dev_id, stats, sizeof(uint64_… in add_device() 3000 ExFreePool(stats); in add_device() 3190 RtlZeroMemory(dev->stats, sizeof(uint64_t) * 5); in reset_stats()
|
/reactos/drivers/network/tcpip/lwip/src/ |
H A D | Filelists.mk | 43 $(LWIPDIR)/core/stats.c \
|
/reactos/drivers/network/tcpip/lwip/ |
H A D | CHANGELOG | 1709 * stats.c/.h: Added const char* name to mem- and memp-stats for easier 2128 * netif.c: For loopback packets, adjust the stats- and snmp-counters 2136 * igmp.c, igmp.h, stats.c, stats.h: Improved IGMP stats 2312 * tcp.c: tcp_alloc: prevent increasing stats.err for MEMP_TCP_PCB when 2482 mem stats. 2485 * stats.h/.c, some other files: patch #6483: stats module improvement: 2883 * etharp.c, stats.c, stats.h, opt.h: Introduced ETHARP_STATS 3310 * stats.h, stats.c, msg_in.c: Stats counters can be change to u32_t if necessary with the 3384 * mem.c, stats.c, mem.h: apply patch #6414 to avoid compiler errors 3544 * stats.h, stats.c, igmp.h, igmp.c, opt.h: Fix for bug #20503 : IGMP Improvement. [all …]
|
H A D | UPGRADING | 151 * Moved and reordered stats (mainly memp/mib2) 255 * Added const char* name to mem- and memp-stats for easier debugging.
|
/reactos/drivers/network/tcpip/lwip/src/netif/ppp/ |
H A D | vj.c | 42 #define INCR(counter) ++comp->stats.counter
|