Lines Matching defs:dumper
30 struct PlatformDumper *dumper;
37 struct PlatformDumper *dumper = NULL;
46 dumper = PlatformDumperCreate(name);
47 if (dumper == NULL) {
48 HDF_LOGE("%s: get dumper for %s fail!", __func__, name);
52 hp->dumper = dumper;
70 if (hp->dumper == NULL) {
71 HDF_LOGE("%s: pwm dumper is NULL", __func__);
74 ret = PlatformDumperAddDatas(hp->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData));
78 (void)PlatformDumperDump(hp->dumper);
79 (void)PlatformDumperClearDatas(hp->dumper);
84 PlatformDumperDestroy(hp->dumper);
194 HDF_LOGE("%s: create dumper failed:%d", __func__, ret);