MCPcopy Create free account
hub / github.com/coreboot/coreboot / prog_segment_loaded

Function prog_segment_loaded

src/lib/prog_ops.c:7–11  ·  view source on GitHub ↗

For each segment of a program loaded this function is called*/

Source from the content-addressed store, hash-verified

5
6/* For each segment of a program loaded this function is called*/
7void prog_segment_loaded(uintptr_t start, size_t size, int flags)
8{
9 platform_segment_loaded(start, size, flags);
10 arch_segment_loaded(start, size, flags);
11}
12
13void __weak platform_segment_loaded(uintptr_t start,
14 size_t size, int flags)

Callers 8

finalize_loadFunction · 0.85
postcar_flush_cacheFunction · 0.85
rmodule_loadFunction · 0.85
cbfs_prog_stage_loadFunction · 0.85
mainFunction · 0.85
pack_fdtFunction · 0.85
load_one_segmentFunction · 0.85
fsp_load_componentFunction · 0.85

Calls 2

platform_segment_loadedFunction · 0.70
arch_segment_loadedFunction · 0.70

Tested by

no test coverage detected