MCPcopy Create free account
hub / github.com/ading2210/linuxpdf / fdt_begin_node

Function fdt_begin_node

tinyemu/riscv_machine.c:396–401  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

394}
395
396static void fdt_begin_node(FDTState *s, const char *name)
397{
398 fdt_put32(s, FDT_BEGIN_NODE);
399 fdt_put_data(s, (uint8_t *)name, strlen(name) + 1);
400 s->open_node_count++;
401}
402
403static void fdt_begin_node_num(FDTState *s, const char *name, uint64_t n)
404{

Callers 2

fdt_begin_node_numFunction · 0.85
riscv_build_fdtFunction · 0.85

Calls 2

fdt_put32Function · 0.85
fdt_put_dataFunction · 0.85

Tested by

no test coverage detected