OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:disk_perf
(Results
1 - 6
of
6
) sorted by null
/system/core/storaged/include/
storaged_utils.h
29
struct
disk_perf
get_disk_perf(struct disk_stats* stats);
40
void log_debug_disk_perf(struct
disk_perf
* perf, const char* type);
storaged.h
92
struct
disk_perf
{
struct
167
std::queue<struct
disk_perf
> mBuffer;
178
struct
disk_perf
mMean;
179
struct
disk_perf
mStd;
183
void add(struct
disk_perf
* perf);
184
void evict(struct
disk_perf
* perf);
185
bool detect(struct
disk_perf
* perf);
/system/core/storaged/
storaged_utils.cpp
75
struct
disk_perf
get_disk_perf(struct disk_stats* stats) {
76
struct
disk_perf
perf;
77
memset(&perf, 0, sizeof(struct
disk_perf
)); // initialize
199
void log_debug_disk_perf(struct
disk_perf
* perf, const char* type) {
202
struct
disk_perf
zero_cmp;
204
if (memcmp(&zero_cmp, perf, sizeof(struct
disk_perf
)) == 0) return;
212
void log_debug_disk_perf(struct
disk_perf
* /* perf */, const char* /* type */) {}
storaged.cpp
37
struct
disk_perf
perf = get_disk_perf(&mAccumulate);
78
void disk_stats_monitor::add(struct
disk_perf
* perf) {
86
void disk_stats_monitor::evict(struct
disk_perf
* perf) {
94
bool disk_stats_monitor::detect(struct
disk_perf
* perf) {
102
struct
disk_perf
perf = get_disk_perf(&inc);
114
struct
disk_perf
acc_perf = get_disk_perf(&mAccumulate);
/external/fio/tools/plot/
fio2gnuplot
41
def generate_gnuplot_script(fio_data_file,title,gnuplot_output_filename,gnuplot_output_dir,mode,
disk_perf
,gpm_dir):
85
global_disk_perf = sum(
disk_perf
, [])
107
avg = average(
disk_perf
[pos])
151
def compute_temp_file(fio_data_file,
disk_perf
,gnuplot_output_dir, min_time, max_time):
167
disk_perf
.append([])
212
disk_perf
[index].append(int(perf))
227
def compute_math(fio_data_file, title,gnuplot_output_filename,gnuplot_output_dir,mode,
disk_perf
,gpm_dir):
247
# print
disk_perf
[disk]
252
avg = average(
disk_perf
[disk])
253
variance = map(lambda x: (x - avg)**2,
disk_perf
[disk]
[
all
...]
/system/core/storaged/tests/
storaged_test.cpp
184
static struct
disk_perf
disk_perf_multiply(struct
disk_perf
perf, double mul) {
185
struct
disk_perf
retval;
221
struct
disk_perf
norm_perf = {
234
struct
disk_perf
perf = disk_perf_multiply(norm_perf, rand(gen));
246
struct
disk_perf
test_perf;
247
struct
disk_perf
test_mean = dsm_detect.mMean;
248
struct
disk_perf
test_std = dsm_detect.mStd;
Completed in 93 milliseconds