Searched refs:sample (Results 1 - 6 of 6) sorted by relevance
/systemd/src/bootchart/ |
H A D | store.h | 32 int sample,
|
H A D | svg.c | 336 ps->sample = ps->first; 337 while (ps->sample->next) { 338 ps->sample = ps->sample->next; 339 if (ps->sample->sampledata == sampledata) 342 if (ps->sample->sampledata == sampledata) { 343 if (ps->sample->pss <= (100 * arg_scale_y)) 344 top += ps->sample->pss; 348 while (ps->sample->cross) { 349 cross_place = ps->sample [all...] |
H A D | store.c | 97 int sample, 242 ps->sample = new0(struct ps_sched_struct, 1); 243 if (!ps->sample) 246 ps->sample->sampledata = sampledata; 250 /* mark our first sample */ 251 ps->first = ps->last = ps->sample; 252 ps->sample->runtime = atoll(rt); 253 ps->sample->waittime = atoll(wt); 385 ps->sample->next = new0(struct ps_sched_struct, 1); 386 if (!ps->sample 96 log_sample(DIR *proc, int sample, struct ps_struct *ps_first, struct list_sample_data **ptr, int *pscount, int *cpus) argument [all...] |
H A D | bootchart.c | 84 int arg_samples_len = DEFAULT_SAMPLES_LEN; /* we record len+1 (1 start sample) */ 431 * do, don't sleep and take a new sample right away. 501 old->sample = ps->first; 503 while (old->sample->next) { 504 struct ps_sched_struct *oldsample = old->sample; 506 old->sample = old->sample->next; 510 free(old->sample); 515 free(ps->sample); 526 /* don't complain when overrun once, happens most commonly on 1st sample */ [all...] |
H A D | bootchart.h | 44 /* per process, per sample data we will log */ 102 struct ps_sched_struct *sample; member in struct:ps_struct
|
/systemd/ |
H A D | autogen.sh | 24 if [ -f .git/hooks/pre-commit.sample ] && [ ! -f .git/hooks/pre-commit ]; then 26 cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \
|
Completed in 3025 milliseconds