Searched defs:sfile (Results 1 - 4 of 4) sorted by relevance

/external/oprofile/daemon/liblegacy/
H A Dopd_sample_files.c40 struct opd_24_sfile * sfile; local
51 sfile = list_entry(pos, struct opd_24_sfile, lru_next);
52 odb_close(&sfile->sample_file);
53 list_del_init(&sfile->lru_next);
60 void opd_24_sfile_lru(struct opd_24_sfile * sfile) argument
62 list_del(&sfile->lru_next);
63 list_add_tail(&sfile->lru_next, &lru_list);
106 struct opd_24_sfile * sfile; local
115 sfile = image->sfiles[cpu_nr][counter];
116 if (!sfile) {
157 struct opd_24_sfile * sfile; local
[all...]
H A Dopd_proc.c125 struct opd_24_sfile * sfile; local
135 sfile = image->sfiles[cpu_number][counter];
137 if (!sfile || !odb_open_count(&sfile->sample_file)) {
143 sfile = image->sfiles[cpu_number][counter];
146 err = odb_update_node(&sfile->sample_file, offset);
152 opd_24_sfile_lru(sfile);
/external/oprofile/daemon/
H A Dopd_sfile.h37 struct sfile { struct
38 /** hash value for this sfile */
74 struct sfile to;
97 /** remove a sfile from the lru list, protecting it from sfile_lru_clear() */
98 void sfile_get(struct sfile * sf);
100 /** add this sfile to lru list */
101 void sfile_put(struct sfile * sf);
104 * Find the sfile for the current parameters. Note that is required
107 struct sfile * sfile_find(struct transient const * trans);
109 /** Log the sample in a previously located sfile
[all...]
H A Dopd_sfile.c82 do_match(struct sfile const * sf, cookie_t cookie, cookie_t app_cookie,
122 trans_match(struct transient const * trans, struct sfile const * sfile, argument
125 return do_match(sfile, trans->cookie, trans->app_cookie, ki,
131 sfile_equal(struct sfile const * sf, struct sfile const * sf2)
139 is_sf_ignored(struct sfile const * sf)
161 /** create a new sfile matching the current transient parameters */
162 static struct sfile *
167 struct sfile * s
[all...]

Completed in 444 milliseconds