Searched defs:stats (Results 151 - 175 of 338) sorted by relevance

1234567891011>>

/external/yaffs2/yaffs2/utils/
H A Dmkyaffs2image.c356 struct stat stats; local
362 lstat(full_name,&stats);
391 stats.st_mode) < 0) {
399 if(S_ISLNK(stats.st_mode) ||
400 S_ISREG(stats.st_mode) ||
401 S_ISDIR(stats.st_mode) ||
402 S_ISFIFO(stats.st_mode) ||
403 S_ISBLK(stats.st_mode) ||
404 S_ISCHR(stats.st_mode) ||
405 S_ISSOCK(stats
537 struct stat stats; local
[all...]
H A Dmkyaffsimage.c404 struct stat stats; local
410 lstat(full_name,&stats);
412 if(S_ISLNK(stats.st_mode) ||
413 S_ISREG(stats.st_mode) ||
414 S_ISDIR(stats.st_mode) ||
415 S_ISFIFO(stats.st_mode) ||
416 S_ISBLK(stats.st_mode) ||
417 S_ISCHR(stats.st_mode) ||
418 S_ISSOCK(stats.st_mode))
427 if((equivalentObj = find_obj_in_list(stats
531 struct stat stats; local
[all...]
/external/bison/lib/
H A Dbitset_stats.c171 struct bitset_type_info_struct *stats)
173 if (!stats)
178 stats->allocs, stats->frees,
179 stats->allocs ? 100.0 * stats->frees / stats->allocs : 0);
181 stats->sets, stats->cache_sets,
182 stats
170 bitset_stats_print_1(FILE *file, const char *name, struct bitset_type_info_struct *stats) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dboot_times_loader.cc112 // Names of login stats files.
138 Stats stats; local
142 base::ReadFileToString(kProcUptime, &stats.uptime_);
143 base::ReadFileToString(kDiskStat, &stats.disk_);
144 return stats;
/external/chromium_org/chrome/browser/chromeos/memory/
H A Doom_priority_manager.cc220 TabStatsList stats = GetTabStatsOnUIThread(); local
223 titles.reserve(stats.size());
224 TabStatsList::iterator it = stats.begin();
225 for ( ; it != stats.end(); ++it) {
247 TabStatsList stats = GetTabStatsOnUIThread(); local
248 if (stats.empty())
251 for (TabStatsList::const_reverse_iterator stats_rit = stats.rbegin();
252 stats_rit != stats.rend();
334 // TODO(jamescook): If the time stats prove too noisy, then divide up users
574 TabStats stats; local
[all...]
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dsync_task_manager_unittest.cc184 Stats* stats)
187 stats_(stats),
487 BackgroundTask::Stats stats; local
492 &stats)),
500 &stats)),
508 &stats)),
515 EXPECT_EQ(0, stats.running_background_task);
516 EXPECT_EQ(3, stats.finished_task);
517 EXPECT_EQ(1, stats.max_parallel_task);
528 BackgroundTask::Stats stats; local
182 BackgroundTask(const std::string& app_id, const base::FilePath& path, Stats* stats) argument
569 BackgroundTask::Stats stats; local
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dtask_manager_view.cc387 base::StatsTable* stats = base::StatsTable::current(); local
388 if (stats != NULL) {
389 int max = stats->GetMaxCounters();
392 const char* row = stats->GetRowName(i);
394 // TODO(erikkay): Use l10n to get display names for stats. Right
/external/chromium_org/components/gcm_driver/
H A Dgcm_driver_desktop.cc216 // When an activity is recorded, get all the stats and refresh the UI of
282 gcm::GCMClient::GCMStatistics stats; local
287 stats = gcm_client_->GetStatistics();
292 base::Bind(&GCMDriverDesktop::GetGCMStatisticsFinished, service_, stats));
297 gcm::GCMClient::GCMStatistics stats; local
301 stats = gcm_client_->GetStatistics();
302 stats.gcm_client_created = true;
307 base::Bind(&GCMDriverDesktop::GetGCMStatisticsFinished, service_, stats));
771 const GCMClient::GCMStatistics& stats) {
776 request_gcm_statistics_callback_.Run(stats);
770 GetGCMStatisticsFinished( const GCMClient::GCMStatistics& stats) argument
[all...]
/external/chromium_org/content/browser/media/
H A Dwebrtc_internals_browsertest.cc73 StatsUnit stats; member in struct:content::StatsEntry
113 // This is a record of the history of stats value reported for each stats
114 // report id (e.g. ssrc-1234) for each stats name (e.g. framerate).
315 // Execute addStats and verifies that the stats table has the right content.
318 StatsUnit& stats) {
319 StatsEntry entry = {type, id, stats};
321 // Adds each new value to the map of stats history.
323 for (iter = stats.values.begin(); iter != stats
316 ExecuteAndVerifyAddStats( PeerConnectionEntry& pc, const string& type, const string& id, StatsUnit& stats) argument
473 VerifyStatsDump(base::Value* dump, const PeerConnectionEntry& pc, const string& report_type, const string& report_id, const StatsUnit& stats) argument
568 StatsUnit stats = {FAKE_TIME_STAMP}; local
584 StatsUnit stats = {FAKE_TIME_STAMP}; local
608 StatsUnit stats = {FAKE_TIME_STAMP}; local
661 StatsUnit stats = {FAKE_TIME_STAMP}; local
797 StatsUnit stats = { FAKE_TIME_STAMP }; local
844 StatsUnit stats = {FAKE_TIME_STAMP}; local
[all...]
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_audio_processor.cc356 void MediaStreamAudioProcessor::GetStats(AudioProcessorStats* stats) { argument
357 stats->typing_noise_detected =
359 GetAecStats(audio_processing_.get(), stats);
H A Dpeer_connection_tracker.cc227 scoped_ptr<base::DictionaryValue> stats, result; local
229 stats.reset(GetDictValueStats(report));
230 if (!stats)
237 result->Set("stats", stats.release());
/external/chromium_org/gpu/config/
H A Dgpu_info_collector_win.cc71 GpuPerformanceStats stats; local
81 return stats;
103 return stats;
110 return stats;
115 return stats;
126 return stats;
133 stats.overall = ReadXMLFloatValue(&reader);
135 stats.graphics = ReadXMLFloatValue(&reader);
137 stats.gaming = ReadXMLFloatValue(&reader);
140 if (stats
153 GpuPerformanceStats stats = RetrieveGpuPerformanceStats(); local
[all...]
/external/chromium_org/media/base/
H A Dpipeline.cc476 void Pipeline::OnUpdateStatistics(const PipelineStatistics& stats) { argument
478 statistics_.audio_bytes_decoded += stats.audio_bytes_decoded;
479 statistics_.video_bytes_decoded += stats.video_bytes_decoded;
480 statistics_.video_frames_decoded += stats.video_frames_decoded;
481 statistics_.video_frames_dropped += stats.video_frames_dropped;
523 PipelineStatistics stats = GetStatistics(); local
524 if (renderer_->HasVideo() && stats.video_frames_decoded > 0) {
526 stats.video_frames_dropped);
/external/chromium_org/media/cast/logging/
H A Dstats_event_subscriber.cc127 FrameLogStats stats; local
128 stats.event_counter = 1;
129 stats.sum_size = frame_event.size;
130 stats.sum_delay = frame_event.delay_delta;
131 frame_stats_.insert(std::make_pair(type, stats));
171 PacketLogStats stats; local
172 stats.event_counter = 1;
173 stats.sum_size = packet_event.size;
174 packet_stats_.insert(std::make_pair(type, stats));
222 scoped_ptr<base::DictionaryValue> stats(ne
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Ddisk_format_v3.h72 CacheAddr stats; // Storage for usage data. member in struct:disk_cache::IndexHeaderV3
/external/chromium_org/net/http/
H A Dhttp_server_properties_manager.cc292 NetworkStats stats) {
294 http_server_properties_impl_->SetServerNetworkStats(host_port_pair, stats);
290 SetServerNetworkStats( const net::HostPortPair& host_port_pair, NetworkStats stats) argument
/external/chromium_org/net/quic/
H A Dquic_sent_packet_manager.cc67 QuicConnectionStats* stats,
73 stats_(stats),
79 stats)),
64 QuicSentPacketManager( bool is_server, const QuicClock* clock, QuicConnectionStats* stats, CongestionControlType congestion_control_type, LossDetectionType loss_type) argument
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.cpp618 Statistics stats; local
624 stats.images.addResource(resource);
627 stats.cssStyleSheets.addResource(resource);
630 stats.scripts.addResource(resource);
633 stats.xslStyleSheets.addResource(resource);
636 stats.fonts.addResource(resource);
639 stats.other.addResource(resource);
643 return stats;
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dbencher966 @stats = []
968 @stats << Stats.new
973 @stats[outerIteration*$inner + innerIteration]
976 def stats method in class:StatsAccumulator
978 @stats.each {
986 stats {
993 stats {
1138 @stats = Stats.new
1165 def stats method in class:BenchmarkOnVM
1166 @stats
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dtracer.c12 #undef COLLECT_STATS /* Collect counters: stats are printed when tracer is stopped. */
116 } stats; member in struct:__anon11461
126 self->stats.calls = 0;
127 self->stats.lines = 0;
128 self->stats.returns = 0;
129 self->stats.exceptions = 0;
130 self->stats.others = 0;
131 self->stats.new_files = 0;
132 self->stats.missed_returns = 0;
133 self->stats
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideocapturer.cc69 // Limit stats data collections to ~20 seconds of 30fps data before dropping
70 // old data in case stats aren't reset for long periods of time.
723 // Update stats protected from fetches from different thread.
746 VariableInfo<T>* stats) {
747 stats->max_val = data.ComputeMax();
748 stats->mean = data.ComputeMean();
749 stats->min_val = data.ComputeMin();
750 stats->variance = data.ComputeVariance();
744 GetVariableSnapshot( const rtc::RollingAccumulator<T>& data, VariableInfo<T>* stats) argument
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profiler.cc244 HeapProfileTable::Stats const stats = heap_profile->total(); member in class:HeapProfileTable
245 (void)stats; // avoid an unused-variable warning in non-debug mode.
249 RAW_DCHECK(stats.Equivalent(heap_profile->total()), "");
/external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/source/
H A Daudio_conference_mixer_impl.cc63 void SetParticipantStatistics(ParticipantStatistics* stats, argument
65 stats->participant = frame.id_;
66 stats->level = 0; // TODO(andrew): to what should this be set?
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework_unittest.cc113 Stats<int32_t> stats; local
114 EXPECT_EQ(0, stats.GetMean());
116 stats.Push(1);
117 stats.Push(3);
118 EXPECT_EQ(2, stats.GetMean());
121 stats.Push(-3);
122 EXPECT_EQ(0, stats.GetMean());
126 Stats<int32_t> stats; local
127 EXPECT_EQ(0, stats.GetVariance());
130 stats
141 Stats<int32_t> stats; local
155 Stats<int32_t> stats; local
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_sender_unittest.cc862 virtual void Notify(const BitrateStatistics& stats, uint32_t ssrc) { argument
865 bitrate_ = stats;

Completed in 542 milliseconds

1234567891011>>