Home
last modified time | relevance | path

Searched refs:Record (Results 1 – 25 of 86) sorted by relevance

1234

/OK3568_Linux_fs/external/rkupdate/
H A DRKComm.cpp33 pLog->Record(_T("INFO:is nand devices...")); in CRKUsbComm()
41 pLog->Record(_T("INFO:is emmc devices...")); in CRKUsbComm()
53 pLog->Record(_T("INFO:CRKUsbComm-->is emmc.")); in CRKUsbComm()
60 …pLog->Record(_T("ERROR:CRKUsbComm-->open %s failed,err=%s"), EMMC_DRIVER_DEV_VENDOR, strerror(errn… in CRKUsbComm()
61 pLog->Record(_T("ERROR:CRKUsbComm-->try to read %s."), EMMC_DRIVER_DEV); in CRKUsbComm()
69 … pLog->Record(_T("ERROR:CRKUsbComm-->open %s failed,err=%s"), EMMC_DRIVER_DEV, strerror(errno)); in CRKUsbComm()
70 pLog->Record(_T("ERROR:CRKUsbComm-->please to check drmboot.ko.")); in CRKUsbComm()
77 pLog->Record(_T("INFO:CRKUsbComm-->%s=%d"), EMMC_DRIVER_DEV, m_hDev); in CRKUsbComm()
85 pLog->Record(_T("INFO:CRKUsbComm-->%s=%d"), EMMC_DRIVER_DEV_VENDOR, m_hDev); in CRKUsbComm()
94 pLog->Record(_T("ERROR:CRKUsbComm-->open %s failed,err=%d"), emmc_point, errno); in CRKUsbComm()
[all …]
H A DUpgrade.cpp392 pLog->Record(_T("model:%s\nbackup firmware model:%s\n"), model, pHeader->machine_model); in check_fw_header()
449 pLog->Record(_T("ERROR:check_fw_crc-->RKU_ReadLBA failed,err=%d"), iRet); in check_fw_crc()
462 pLog->Record(_T("ERROR:check_fw_crc-->read old crc failed")); in check_fw_crc()
495 pLog->Record(_T("ERROR:download_backup_image-->no found dest partition.")); in download_backup_image()
531 pLog->Record(_T("ERROR:download_backup_image-->no found source in the backup.")); in download_backup_image()
561 pLog->Record(_T("ERROR:download_backup_image-->read data from backup failed.")); in download_backup_image()
570 pLog->Record(_T("ERROR:download_backup_image-->write data to partition failed.")); in download_backup_image()
591 pLog->Record(_T("Start to check system...")); in download_backup_image()
610 pLog->Record(_T("ERROR:download_backup_image-->read data from backup failed.")); in download_backup_image()
618 pLog->Record(_T("ERROR:download_backup_image-->read data from partition failed.")); in download_backup_image()
[all …]
H A DRKAndroidDevice.cpp118 …m_pLog->Record(_T("ERROR:FindIDBlock-->RKU_ReadSector %x failed,RetCode(%d)"), i * m_flashInfo.uiS… in FindIDBlock()
191 m_pLog->Record(_T("ERROR:CalcIDBCount-->GetLoaderSize failed")); in CalcIDBCount()
200 m_pLog->Record(_T("ERROR:CalcIDBCount-->GetLoaderDataSize failed")); in CalcIDBCount()
208 m_pLog->Record(_T("INFO:CalcIDBCount IsNewIDBFlag is true")); in CalcIDBCount()
215 m_pLog->Record(_T("ERROR:CalcIDBCount-->GetLoaderHeadSize failed")); in CalcIDBCount()
378 m_pLog->Record(_T("ERROR:GetOldSectorData-->GetWriteBackData failed")); in GetOldSectorData()
565 m_pLog->Record(_T("INFO:MakeIDBlockData in")); in MakeIDBlockData()
576 m_pLog->Record(_T("ERROR:MakeIDBlockData-->Image is invalid")); in MakeIDBlockData()
587 m_pLog->Record(_T("ERROR:MakeIDBlockData-->Get LoaderCode Entry failed")); in MakeIDBlockData()
598 m_pLog->Record(_T("ERROR:MakeIDBlockData-->Get LoaderCode Data failed")); in MakeIDBlockData()
[all …]
H A DRKDevice.cpp219 … m_pLog->Record(_T("ERROR:EraseEmmcBlock-->RKU_WriteSector failed,RetCode(%d)"), iRet); in EraseEmmcBlock()
241 m_pLog->Record(_T("INFO:FlashInfo:%s"), strFlashInfo.c_str()); in GetFlashInfo()
249 … m_pLog->Record(_T("ERROR:GetFlashInfo-->RKU_ReadFlashInfo failed,pagesize or blocksize is zero")); in GetFlashInfo()
293 m_pLog->Record(_T("ERROR:GetFlashInfo-->RKU_ReadFlashInfo failed,RetCode(%d)"), iRet); in GetFlashInfo()
336 … m_pLog->Record(_T("ERROR:BuildBlockStateMap-->RKU_TestBadBlock failed,RetCode(%d)"), iRet); in BuildBlockStateMap()
365 … m_pLog->Record(_T("ERROR:ReadMutilSector-->RKU_ReadSector failed,RetCode(%d)"), iRet); in ReadMutilSector()
406 … m_pLog->Record(_T("ERROR:EraseMutilBlock-->RKU_EraseBlock failed,RetCode(%d)"), iRet); in EraseMutilBlock()
427 … m_pLog->Record(_T("ERROR:EraseMutilBlock-->RKU_EraseBlock failed,RetCode(%d)"), iRet); in EraseMutilBlock()
524 …m_pLog->Record(_T("ERROR:CheckChip-->Chip is not match,firmware(0x%x),device(0x%x)"), m_device, *p… in CheckChip()
533 m_pLog->Record(_T("ERROR:CheckChip-->RKU_ReadChipInfo failed,RetCode(%d)"), iRet); in CheckChip()
[all …]
H A DRKLog.h16 void Record(const tchar *lpFmt, ...);
H A DRKLog.cpp24 void CRKLog::Record(const tchar *lpFmt, ...) in Record() function in CRKLog
/OK3568_Linux_fs/yocto/poky/scripts/tiny/
H A Ddirsize.py17 class Record: class
19 r = Record(path)
27 r.records.append(Record.create(pathname))
44 if not isinstance(that, Record):
68 rootfs = Record.create(".")
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dlogging.hpp41 Record(EventSeverity::Debug, event, ::std::forward<Args>(args)...); in Debug()
46 Record(EventSeverity::Info, event, ::std::forward<Args>(args)...); in Info()
51 Record(EventSeverity::Warning, event, ::std::forward<Args>(args)...); in Warning()
56 Record(EventSeverity::Error, event, ::std::forward<Args>(args)...); in Error()
60 static void Record(EventSeverity severity, Event event, Args&& ...args) { in Record() function in mbgl::Log
/OK3568_Linux_fs/kernel/Documentation/driver-api/pldmfw/
H A Dfile-format.rst95 | Record Count |
99 | Record 1 |
103 | Record 2 |
111 | Record N |
117 | Record Length |
/OK3568_Linux_fs/kernel/tools/perf/Documentation/
H A Dperf-timechart.txt87 Record only power-related events
90 Record only tasks-related events
93 Record only io-related events
110 Record system-wide timechart:
118 Record system-wide IO events:
H A Dperf-record.txt190 Record events on existing process ID (comma separated list).
194 Record events on existing thread ID (comma separated list).
200 Record events in threads owned by uid. Name or number.
258 Call Frame Information) or "lbr" (Hardware Last Branch Record
286 Record per-thread event counts. Use it with 'perf report -T' to see
291 Record the sample virtual addresses.
294 Record the sample physical addresses.
298 Record the sample timestamps. Use it with 'perf report -D' to see the
303 Record the sample period.
306 Record the sample cpu.
[all …]
H A Dperf-trace.txt61 Record events on existing process ID (comma separated list).
65 Record events on existing thread ID (comma separated list).
69 Record events in threads owned by uid. Name or number.
73 Record events in threads in a cgroup.
H A Dperf-mem.txt64 Record/Report sample physical addresses
H A Dperf-top.txt97 Record events in threads owned by uid. Name or number.
277 Record events of type PERF_RECORD_NAMESPACES and display it with the
281 Record events of type PERF_RECORD_CGROUP and display it with the
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0007-iso9660-Don-t-leak-memory-on-realloc-failures.patch46 Record'. */
67 /* In pos + 1 the length of the `Component Record' is
/OK3568_Linux_fs/buildroot/package/gptfdisk/
H A DConfig.in.host8 on the more common (through 2010) Master Boot Record (MBR)
H A DConfig.in15 the more common (through 2010) Master Boot Record (MBR)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dstopwatch.cpp28 …Log::Record(severity, event, "%s: %fms", name_.c_str(), std::chrono::duration<float, std::chrono::… in report()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/
H A Ddebugging_extension.cpp50 …mbgl::Log::Record(evtSeverity, mbgl::Event::OpenGL, "GL_%s GL_%s %u GL_%s - %s", strSource.c_str()… in DebugCallback()
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/fdisk/
H A Dgptfdisk_1.0.8.bb2 … disks. The related FixParts utility fixes some common problems on Master Boot Record (MBR) disks."
/OK3568_Linux_fs/kernel/drivers/acpi/apei/
H A DKconfig64 tristate "APEI Error Record Serialization Table (ERST) Debug Support"
/OK3568_Linux_fs/kernel/Documentation/admin-guide/laptops/
H A Dasus-laptop.rst170 Record the disp value at every configuration.
172 Record its value, note any change. If nothing changes, try a broader range,
/OK3568_Linux_fs/kernel/arch/powerpc/boot/dts/fsl/
H A De500mc_power_isa.dtsi52 power-isa-fp.r; // Floating Point.Record
H A De5500_power_isa.dtsi52 power-isa-fp.r; // Floating Point.Record
H A De6500_power_isa.dtsi52 power-isa-fp.r; // Floating Point.Record

1234