Home
last modified time | relevance | path

Searched refs:dumper (Results 1 - 19 of 19) sorted by relevance

/device/soc/hisilicon/common/platform/pwm/
H A Dpwm_hi35xx.c30 struct PlatformDumper *dumper; member
37 struct PlatformDumper *dumper = NULL; in PwmDumperCreate() local
46 dumper = PlatformDumperCreate(name); in PwmDumperCreate()
47 if (dumper == NULL) { in PwmDumperCreate()
48 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in PwmDumperCreate()
52 hp->dumper = dumper; in PwmDumperCreate()
70 if (hp->dumper == NULL) { in PwmDumperDump()
71 HDF_LOGE("%s: pwm dumper is NULL", __func__); in PwmDumperDump()
74 ret = PlatformDumperAddDatas(hp->dumper, data in PwmDumperDump()
[all...]
/device/soc/hisilicon/common/platform/pin/
H A Dpin_hi35xx.c46 struct PlatformDumper *dumper; member
52 struct PlatformDumper *dumper = NULL; in PinDumperCreate() local
67 dumper = PlatformDumperCreate(name); in PinDumperCreate()
68 if (dumper == NULL) { in PinDumperCreate()
69 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in PinDumperCreate()
73 hi35xx->dumper = dumper; in PinDumperCreate()
86 if (hi35xx->dumper == NULL) { in PinDumperDump()
90 ret = PlatformDumperAddDatas(hi35xx->dumper, data, sizeof(data) / sizeof(struct PlatformDumperData)); in PinDumperDump()
94 (void)PlatformDumperDump(hi35xx->dumper); in PinDumperDump()
[all...]
/device/soc/hisilicon/common/platform/gpio/
H A Dgpio_hi35xx.c58 struct PlatformDumper *dumper; member
83 struct PlatformDumper *dumper = NULL; in GpioDumperCreate() local
98 dumper = PlatformDumperCreate(name); in GpioDumperCreate()
99 if (dumper == NULL) { in GpioDumperCreate()
100 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in GpioDumperCreate()
104 group->dumper = dumper; in GpioDumperCreate()
124 if (group->dumper == NULL) { in GpioDumperDump()
125 HDF_LOGE("%s: group dumper is NULL!", __func__); in GpioDumperDump()
128 ret = PlatformDumperAddDatas(group->dumper, data in GpioDumperDump()
[all...]
/device/soc/hisilicon/common/platform/i2s/
H A Di2s_hi35xx.c58 if (configInfo->dumper == NULL) { in I2sDumperDump()
59 HDF_LOGE("%s: configInfo dumper is NULL!", __func__); in I2sDumperDump()
62 ret = PlatformDumperAddDatas(configInfo->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData)); in I2sDumperDump()
66 (void)PlatformDumperDump(configInfo->dumper); in I2sDumperDump()
67 (void)PlatformDumperClearDatas(configInfo->dumper); in I2sDumperDump()
72 struct PlatformDumper *dumper = NULL; in I2sDumperCreate() local
87 dumper = PlatformDumperCreate(name); in I2sDumperCreate()
88 if (dumper == NULL) { in I2sDumperCreate()
89 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in I2sDumperCreate()
93 configInfo->dumper in I2sDumperCreate()
[all...]
H A Di2s_hi35xx.h144 struct PlatformDumper *dumper; member
/device/soc/hisilicon/common/platform/timer/
H A Dtimer_hi35xx.c172 if (info->dumper == NULL) { in TimerDumperAddDatas()
176 PlatformDumperAddDatas(info->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData)); in TimerDumperAddDatas()
347 PlatformDumperDump(info->dumper); in TimerHi35xxStart()
373 PlatformDumperDump(info->dumper); in TimerHi35xxStop()
401 PlatformDumperDestroy(info->dumper); in TimerHi35xxRemove()
528 struct PlatformDumper *dumper = NULL; in TimerDumperGet() local
539 dumper = PlatformDumperCreate(name); in TimerDumperGet()
540 if (dumper == NULL) { in TimerDumperGet()
541 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in TimerDumperGet()
546 info->dumper in TimerDumperGet()
[all...]
H A Dtimer_hi35xx.h46 struct PlatformDumper *dumper; member
/device/soc/hisilicon/common/platform/uart/
H A Duart_hi35xx.c52 if (port->dumper == NULL) { in UartDumperDump()
53 HDF_LOGE("%s: uart dumper is NULL", __func__); in UartDumperDump()
56 ret = PlatformDumperAddDatas(port->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData)); in UartDumperDump()
60 (void)PlatformDumperDump(port->dumper); in UartDumperDump()
61 (void)PlatformDumperClearDatas(port->dumper); in UartDumperDump()
66 struct PlatformDumper *dumper = NULL; in UartDumperCreate() local
82 dumper = PlatformDumperCreate(name); in UartDumperCreate()
83 if (dumper == NULL) { in UartDumperCreate()
84 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in UartDumperCreate()
89 port->dumper in UartDumperCreate()
[all...]
H A Duart_pl011.h184 struct PlatformDumper *dumper; member
/device/soc/hisilicon/common/platform/i2c/
H A Di2c_hi35xx.c58 struct PlatformDumper *dumper; member
98 if (hi35xx->dumper == NULL) { in I2cDumperAddDatas()
99 HDF_LOGE("%s: dumper is NULL", __func__); in I2cDumperAddDatas()
102 return PlatformDumperAddDatas(hi35xx->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData)); in I2cDumperAddDatas()
107 struct PlatformDumper *dumper = NULL; in I2cDumperCreate() local
122 dumper = PlatformDumperCreate(name); in I2cDumperCreate()
123 if (dumper == NULL) { in I2cDumperCreate()
124 HDF_LOGE("%s: create dumper for %s fail!", __func__, name); in I2cDumperCreate()
129 hi35xx->dumper = dumper; in I2cDumperCreate()
[all...]
/device/soc/hisilicon/common/platform/mipi_dsi/
H A Dmipi_tx_hi35xx.c620 struct PlatformDumper *dumper = NULL; in MipiTxDumperCreate() local
636 dumper = PlatformDumperCreate(name); in MipiTxDumperCreate()
637 if (dumper == NULL) { in MipiTxDumperCreate()
638 HDF_LOGE("%s: get dumper for %s fail!", __func__, name); in MipiTxDumperCreate()
642 dev->dumper = dumper; in MipiTxDumperCreate()
648 static void MipiTxDumperDump(struct PlatformDumper *dumper) in MipiTxDumperDump() argument
666 if (dumper == NULL) { in MipiTxDumperDump()
667 HDF_LOGE("%s: mipitxRegsVa dumper is NULL!", __func__); in MipiTxDumperDump()
670 ret = PlatformDumperAddDatas(dumper, data in MipiTxDumperDump()
[all...]
H A Dmipi_dsi_define.h73 struct PlatformDumper *dumper; member
/device/soc/hisilicon/common/platform/spi/
H A Dspi_hi35xx.c58 struct PlatformDumper *dumper; member
77 if (pl022->dumper == NULL) { in SpiDumperDump()
80 ret = PlatformDumperAddDatas(pl022->dumper, datas, sizeof(datas) / sizeof(struct PlatformDumperData)); in SpiDumperDump()
84 (void)PlatformDumperDump(pl022->dumper); in SpiDumperDump()
85 (void)PlatformDumperClearDatas(pl022->dumper); in SpiDumperDump()
90 struct PlatformDumper *dumper = NULL; in SpiDumperCreate() local
105 dumper = PlatformDumperCreate(spiName); in SpiDumperCreate()
106 if (dumper == NULL) { in SpiDumperCreate()
107 HDF_LOGE("%s: create dumper for %s fail!", __func__, spiName); in SpiDumperCreate()
111 pl022->dumper in SpiDumperCreate()
[all...]
/device/board/hihope/rk3568/camera/vdi_impl/v4l2/pipeline_core/src/node/
H A Drk_exif_node.cpp75 CameraDumper& dumper = CameraDumper::GetInstance(); in DeliverBuffer() local
76 dumper.DumpBuffer("board_RKExifNode", ENABLE_RKEXIF_NODE_CONVERTED, buffer); in DeliverBuffer()
H A Drk_face_node.cpp58 CameraDumper& dumper = CameraDumper::GetInstance(); in DeliverBuffer() local
59 dumper.DumpBuffer("board_RKFaceNode", ENABLE_RKFACE_NODE_CONVERTED, buffer); in DeliverBuffer()
H A Drk_codec_node.cpp410 CameraDumper& dumper = CameraDumper::GetInstance(); in DeliverBuffer() local
411 dumper.DumpBuffer("board_RKCodecNode", ENABLE_RKCODEC_NODE_CONVERTED, buffer); in DeliverBuffer()
/device/soc/rockchip/common/sdk_linux/drivers/staging/blackbox/
H A Dblackbox_storage.c45 static void do_kmsg_dump(struct kmsg_dumper *dumper, enum kmsg_dump_reason reason) in do_kmsg_dump() argument
59 (void)kmsg_dump_get_buffer(dumper, true, lastlog + sizeof(*pinfo), lastlog_len - sizeof(*pinfo), in do_kmsg_dump()
/device/soc/rockchip/common/vendor/drivers/staging/android/fiq_debugger/
H A Dfiq_debugger.c284 struct kmsg_dumper dumper = {.active = true}; in fiq_debugger_dump_kernel_log() local
286 kmsg_dump_rewind_nolock(&dumper); in fiq_debugger_dump_kernel_log()
287 while (kmsg_dump_get_line_nolock(&dumper, true, buf, sizeof(buf) - 1, &len)) { in fiq_debugger_dump_kernel_log()
/device/soc/rockchip/rk3588/kernel/drivers/staging/android/fiq_debugger/
H A Dfiq_debugger.c266 struct kmsg_dumper dumper = { .active = true }; in fiq_debugger_dump_kernel_log() local
269 kmsg_dump_rewind_nolock(&dumper); in fiq_debugger_dump_kernel_log()
270 while (kmsg_dump_get_line_nolock(&dumper, true, buf, in fiq_debugger_dump_kernel_log()

Completed in 18 milliseconds