HomeSort by relevance Sort by last modified time
    Searched defs:sfile (Results 1 - 3 of 3) sorted by null

  /external/oprofile/daemon/liblegacy/
opd_sample_files.c 40 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)
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...]
opd_proc.c 125 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/
opd_sfile.h 37 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...]

Completed in 74 milliseconds