Searched refs:iotrace (Results 1 – 8 of 8) sorted by relevance
/external/u-boot/common/ |
D | iotrace.c | 26 static struct iotrace { struct 35 } iotrace; argument 47 if (!(gd->flags & GD_FLG_RELOC) || !iotrace.enabled) in add_record() 50 if (iotrace.region_size) in add_record() 51 if ((ulong)ptr < iotrace.region_start || in add_record() 52 (ulong)ptr > iotrace.region_start + iotrace.region_size) in add_record() 56 if (iotrace.offset + sizeof(*rec) < iotrace.size) { in add_record() 58 iotrace.start + iotrace.offset, in add_record() 62 iotrace.needed_size += sizeof(struct iotrace_record); in add_record() 72 iotrace.crc32 = crc32(iotrace.crc32, (unsigned char *)rec, in add_record() [all …]
|
D | Makefile | 109 obj-$(CONFIG_IO_TRACE) += iotrace.o
|
/external/u-boot/cmd/ |
D | iotrace.c | 121 iotrace, 4, 1, do_iotrace,
|
D | Makefile | 69 obj-$(CONFIG_CMD_IOTRACE) += iotrace.o
|
D | Kconfig | 802 bool "iotrace - Support for tracing I/O activity" 804 Provides an 'iotrace' command which supports recording I/O reads and 824 redirecting I/O accesses through iotrace's tracing mechanism.
|
/external/sqlite/dist/orig/ |
D | shell.c | 458 static FILE *iotrace = 0; variable 471 if( iotrace==0 ) return; in iotracePrintf() 475 utf8_printf(iotrace, "%s", z); in iotracePrintf() 13013 if( iotrace && iotrace!=stdout ) fclose(iotrace); in do_meta_command() 13014 iotrace = 0; in do_meta_command() 13019 iotrace = stdout; in do_meta_command() 13021 iotrace = fopen(azArg[1], "w"); in do_meta_command() 13022 if( iotrace==0 ){ in do_meta_command()
|
/external/sqlite/dist/ |
D | shell.c | 464 static FILE *iotrace = 0; variable 477 if( iotrace==0 ) return; in iotracePrintf() 481 utf8_printf(iotrace, "%s", z); in iotracePrintf() 13036 if( iotrace && iotrace!=stdout ) fclose(iotrace); in do_meta_command() 13037 iotrace = 0; in do_meta_command() 13042 iotrace = stdout; in do_meta_command() 13044 iotrace = fopen(azArg[1], "w"); in do_meta_command() 13045 if( iotrace==0 ){ in do_meta_command()
|
/external/u-boot/ |
D | README | 844 to memory. See the 'iotrace' command for details. This is 848 add support for your architecture, add '#include <iotrace.h>' 851 Example output from the 'iotrace stats' command is below. 855 iotrace is enabled
|