/drivers/hdf_core/adapter/uhdf2/host/src/ |
H A D | devhost_dump.c | 82 int32_t DevHostRegisterDumpService(const char *servName, DevHostDumpFunc dump) in DevHostRegisterDumpService() argument 84 if (dump == NULL || servName == NULL) { in DevHostRegisterDumpService() 89 HDF_LOGE("%{public}s service %{public}s dump function exist", __func__, servName); in DevHostRegisterDumpService() 99 node->dumpService = dump; in DevHostRegisterDumpService() 112 int32_t DevHostRegisterDumpHost(DevHostDumpFunc dump) in DevHostRegisterDumpHost() argument 114 if (dump == NULL) { in DevHostRegisterDumpHost() 118 g_dumpHostNode.dumpHost = dump; in DevHostRegisterDumpHost() 156 (void)HdfSbufWriteString(reply, "The host does not register dump function\n"); in DevHostDump() 177 (void)HdfSbufWriteString(reply, "The service does not register dump function\n"); in DevHostDump()
|
/drivers/hdf_core/interfaces/inner_api/host/uhdf/ |
H A D | devhost_dump_reg.h | 27 int32_t DevHostRegisterDumpHost(DevHostDumpFunc dump); 28 int32_t DevHostRegisterDumpService(const char *servName, DevHostDumpFunc dump);
|
/drivers/peripheral/codec/hal/idl_service/src/ |
H A D | codec_dfx_service.cpp | 43 std::string dump = "compName = ";
in GetCodecComponentListInfo() local 45 dump.append(componentService->GetComponentCompName())
in GetCodecComponentListInfo() 55 dump.append(std::to_string(state));
in GetCodecComponentListInfo() 57 dump.append(", inputPortIndex = ")
in GetCodecComponentListInfo() 66 if (!HdfSbufWriteString(reply, dump.c_str())) {
in GetCodecComponentListInfo() 67 CODEC_LOGE("dump write Fail!");
in GetCodecComponentListInfo() 130 if (!HdfSbufWriteString(reply, "-h: codec dump help! \n")) {
in DevCodecHostDump() 134 if (!HdfSbufWriteString(reply, "-l: dump codec components info list! \n")) {
in DevCodecHostDump()
|
/drivers/peripheral/codec/hal/src/ |
H A D | codec_dfx_service.c | 37 HdfSbufWriteString(reply, "-h: codec dump help ! \n"); in DevCodecHostDump() 38 HdfSbufWriteString(reply, "-l: dump codec components info list ! \n"); in DevCodecHostDump() 58 char dump[CODEC_MAX_DFX_DUMP_LEN + 1] = { 0 }; in DevCodecHostDump() local 59 int32_t ret = OmxAdapterWriteDumperData(dump, CODEC_MAX_DFX_DUMP_LEN, pos->componentId, codecNode); in DevCodecHostDump() 64 HdfSbufWriteString(reply, dump); in DevCodecHostDump()
|
H A D | codec_adapter.cpp | 327 std::string dump = "compName = "; in OmxAdapterWriteDumperData() local 329 dump.append(codecNode->node->GetCompName()).append(", compId = ").append(std::to_string(compId)) in OmxAdapterWriteDumperData() 333 dump.append("\n"); in OmxAdapterWriteDumperData() 334 errno_t error = strncpy_s(info, size, dump.c_str(), dump.length()); in OmxAdapterWriteDumperData()
|
/drivers/hdf_core/interfaces/inner_api/ipc/ |
H A D | hdf_dump_reg.h | 25 * notification of a service object, and implementing the dump mechanism. 33 * @brief Provides the dump feature in C based on the IPC dump over C++. 50 * @brief Implements IPC dump. 60 * @brief Registers the dump function. 62 * @param dump Indicates the dump function to register. 64 void HdfRegisterDumpFunc(DevHostDumpFunc dump);
|
/drivers/hdf_core/framework/model/storage/src/mtd/ |
H A D | mtd_spi_common.c | 43 if (spi->mtd.ops->dump == NULL) { in SpiFlashAdd() 44 spi->mtd.ops->dump = SpiFlashDumpDefualt; in SpiFlashAdd()
|
H A D | mtd_core.c | 72 if (mtdDevice != NULL && mtdDevice->ops != NULL && mtdDevice->ops->dump != NULL) { in MtdDeviceDump() 73 mtdDevice->ops->dump(mtdDevice); in MtdDeviceDump() 131 if (mtdDevice->ops->dump == NULL) { in MtdDeviceAdd() 132 mtdDevice->ops->dump = MtdDeviceDumpDefault; in MtdDeviceAdd()
|
/drivers/hdf_core/adapter/uhdf2/ipc/src/ |
H A D | hdf_dump.cpp | 145 void HdfRegisterDumpFunc(DevHostDumpFunc dump) in HdfRegisterDumpFunc() argument 147 g_dump = dump; in HdfRegisterDumpFunc()
|
/drivers/hdf_core/framework/tools/hc-gen/ |
H A D | hcs_build_info.py | 37 def dump(self): member in Token 50 def dump(self): member in Char
|
/drivers/hdf_core/framework/model/storage/include/mtd/ |
H A D | mtd_core.h | 107 void (*dump)(struct MtdDevice *mtdDevice); member 347 * @brief A debugging macro which an dump all the attributes of a mtd device
|
/drivers/hdf_core/framework/tools/hdi-gen/ |
H A D | build_hdi_files_info.py | 42 def dump(self): member in Token 55 def dump(self): member in Char 265 def dump(): member in Option 301 def dump(self): member in IdlDetail
|
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/ |
H A D | ast.js | 781 dump(prefix) { 782 NapiLog.logError('dump ', prefix, ' AST:'); 886 this.dump('expanded');
|